/**
 * vtp-klickdummy - Klickdummy Audi VTP
 * @release 2023.32.0
 * @version v2023.32.0
 * @date Wed May 21 2025 11:54:04 GMT+0200 (Mitteleuropäische Sommerzeit)
 */
@charset "UTF-8";
/**
 * main
 */
/**
 * reset:
 */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
main, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 1rem;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, main, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * animate: it seems like $old-ie is never set to true
 */
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated, .vtp-page-detail main > .spinner, .vtp-results-toolbar, .transitionOut,
.transitionIn, .vtp-stage-gallery .image-quality-container, .vtp-modals .vtp-modal {
  -webkit-animation-duration: 400ms;
  -o-animation-duration: 400ms;
  animation-duration: 400ms;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn, .vtp-page-detail main > .spinner, .vtp-results-toolbar {
  -webkit-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-o-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -o-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  -o-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-o-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -o-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  -o-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-o-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -o-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  -o-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeInOut {
  -webkit-animation: fadeInOut 4s 0s 1 normal forwards;
  -o-animation: fadeInOut 4s 0s 1 normal forwards;
  animation: fadeInOut 4s 0s 1 normal forwards;
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@-o-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -o-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  -o-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@-o-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  -o-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes moveInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-o-keyframes moveInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.moveInRight {
  -webkit-animation-name: moveInRight;
  -o-animation-name: moveInRight;
  animation-name: moveInRight;
}

@-webkit-keyframes moveOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@-o-keyframes moveOutRight {
  0% {
    opacity: 1;
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes moveOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.moveOutRight {
  -webkit-animation-name: moveOutRight;
  -o-animation-name: moveOutRight;
  animation-name: moveOutRight;
}

@-webkit-keyframes moveOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-o-keyframes moveOutLeft {
  0% {
    opacity: 1;
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes moveOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.moveOutLeft {
  -webkit-animation-name: moveOutLeft;
  -o-animation-name: moveOutLeft;
  animation-name: moveOutLeft;
}

/**
 * vendor:
 */
/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * components:
 */
/*
 * Swiper 2.7.6
 * Mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/sliders/swiper/
 *
 * Copyright 2010-2015, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under GPL & MIT
 *
 * Released on: February 11, 2015
*/
/* ===============================================================
Basic Swiper Styles
================================================================*/
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  direction: ltr;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  -webkit-transition-property: -webkit-transform, left, top;
  -webkit-transition-duration: 0s;
  -webkit-transform: translate3d(0px, 0, 0);
  -webkit-transition-timing-function: ease;
  -moz-transition-property: -moz-transform, left, top;
  -moz-transition-duration: 0s;
  -moz-transform: translate3d(0px, 0, 0);
  -moz-transition-timing-function: ease;
  -o-transition-property: -o-transform, left, top;
  -o-transition-duration: 0s;
  -o-transform: translate3d(0px, 0, 0);
  -o-transition-timing-function: ease;
  -o-transform: translate(0px, 0px);
  -ms-transition-property: -ms-transform, left, top;
  -ms-transition-duration: 0s;
  -ms-transform: translate3d(0px, 0, 0);
  -ms-transition-timing-function: ease;
  -webkit-transition-property: left, top, -webkit-transform;
  transition-property: left, top, -webkit-transform;
  -o-transition-property: left, top, -o-transform;
  transition-property: transform, left, top;
  transition-property: transform, left, top, -webkit-transform, -o-transform;
  transition-duration: 0s;
  transform: translate3d(0px, 0, 0);
  transition-timing-function: ease;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  float: left;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
}

/* ===============================================================
Your custom styles, here you need to specify container's and slide's
sizes, pagination, etc.
================================================================*/
.swiper-container {
  /* Specify Swiper's Size: */
  /*width:200px;
  height: 100px;*/
}

.swiper-slide {
  /* Specify Slides's Size: */
  /*width: 100%;
  height: 100%;*/
}

.swiper-slide-active {
  /* Specific active slide styling: */
}

.swiper-slide-visible {
  /* Specific visible slide styling: */
}

/* ===============================================================
Pagination Styles
================================================================*/
.swiper-pagination-switch {
  /* Stylize pagination button: */
}

.swiper-active-switch {
  /* Specific active button style: */
}

.swiper-visible-switch {
  /* Specific visible button style: */
}

/**
 * index:
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/
.fixedsticky, .vtp-compare-head.vtp-section {
  position: static;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
}

.fixedsticky-withoutfixedfixed .fixedsticky-on, .fixed-supported .fixedsticky-on {
  position: fixed;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fixedsticky-dummy {
  display: none;
}

.fixedsticky-on + .fixedsticky-dummy {
  display: block;
}

.bg-gradient {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e5eaee+1,e5eaee+15,ffffff+80,ffffff+100 */
  background: #e5eaee; /* Old browsers */ /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #e5eaee 1%, #e5eaee 15%, #ffffff 80%, #ffffff 100%); /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, color-stop(1%, #e5eaee), color-stop(15%, #e5eaee), color-stop(80%, #ffffff), to(#ffffff));
  background: -o-linear-gradient(left, #e5eaee 1%, #e5eaee 15%, #ffffff 80%, #ffffff 100%);
  background: linear-gradient(to right, #e5eaee 1%, #e5eaee 15%, #ffffff 80%, #ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#e5eaee", endColorstr="#ffffff",GradientType=1 ); /* IE6-9 */
}

/**
** Variables for specific pages/ modules
**/
picture {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}
picture:focus {
  outline: 0;
}

button {
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
button:focus {
  outline: 0;
}
@media print {
  button {
    display: none;
  }
}

h1,
h2,
h3,
h4,
h5,
b,
strong {
  margin: 0;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.5;
}

strong {
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}
.touch a {
  text-decoration: none;
  -webkit-user-select: false;
  -moz-user-select: false;
  -ms-user-select: false;
  user-select: false;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}
p a {
  -webkit-transition: color 400ms easeOutExpo();
  -o-transition: color 400ms easeOutExpo();
  transition: color 400ms easeOutExpo();
  text-decoration: underline;
}
p a:hover {
  color: #c03;
  cursor: pointer;
}
p a.vtp-link-active {
  color: #c03;
}

address {
  display: inline;
  font-style: normal;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

@media print {
  body {
    width: 1100px !important;
    min-width: 1100px;
  }
  * {
    /*background: transparent !important;*/
    color: #000 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"],
  a[href^="tel:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  nav {
    display: none;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
@font-face {
  font-family: "AudiTypeExtNormal";
  src: url("../fonts/AudiType-ExtendedNormal.eot");
  src: url("../fonts/AudiType-ExtendedNormal.eot?#iefix") format("embedded-opentype"), url("../fonts/AudiType-ExtendedNormal.ttf") format("truetype"), url("../fonts/AudiType-ExtendedNormal.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "AudiTypeExtBold";
  src: url("../fonts/AudiType-ExtendedBold.eot");
  src: url("../fonts/AudiType-ExtendedBold.eot?#iefix") format("embedded-opentype"), url("../fonts/AudiType-ExtendedBold.ttf") format("truetype"), url("../fonts/AudiType-ExtendedBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "AudiTypeScreenNormal";
  src: url("../fonts/AudiTypeScreen-Normal.eot");
  src: url("../fonts/AudiTypeScreen-Normal.eot?#iefix") format("embedded-opentype"), url("../fonts/AudiTypeScreen-Normal.ttf") format("truetype"), url("../fonts/AudiTypeScreen-Normal.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "AudiTypeScreenBold";
  src: url("../fonts/AudiTypeScreen-Bold.eot");
  src: url("../fonts/AudiTypeScreen-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/AudiTypeScreen-Bold.ttf") format("truetype"), url("../fonts/AudiTypeScreen-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "AudiTypeScreenLight";
  src: url("../fonts/AudiTypeScreen-Light.eot");
  src: url("../fonts/AudiTypeScreen-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/AudiTypeScreen-Light.ttf") format("truetype"), url("../fonts/AudiTypeScreen-Light.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
button {
  text-rendering: optimizeLegibility;
}
html.android, .android html,
body.android,
.android body,
button.android,
.android button {
  text-rendering: auto;
}

html {
  font-size: 12px;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-width: 320px;
  font-family: Verdana, sans-serif;
  line-height: 1.6;
  color: #000;
  background: #fff;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
body.noscroll {
  overflow: hidden !important;
  position: fixed;
}
.lt-ie9 body, .ie9 body {
  min-width: 1100px;
}
.lt-ie9 body.noscroll, .ie9 body.noscroll {
  overflow: auto !important;
  position: relative;
}

.vtp-container {
  position: relative;
}

.container {
  position: relative;
  *zoom: 1;
  width: auto;
  max-width: 1280px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 4%;
  padding-right: 4%;
}
.container:before, .container:after {
  content: "";
  display: table;
}
.container:after {
  clear: both;
}
@media only screen and (min-width: 1280px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.container .vtp-section,
.vtp-filter-breadcrumb .container,
.vtp-section .container {
  padding-left: 0;
  padding-right: 0;
}

.vtp-section {
  position: relative;
  *zoom: 1;
  width: auto;
  max-width: 1280px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 4%;
  padding-right: 4%;
  padding-top: 48px;
  padding-top: 4rem;
  padding-bottom: 48px;
  padding-bottom: 4rem;
}
.vtp-section:before, .vtp-section:after {
  content: "";
  display: table;
}
.vtp-section:after {
  clear: both;
}
@media only screen and (min-width: 1280px) {
  .vtp-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.vtp-section.seperated .container:before {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  border-top: 1px solid #d7dadb;
  top: -48px;
  top: -4rem;
}
@media only screen and (max-width: 767px) {
  .vtp-section.seperated .container:before {
    top: 0;
    top: 0;
    height: 0;
    border-top: 0;
  }
}
.vtp-section > h1,
.vtp-section > h2,
.vtp-section > h3,
.vtp-section > .container > h1,
.vtp-section > .container > h2,
.vtp-section > .container > h3 {
  margin-top: 0;
  margin-bottom: 24px;
  margin-bottom: 2rem;
}

.vtp-section-small {
  padding-top: 33.6px;
  padding-top: 2.8rem;
  padding-bottom: 26.4px;
  padding-bottom: 2.2rem;
}
.vtp-section-small.seperated .container:before {
  top: -30px;
  top: -2.5rem;
}
@media only screen and (max-width: 767px) {
  .vtp-section-small.seperated .container:before {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-top: 1px solid #d7dadb;
  }
}

.vtp-filter-panels-container > .vtp-section {
  padding-top: 28.9992px;
  padding-top: 2.4166rem;
}
@media only screen and (max-width: 767px) {
  .vtp-filter-panels-container > .vtp-section {
    padding-top: 0;
  }
}

.vtp-section.vtp-backlink {
  width: 100%;
  padding-right: 4% !important;
  padding-left: 4% !important;
}
@media only screen and (min-width: 1280px) {
  .vtp-section.vtp-backlink {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

.vtp-section.vtp-backlink .container {
  padding-left: 0;
  padding-right: 0;
}

body > div > span {
  color: #fff;
}
body > input {
  visibility: hidden;
}
body > input + div {
  color: #fff;
}

#vtp-footer-disclaimers-hidden {
  display: none;
}

.layer {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.gpu {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.perspective {
  perspective: 1200px;
  -webkit-perspective: 1200px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.row,
.cf,
.vtp-filter-panel-engines .vtp-filter-campaigns,
.vtp-filter-panel-engines .vtp-filter-engines,
.vtp-filter-panel-engines .vtp-filter-fields-full-width,
.car-teaser .product-extras,
.similar-car-item .product-extras,
.vtp-tab-pane,
.vtp-description-list-wrap,
.list-3-2-1,
.list-2-2-2-1,
.vtp-filter-panel-features .vtp-feature-list,
.vtp-features .vtp-feature-teasers,
.vtp-grid-view .vtp-results-view,
.vtp-grid-view #suggested-cars,
.vtp-suggested-cars-item,
.vtp-similar-cars-list,
.clearfix,
.vtp-saved-search .saved-search-bar,
.vtp-filter-breadcrumb .vtp-breadcrumbs,
.vtp-dealer-inquiry .vtp-modal-form-hints .vtp-wrapper,
.vtp-dealer-info-no-map .vtp-dealer-info-box .info-box-col,
.vtp-dealer-info-no-map .vtp-dealer-info-box,
.vtp-dealer-info .vtp-dealer-info-box.wide,
.vtp-footer .top-row,
.vtp-header .nav-layer .model-layer,
.vtp-header .nav-layer.menu .submenu,
.vtp-header .nav-layer.menu .links,
.car-teaser .title-link,
.similar-car-item .title-link,
.search .vtp-flyout .item-list li,
.favorites .vtp-flyout .item-list li,
.audi-code-enter .vtp-flyout .content,
.vtp-service-bar .vtp-flyout .content,
.vtp-social-nav,
.vtp-stage-gallery.custom .vtp-stage-gallery-content,
.vtp-stage-gallery,
.container,
.vtp-section {
  *zoom: 1;
}
.row:before, .row:after,
.cf:before,
.vtp-filter-panel-engines .vtp-filter-campaigns:before,
.vtp-filter-panel-engines .vtp-filter-engines:before,
.vtp-filter-panel-engines .vtp-filter-fields-full-width:before,
.car-teaser .product-extras:before,
.similar-car-item .product-extras:before,
.vtp-tab-pane:before,
.vtp-description-list-wrap:before,
.list-3-2-1:before,
.list-2-2-2-1:before,
.vtp-filter-panel-features .vtp-feature-list:before,
.vtp-features .vtp-feature-teasers:before,
.vtp-grid-view .vtp-results-view:before,
.vtp-grid-view #suggested-cars:before,
.vtp-suggested-cars-item:before,
.vtp-similar-cars-list:before,
.cf:after,
.vtp-filter-panel-engines .vtp-filter-campaigns:after,
.vtp-filter-panel-engines .vtp-filter-engines:after,
.vtp-filter-panel-engines .vtp-filter-fields-full-width:after,
.car-teaser .product-extras:after,
.similar-car-item .product-extras:after,
.vtp-tab-pane:after,
.vtp-description-list-wrap:after,
.list-3-2-1:after,
.list-2-2-2-1:after,
.vtp-filter-panel-features .vtp-feature-list:after,
.vtp-features .vtp-feature-teasers:after,
.vtp-grid-view .vtp-results-view:after,
.vtp-grid-view #suggested-cars:after,
.vtp-suggested-cars-item:after,
.vtp-similar-cars-list:after,
.clearfix:before,
.vtp-saved-search .saved-search-bar:before,
.vtp-filter-breadcrumb .vtp-breadcrumbs:before,
.vtp-dealer-inquiry .vtp-modal-form-hints .vtp-wrapper:before,
.vtp-dealer-info-no-map .vtp-dealer-info-box .info-box-col:before,
.vtp-dealer-info-no-map .vtp-dealer-info-box:before,
.vtp-dealer-info .vtp-dealer-info-box.wide:before,
.vtp-footer .top-row:before,
.vtp-header .nav-layer .model-layer:before,
.vtp-header .nav-layer.menu .submenu:before,
.vtp-header .nav-layer.menu .links:before,
.car-teaser .title-link:before,
.similar-car-item .title-link:before,
.search .vtp-flyout .item-list li:before,
.favorites .vtp-flyout .item-list li:before,
.audi-code-enter .vtp-flyout .content:before,
.vtp-service-bar .vtp-flyout .content:before,
.vtp-social-nav:before,
.vtp-stage-gallery.custom .vtp-stage-gallery-content:before,
.vtp-stage-gallery:before,
.container:before,
.vtp-section:before,
.clearfix:after,
.vtp-saved-search .saved-search-bar:after,
.vtp-filter-breadcrumb .vtp-breadcrumbs:after,
.vtp-dealer-inquiry .vtp-modal-form-hints .vtp-wrapper:after,
.vtp-dealer-info-no-map .vtp-dealer-info-box .info-box-col:after,
.vtp-dealer-info-no-map .vtp-dealer-info-box:after,
.vtp-dealer-info .vtp-dealer-info-box.wide:after,
.vtp-footer .top-row:after,
.vtp-header .nav-layer .model-layer:after,
.vtp-header .nav-layer.menu .submenu:after,
.vtp-header .nav-layer.menu .links:after,
.car-teaser .title-link:after,
.similar-car-item .title-link:after,
.search .vtp-flyout .item-list li:after,
.favorites .vtp-flyout .item-list li:after,
.audi-code-enter .vtp-flyout .content:after,
.vtp-service-bar .vtp-flyout .content:after,
.vtp-social-nav:after,
.vtp-stage-gallery.custom .vtp-stage-gallery-content:after,
.vtp-stage-gallery:after,
.container:after,
.vtp-section:after {
  content: "";
  display: table;
}
.row:after,
.cf:after,
.vtp-filter-panel-engines .vtp-filter-campaigns:after,
.vtp-filter-panel-engines .vtp-filter-engines:after,
.vtp-filter-panel-engines .vtp-filter-fields-full-width:after,
.car-teaser .product-extras:after,
.similar-car-item .product-extras:after,
.vtp-tab-pane:after,
.vtp-description-list-wrap:after,
.list-3-2-1:after,
.list-2-2-2-1:after,
.vtp-filter-panel-features .vtp-feature-list:after,
.vtp-features .vtp-feature-teasers:after,
.vtp-grid-view .vtp-results-view:after,
.vtp-grid-view #suggested-cars:after,
.vtp-suggested-cars-item:after,
.vtp-similar-cars-list:after,
.clearfix:after,
.vtp-saved-search .saved-search-bar:after,
.vtp-filter-breadcrumb .vtp-breadcrumbs:after,
.vtp-dealer-inquiry .vtp-modal-form-hints .vtp-wrapper:after,
.vtp-dealer-info-no-map .vtp-dealer-info-box .info-box-col:after,
.vtp-dealer-info-no-map .vtp-dealer-info-box:after,
.vtp-dealer-info .vtp-dealer-info-box.wide:after,
.vtp-footer .top-row:after,
.vtp-header .nav-layer .model-layer:after,
.vtp-header .nav-layer.menu .submenu:after,
.vtp-header .nav-layer.menu .links:after,
.car-teaser .title-link:after,
.similar-car-item .title-link:after,
.search .vtp-flyout .item-list li:after,
.favorites .vtp-flyout .item-list li:after,
.audi-code-enter .vtp-flyout .content:after,
.vtp-service-bar .vtp-flyout .content:after,
.vtp-social-nav:after,
.vtp-stage-gallery.custom .vtp-stage-gallery-content:after,
.vtp-stage-gallery:after,
.container:after,
.vtp-section:after {
  clear: both;
}

.pos-rel {
  position: relative;
}

.push-left {
  float: left;
}

.push-right {
  float: right;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.block {
  display: block;
}

.italic {
  font-style: italic;
}

.format-16x9, .format-16x7, .bg-image-16x7,
.bg-image-16x9 {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  height: 0;
  overflow: hidden;
}

.bg-image-16x7,
.bg-image-16x9 {
  background: #f4f4f4;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}

.format-16x7,
.bg-image-16x7 {
  padding-top: 46.25%;
}

.flex-center {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.no-flexbox .flex-center {
  text-align: center;
}

.no-flexbox .flex-center > * {
  display: inline-block;
  text-align: center;
}

.gt-ie9.flexbox .flex-center {
  -ms-flex-pack: center;
  text-align: center;
}

.decorated {
  border-bottom: 1px solid #767d90;
  padding: 0 1px;
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -o-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
}
.decorated:hover {
  border-bottom-color: #c03;
  color: #c03;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.vtp-title,
.h3,
.vtp-dealer-info-box .name,
.vtp-range-slider .slider-label,
.vtp-modals dt,
.lead,
.h4,
.vtp-dealer-info-no-map .vtp-dealer-info-box .name,
.h5,
.h6 {
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: #000;
  letter-spacing: 0;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.android h1,
.android h2,
.android h3,
.android h4,
.android h5,
.android h6,
.android .h1,
.android .h2,
.android .vtp-title,
.android .h3,
.android .vtp-dealer-info-box .name,
.vtp-dealer-info-box .android .name,
.android .vtp-range-slider .slider-label,
.vtp-range-slider .android .slider-label,
.android .vtp-modals dt,
.vtp-modals .android dt,
.android .lead,
.android .h4,
.android .h5,
.android .h6 {
  text-rendering: auto;
}
.no-csshyphens h1,
.no-csshyphens h2,
.no-csshyphens h3,
.no-csshyphens h4,
.no-csshyphens h5,
.no-csshyphens h6,
.no-csshyphens .h1,
.no-csshyphens .h2,
.no-csshyphens .vtp-title,
.no-csshyphens .h3,
.no-csshyphens .vtp-dealer-info-box .name,
.vtp-dealer-info-box .no-csshyphens .name,
.no-csshyphens .vtp-range-slider .slider-label,
.vtp-range-slider .no-csshyphens .slider-label,
.no-csshyphens .vtp-modals dt,
.vtp-modals .no-csshyphens dt,
.no-csshyphens .lead,
.no-csshyphens .h4,
.no-csshyphens .h5,
.no-csshyphens .h6 {
  word-wrap: break-word;
  white-space: normal;
}
h1.light,
h1 .light,
h2.light,
h2 .light,
h3.light,
h3 .light,
h4.light,
h4 .light,
h5.light,
h5 .light,
h6.light,
h6 .light,
.h1.light,
.h1 .light,
.h2.light,
.light.vtp-title,
.h2 .light,
.vtp-title .light,
.h3.light,
.vtp-dealer-info-box .light.name,
.vtp-range-slider .light.slider-label,
.vtp-modals dt.light,
.lead,
.h3 .light,
.vtp-dealer-info-box .name .light,
.vtp-range-slider .slider-label .light,
.vtp-modals dt .light,
.lead .light,
.h4.light,
.h4 .light,
.h5.light,
.h5 .light,
.h6.light,
.h6 .light {
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  font-weight: 100;
}
h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small,
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small,
.h1 small,
.h1 .small,
.h2 small,
.vtp-title small,
.h2 .small,
.vtp-title .small,
.h3 small,
.vtp-dealer-info-box .name small,
.vtp-range-slider .slider-label small,
.vtp-modals dt small,
.lead small,
.h3 .small,
.vtp-dealer-info-box .name .small,
.vtp-range-slider .slider-label .small,
.vtp-modals dt .small,
.lead .small,
.h4 small,
.vtp-dealer-info-no-map .vtp-dealer-info-box .name small,
.h4 .small,
.h5 small,
.h5 .small,
.h6 small,
.h6 .small {
  font-weight: 400;
  line-height: 1;
  color: #000;
}

h1,
h2,
h3,
.h1,
.h2,
.vtp-title,
.h3,
.vtp-dealer-info-box .name,
.vtp-range-slider .slider-label,
.vtp-modals dt,
.lead {
  margin-top: 18px;
  margin-top: 1.5rem;
  margin-bottom: 18px;
  margin-bottom: 1.5rem;
}
h1:first-child,
h2:first-child,
h3:first-child,
.h1:first-child,
.h2:first-child,
.vtp-title:first-child,
.h3:first-child,
.vtp-dealer-info-box .name:first-child,
.vtp-range-slider .slider-label:first-child,
.vtp-modals dt:first-child,
.lead:first-child {
  margin-top: 0;
}
h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small,
.h1 small,
.h1 .small,
.h2 small,
.vtp-title small,
.h2 .small,
.vtp-title .small,
.h3 small,
.vtp-dealer-info-box .name small,
.vtp-range-slider .slider-label small,
.vtp-modals dt small,
.lead small,
.h3 .small,
.vtp-dealer-info-box .name .small,
.vtp-range-slider .slider-label .small,
.vtp-modals dt .small,
.lead .small {
  font-size: 65%;
}

h4,
h5,
h6,
.h4,
.vtp-dealer-info-no-map .vtp-dealer-info-box .name,
.h5,
.h6 {
  margin-top: 12px;
  margin-top: 1rem;
  margin-bottom: 12px;
  margin-bottom: 1rem;
}
h4:first-child,
h5:first-child,
h6:first-child,
.h4:first-child,
.vtp-dealer-info-no-map .vtp-dealer-info-box .name:first-child,
.h5:first-child,
.h6:first-child {
  margin-top: 0;
}
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small,
.h4 small,
.vtp-dealer-info-no-map .vtp-dealer-info-box .name small,
.h4 .small,
.vtp-dealer-info-no-map .vtp-dealer-info-box .name .small,
.h5 small,
.h5 .small,
.h6 small,
.h6 .small {
  font-size: 75%;
}

h1,
.h1 {
  font-size: 36px;
}

h2,
.h2,
.vtp-title {
  font-size: 25px;
}

h3,
.h3,
.vtp-dealer-info-box .name,
.vtp-range-slider .slider-label,
.vtp-modals dt,
.lead {
  font-size: 18px;
}

h4,
.h4,
.vtp-dealer-info-no-map .vtp-dealer-info-box .name {
  font-size: 14px;
}

h5,
.h5 {
  font-size: 13px;
}

h6,
.h6 {
  font-size: 13px;
}

span,
i,
b,
strong {
  font-size: inherit;
}

p {
  margin: 0 0 12px;
  margin: 0 0 1rem;
}
.no-csshyphens p {
  word-wrap: break-word;
  white-space: normal;
}
p:last-child {
  margin-bottom: 0 !important;
}

.vtp-brand {
  color: #c03;
}

.lead {
  font-family: Verdana, sans-serif;
  line-height: 1.5em;
}
@media only screen and (max-width: 767px) {
  .lead {
    font-size: 14px;
  }
}

small,
.small {
  font-size: 10px;
}

cite {
  font-style: normal;
}

mark,
.mark {
  background-color: #900;
  padding: 0.2em;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.breakall {
  word-break: break-all;
}

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

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-muted {
  color: #b0b6b8;
}

.bg-primary {
  color: #fff;
}

.copy-text, .vtp-consumption .content, .vtp-technical-data .content, .vtp-features .content {
  font-family: Verdana, sans-serif;
}
.copy-text h1, .vtp-consumption .content h1, .vtp-technical-data .content h1, .vtp-features .content h1,
.copy-text h2,
.vtp-consumption .content h2,
.vtp-technical-data .content h2,
.vtp-features .content h2,
.copy-text h3,
.vtp-consumption .content h3,
.vtp-technical-data .content h3,
.vtp-features .content h3,
.copy-text h4,
.vtp-consumption .content h4,
.vtp-technical-data .content h4,
.vtp-features .content h4,
.copy-text h5,
.vtp-consumption .content h5,
.vtp-technical-data .content h5,
.vtp-features .content h5,
.copy-text h6,
.vtp-consumption .content h6,
.vtp-technical-data .content h6,
.vtp-features .content h6,
.copy-text b,
.vtp-consumption .content b,
.vtp-technical-data .content b,
.vtp-features .content b,
.copy-text strong,
.vtp-consumption .content strong,
.vtp-technical-data .content strong,
.vtp-features .content strong {
  font-family: Verdana, sans-serif;
  font-weight: 700;
}
.copy-text h1.light, .vtp-consumption .content h1.light, .vtp-technical-data .content h1.light, .vtp-features .content h1.light, .copy-text h1.lead, .vtp-consumption .content h1.lead, .vtp-technical-data .content h1.lead, .vtp-features .content h1.lead,
.copy-text h2.light,
.vtp-consumption .content h2.light,
.vtp-technical-data .content h2.light,
.vtp-features .content h2.light,
.copy-text h2.lead,
.vtp-consumption .content h2.lead,
.vtp-technical-data .content h2.lead,
.vtp-features .content h2.lead,
.copy-text h3.light,
.vtp-consumption .content h3.light,
.vtp-technical-data .content h3.light,
.vtp-features .content h3.light,
.copy-text h3.lead,
.vtp-consumption .content h3.lead,
.vtp-technical-data .content h3.lead,
.vtp-features .content h3.lead,
.copy-text h4.light,
.vtp-consumption .content h4.light,
.vtp-technical-data .content h4.light,
.vtp-features .content h4.light,
.copy-text h4.lead,
.vtp-consumption .content h4.lead,
.vtp-technical-data .content h4.lead,
.vtp-features .content h4.lead,
.copy-text h5.light,
.vtp-consumption .content h5.light,
.vtp-technical-data .content h5.light,
.vtp-features .content h5.light,
.copy-text h5.lead,
.vtp-consumption .content h5.lead,
.vtp-technical-data .content h5.lead,
.vtp-features .content h5.lead,
.copy-text h6.light,
.vtp-consumption .content h6.light,
.vtp-technical-data .content h6.light,
.vtp-features .content h6.light,
.copy-text h6.lead,
.vtp-consumption .content h6.lead,
.vtp-technical-data .content h6.lead,
.vtp-features .content h6.lead,
.copy-text b.light,
.vtp-consumption .content b.light,
.vtp-technical-data .content b.light,
.vtp-features .content b.light,
.copy-text b.lead,
.vtp-consumption .content b.lead,
.vtp-technical-data .content b.lead,
.vtp-features .content b.lead,
.copy-text strong.light,
.vtp-consumption .content strong.light,
.vtp-technical-data .content strong.light,
.vtp-features .content strong.light,
.copy-text strong.lead,
.vtp-consumption .content strong.lead,
.vtp-technical-data .content strong.lead,
.vtp-features .content strong.lead {
  font-weight: 400;
}
.copy-text b, .vtp-consumption .content b, .vtp-technical-data .content b, .vtp-features .content b,
.copy-text strong,
.vtp-consumption .content strong,
.vtp-technical-data .content strong,
.vtp-features .content strong {
  letter-spacing: 0 !important;
}

b,
.bi,
strong {
  font-weight: 700;
}

i {
  font-style: italic;
}

.bi {
  font-style: italic;
}

.list-unstyled, .list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

dl {
  margin-top: 0;
  margin-bottom: 19px;
}

dt,
dd {
  line-height: 1.6;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

.largeLines {
  line-height: 1.75em;
}

@media print {
  .vtp-brand {
    color: #c03 !important;
  }
}
.vtp-buyOnline-avail {
  display: block;
  line-height: 2em;
  color: #009900;
  margin-bottom: 0.5em;
}
.vtp-buyOnline-avail span.icon {
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
}
.vtp-buyOnline-avail span.icon img {
  vertical-align: baseline;
}
.vtp-buyOnline-avail span.text {
  display: inline-block;
  vertical-align: baseline;
  font-weight: 700;
  line-height: 2em;
  font-size: 1em;
}

.vtp-reserve-avail {
  display: block;
  line-height: 2em;
  margin-bottom: 0.5em;
}
.vtp-reserve-avail span.text, .vtp-reserve-avail span.text.green {
  display: inline-block;
  vertical-align: baseline;
  font-weight: 700;
  line-height: 2em;
  font-size: 1em;
}
.vtp-reserve-avail span.text.green {
  color: #009900 !important;
}

.buyOnlineHint {
  color: #AAA;
  text-decoration: underline;
  padding-bottom: 0.5em;
}

[class*=visible-] {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .visible-xl {
    display: block;
  }
  .hide-xl {
    display: none !important;
  }
}
@media only screen and (max-width: 940px) {
  .visible-ll {
    display: block;
  }
  .hide-ll {
    display: none !important;
  }
}
@media only screen and (max-width: 800px) {
  .visible-l {
    display: block;
  }
  .hide-l {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .visible-ms {
    display: block;
  }
  .hide-ms {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .visible-m {
    display: block;
  }
  .hide-m {
    display: none !important;
  }
}
@media only screen and (max-width: 568px) {
  .visible-s {
    display: block;
  }
  .hide-s {
    display: none !important;
  }
}
@media only screen and (max-width: 320px) {
  .visible-xs {
    display: block;
  }
  .hide-xs {
    display: none !important;
  }
}
.vtp-similar-cars-list > article,
.vtp-similar-cars-list > section,
.vtp-similar-cars-list > label,
.vtp-similar-cars-list > fieldset,
.vtp-similar-cars-list > div,
.vtp-similar-cars-list > li {
  float: left;
  clear: none;
  width: 22.7045%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-similar-cars-list > article:nth-of-type(n),
.vtp-similar-cars-list > section:nth-of-type(n),
.vtp-similar-cars-list > label:nth-of-type(n),
.vtp-similar-cars-list > fieldset:nth-of-type(n),
.vtp-similar-cars-list > div:nth-of-type(n),
.vtp-similar-cars-list > li:nth-of-type(n) {
  margin-right: 2.994%;
  float: left;
  clear: none;
}
.vtp-similar-cars-list > article:nth-of-type(4n),
.vtp-similar-cars-list > section:nth-of-type(4n),
.vtp-similar-cars-list > label:nth-of-type(4n),
.vtp-similar-cars-list > fieldset:nth-of-type(4n),
.vtp-similar-cars-list > div:nth-of-type(4n),
.vtp-similar-cars-list > li:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.vtp-similar-cars-list > article:nth-of-type(4n + 1),
.vtp-similar-cars-list > section:nth-of-type(4n + 1),
.vtp-similar-cars-list > label:nth-of-type(4n + 1),
.vtp-similar-cars-list > fieldset:nth-of-type(4n + 1),
.vtp-similar-cars-list > div:nth-of-type(4n + 1),
.vtp-similar-cars-list > li:nth-of-type(4n + 1) {
  clear: both;
}
@media only screen and (max-width: 940px) {
  .vtp-similar-cars-list > article,
  .vtp-similar-cars-list > section,
  .vtp-similar-cars-list > label,
  .vtp-similar-cars-list > fieldset,
  .vtp-similar-cars-list > div,
  .vtp-similar-cars-list > li {
    float: left;
    clear: none;
    width: 99.8%;
    margin-left: 0;
    margin-right: 2.994%;
    border-bottom: 1px solid #d7dadb;
  }
  .vtp-similar-cars-list > article:nth-of-type(4n),
  .vtp-similar-cars-list > section:nth-of-type(4n),
  .vtp-similar-cars-list > label:nth-of-type(4n),
  .vtp-similar-cars-list > fieldset:nth-of-type(4n),
  .vtp-similar-cars-list > div:nth-of-type(4n),
  .vtp-similar-cars-list > li:nth-of-type(4n) {
    margin-right: 2.994%;
    float: left;
  }
  .vtp-similar-cars-list > article:nth-of-type(4n + 1),
  .vtp-similar-cars-list > section:nth-of-type(4n + 1),
  .vtp-similar-cars-list > label:nth-of-type(4n + 1),
  .vtp-similar-cars-list > fieldset:nth-of-type(4n + 1),
  .vtp-similar-cars-list > div:nth-of-type(4n + 1),
  .vtp-similar-cars-list > li:nth-of-type(4n + 1) {
    clear: none;
  }
  .vtp-similar-cars-list > article:last-child,
  .vtp-similar-cars-list > section:last-child,
  .vtp-similar-cars-list > label:last-child,
  .vtp-similar-cars-list > fieldset:last-child,
  .vtp-similar-cars-list > div:last-child,
  .vtp-similar-cars-list > li:last-child {
    margin-right: 0;
  }
}

.vtp-suggested-cars-item > article,
.vtp-suggested-cars-item > section,
.vtp-suggested-cars-item > label,
.vtp-suggested-cars-item > fieldset,
.vtp-suggested-cars-item > div,
.vtp-suggested-cars-item > li {
  float: left;
  clear: none;
  width: 22.7045%;
  margin-left: 0;
  margin-right: 2.994%;
  margin-bottom: 24px;
  margin-bottom: 2rem;
}
.vtp-suggested-cars-item > article:nth-of-type(n),
.vtp-suggested-cars-item > section:nth-of-type(n),
.vtp-suggested-cars-item > label:nth-of-type(n),
.vtp-suggested-cars-item > fieldset:nth-of-type(n),
.vtp-suggested-cars-item > div:nth-of-type(n),
.vtp-suggested-cars-item > li:nth-of-type(n) {
  margin-right: 2.994%;
  float: left;
  clear: none;
}
.vtp-suggested-cars-item > article:nth-of-type(4n),
.vtp-suggested-cars-item > section:nth-of-type(4n),
.vtp-suggested-cars-item > label:nth-of-type(4n),
.vtp-suggested-cars-item > fieldset:nth-of-type(4n),
.vtp-suggested-cars-item > div:nth-of-type(4n),
.vtp-suggested-cars-item > li:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.vtp-suggested-cars-item > article:nth-of-type(4n + 1),
.vtp-suggested-cars-item > section:nth-of-type(4n + 1),
.vtp-suggested-cars-item > label:nth-of-type(4n + 1),
.vtp-suggested-cars-item > fieldset:nth-of-type(4n + 1),
.vtp-suggested-cars-item > div:nth-of-type(4n + 1),
.vtp-suggested-cars-item > li:nth-of-type(4n + 1) {
  clear: both;
}
@media only screen and (max-width: 940px) {
  .vtp-suggested-cars-item > article,
  .vtp-suggested-cars-item > section,
  .vtp-suggested-cars-item > label,
  .vtp-suggested-cars-item > fieldset,
  .vtp-suggested-cars-item > div,
  .vtp-suggested-cars-item > li {
    float: left;
    clear: none;
    width: 31.2706666667%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-suggested-cars-item > article:nth-of-type(4n),
  .vtp-suggested-cars-item > section:nth-of-type(4n),
  .vtp-suggested-cars-item > label:nth-of-type(4n),
  .vtp-suggested-cars-item > fieldset:nth-of-type(4n),
  .vtp-suggested-cars-item > div:nth-of-type(4n),
  .vtp-suggested-cars-item > li:nth-of-type(4n) {
    margin-right: 2.994%;
    float: left;
  }
  .vtp-suggested-cars-item > article:nth-of-type(4n + 1),
  .vtp-suggested-cars-item > section:nth-of-type(4n + 1),
  .vtp-suggested-cars-item > label:nth-of-type(4n + 1),
  .vtp-suggested-cars-item > fieldset:nth-of-type(4n + 1),
  .vtp-suggested-cars-item > div:nth-of-type(4n + 1),
  .vtp-suggested-cars-item > li:nth-of-type(4n + 1) {
    clear: none;
  }
  .vtp-suggested-cars-item > article:nth-of-type(n),
  .vtp-suggested-cars-item > section:nth-of-type(n),
  .vtp-suggested-cars-item > label:nth-of-type(n),
  .vtp-suggested-cars-item > fieldset:nth-of-type(n),
  .vtp-suggested-cars-item > div:nth-of-type(n),
  .vtp-suggested-cars-item > li:nth-of-type(n) {
    margin-right: 2.994%;
    float: left;
    clear: none;
  }
  .vtp-suggested-cars-item > article:nth-of-type(3n),
  .vtp-suggested-cars-item > section:nth-of-type(3n),
  .vtp-suggested-cars-item > label:nth-of-type(3n),
  .vtp-suggested-cars-item > fieldset:nth-of-type(3n),
  .vtp-suggested-cars-item > div:nth-of-type(3n),
  .vtp-suggested-cars-item > li:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .vtp-suggested-cars-item > article:nth-of-type(3n + 1),
  .vtp-suggested-cars-item > section:nth-of-type(3n + 1),
  .vtp-suggested-cars-item > label:nth-of-type(3n + 1),
  .vtp-suggested-cars-item > fieldset:nth-of-type(3n + 1),
  .vtp-suggested-cars-item > div:nth-of-type(3n + 1),
  .vtp-suggested-cars-item > li:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-suggested-cars-item > article,
  .vtp-suggested-cars-item > section,
  .vtp-suggested-cars-item > label,
  .vtp-suggested-cars-item > fieldset,
  .vtp-suggested-cars-item > div,
  .vtp-suggested-cars-item > li {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid #d7dadb;
  }
  .vtp-suggested-cars-item > article:first-child,
  .vtp-suggested-cars-item > section:first-child,
  .vtp-suggested-cars-item > label:first-child,
  .vtp-suggested-cars-item > fieldset:first-child,
  .vtp-suggested-cars-item > div:first-child,
  .vtp-suggested-cars-item > li:first-child {
    margin-left: auto;
  }
  .vtp-suggested-cars-item > article:last-child,
  .vtp-suggested-cars-item > section:last-child,
  .vtp-suggested-cars-item > label:last-child,
  .vtp-suggested-cars-item > fieldset:last-child,
  .vtp-suggested-cars-item > div:last-child,
  .vtp-suggested-cars-item > li:last-child {
    margin-right: auto;
  }
}

.vtp-filter-panel-features .vtp-feature-list > article, .vtp-features .vtp-feature-teasers > article, .vtp-grid-view .vtp-results-view > article, .vtp-grid-view #suggested-cars > article,
.vtp-filter-panel-features .vtp-feature-list > section,
.vtp-features .vtp-feature-teasers > section,
.vtp-grid-view .vtp-results-view > section,
.vtp-grid-view #suggested-cars > section,
.vtp-filter-panel-features .vtp-feature-list > fieldset,
.vtp-features .vtp-feature-teasers > fieldset,
.vtp-grid-view .vtp-results-view > fieldset,
.vtp-grid-view #suggested-cars > fieldset,
.vtp-filter-panel-features .vtp-feature-list > label,
.vtp-features .vtp-feature-teasers > label,
.vtp-grid-view .vtp-results-view > label,
.vtp-grid-view #suggested-cars > label,
.vtp-filter-panel-features .vtp-feature-list > div,
.vtp-features .vtp-feature-teasers > div,
.vtp-grid-view .vtp-results-view > div,
.vtp-grid-view #suggested-cars > div,
.vtp-filter-panel-features .vtp-feature-list > li,
.vtp-features .vtp-feature-teasers > li,
.vtp-grid-view .vtp-results-view > li,
.vtp-grid-view #suggested-cars > li {
  float: left;
  clear: none;
  width: 22.7045%;
  margin-left: 0;
  margin-right: 2.994%;
  margin-bottom: 24px;
  margin-bottom: 2rem;
}
.vtp-filter-panel-features .vtp-feature-list > article:nth-of-type(n), .vtp-features .vtp-feature-teasers > article:nth-of-type(n), .vtp-grid-view .vtp-results-view > article:nth-of-type(n), .vtp-grid-view #suggested-cars > article:nth-of-type(n),
.vtp-filter-panel-features .vtp-feature-list > section:nth-of-type(n),
.vtp-features .vtp-feature-teasers > section:nth-of-type(n),
.vtp-grid-view .vtp-results-view > section:nth-of-type(n),
.vtp-grid-view #suggested-cars > section:nth-of-type(n),
.vtp-filter-panel-features .vtp-feature-list > fieldset:nth-of-type(n),
.vtp-features .vtp-feature-teasers > fieldset:nth-of-type(n),
.vtp-grid-view .vtp-results-view > fieldset:nth-of-type(n),
.vtp-grid-view #suggested-cars > fieldset:nth-of-type(n),
.vtp-filter-panel-features .vtp-feature-list > label:nth-of-type(n),
.vtp-features .vtp-feature-teasers > label:nth-of-type(n),
.vtp-grid-view .vtp-results-view > label:nth-of-type(n),
.vtp-grid-view #suggested-cars > label:nth-of-type(n),
.vtp-filter-panel-features .vtp-feature-list > div:nth-of-type(n),
.vtp-features .vtp-feature-teasers > div:nth-of-type(n),
.vtp-grid-view .vtp-results-view > div:nth-of-type(n),
.vtp-grid-view #suggested-cars > div:nth-of-type(n),
.vtp-filter-panel-features .vtp-feature-list > li:nth-of-type(n),
.vtp-features .vtp-feature-teasers > li:nth-of-type(n),
.vtp-grid-view .vtp-results-view > li:nth-of-type(n),
.vtp-grid-view #suggested-cars > li:nth-of-type(n) {
  margin-right: 2.994%;
  float: left;
  clear: none;
}
.vtp-filter-panel-features .vtp-feature-list > article:nth-of-type(4n), .vtp-features .vtp-feature-teasers > article:nth-of-type(4n), .vtp-grid-view .vtp-results-view > article:nth-of-type(4n), .vtp-grid-view #suggested-cars > article:nth-of-type(4n),
.vtp-filter-panel-features .vtp-feature-list > section:nth-of-type(4n),
.vtp-features .vtp-feature-teasers > section:nth-of-type(4n),
.vtp-grid-view .vtp-results-view > section:nth-of-type(4n),
.vtp-grid-view #suggested-cars > section:nth-of-type(4n),
.vtp-filter-panel-features .vtp-feature-list > fieldset:nth-of-type(4n),
.vtp-features .vtp-feature-teasers > fieldset:nth-of-type(4n),
.vtp-grid-view .vtp-results-view > fieldset:nth-of-type(4n),
.vtp-grid-view #suggested-cars > fieldset:nth-of-type(4n),
.vtp-filter-panel-features .vtp-feature-list > label:nth-of-type(4n),
.vtp-features .vtp-feature-teasers > label:nth-of-type(4n),
.vtp-grid-view .vtp-results-view > label:nth-of-type(4n),
.vtp-grid-view #suggested-cars > label:nth-of-type(4n),
.vtp-filter-panel-features .vtp-feature-list > div:nth-of-type(4n),
.vtp-features .vtp-feature-teasers > div:nth-of-type(4n),
.vtp-grid-view .vtp-results-view > div:nth-of-type(4n),
.vtp-grid-view #suggested-cars > div:nth-of-type(4n),
.vtp-filter-panel-features .vtp-feature-list > li:nth-of-type(4n),
.vtp-features .vtp-feature-teasers > li:nth-of-type(4n),
.vtp-grid-view .vtp-results-view > li:nth-of-type(4n),
.vtp-grid-view #suggested-cars > li:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.vtp-filter-panel-features .vtp-feature-list > article:nth-of-type(4n + 1), .vtp-features .vtp-feature-teasers > article:nth-of-type(4n + 1), .vtp-grid-view .vtp-results-view > article:nth-of-type(4n + 1), .vtp-grid-view #suggested-cars > article:nth-of-type(4n + 1),
.vtp-filter-panel-features .vtp-feature-list > section:nth-of-type(4n + 1),
.vtp-features .vtp-feature-teasers > section:nth-of-type(4n + 1),
.vtp-grid-view .vtp-results-view > section:nth-of-type(4n + 1),
.vtp-grid-view #suggested-cars > section:nth-of-type(4n + 1),
.vtp-filter-panel-features .vtp-feature-list > fieldset:nth-of-type(4n + 1),
.vtp-features .vtp-feature-teasers > fieldset:nth-of-type(4n + 1),
.vtp-grid-view .vtp-results-view > fieldset:nth-of-type(4n + 1),
.vtp-grid-view #suggested-cars > fieldset:nth-of-type(4n + 1),
.vtp-filter-panel-features .vtp-feature-list > label:nth-of-type(4n + 1),
.vtp-features .vtp-feature-teasers > label:nth-of-type(4n + 1),
.vtp-grid-view .vtp-results-view > label:nth-of-type(4n + 1),
.vtp-grid-view #suggested-cars > label:nth-of-type(4n + 1),
.vtp-filter-panel-features .vtp-feature-list > div:nth-of-type(4n + 1),
.vtp-features .vtp-feature-teasers > div:nth-of-type(4n + 1),
.vtp-grid-view .vtp-results-view > div:nth-of-type(4n + 1),
.vtp-grid-view #suggested-cars > div:nth-of-type(4n + 1),
.vtp-filter-panel-features .vtp-feature-list > li:nth-of-type(4n + 1),
.vtp-features .vtp-feature-teasers > li:nth-of-type(4n + 1),
.vtp-grid-view .vtp-results-view > li:nth-of-type(4n + 1),
.vtp-grid-view #suggested-cars > li:nth-of-type(4n + 1) {
  clear: both;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-panel-features .vtp-feature-list > article, .vtp-features .vtp-feature-teasers > article, .vtp-grid-view .vtp-results-view > article, .vtp-grid-view #suggested-cars > article,
  .vtp-filter-panel-features .vtp-feature-list > section,
  .vtp-features .vtp-feature-teasers > section,
  .vtp-grid-view .vtp-results-view > section,
  .vtp-grid-view #suggested-cars > section,
  .vtp-filter-panel-features .vtp-feature-list > fieldset,
  .vtp-features .vtp-feature-teasers > fieldset,
  .vtp-grid-view .vtp-results-view > fieldset,
  .vtp-grid-view #suggested-cars > fieldset,
  .vtp-filter-panel-features .vtp-feature-list > label,
  .vtp-features .vtp-feature-teasers > label,
  .vtp-grid-view .vtp-results-view > label,
  .vtp-grid-view #suggested-cars > label,
  .vtp-filter-panel-features .vtp-feature-list > div,
  .vtp-features .vtp-feature-teasers > div,
  .vtp-grid-view .vtp-results-view > div,
  .vtp-grid-view #suggested-cars > div,
  .vtp-filter-panel-features .vtp-feature-list > li,
  .vtp-features .vtp-feature-teasers > li,
  .vtp-grid-view .vtp-results-view > li,
  .vtp-grid-view #suggested-cars > li {
    float: left;
    clear: none;
    width: 31.2706666667%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-filter-panel-features .vtp-feature-list > article:nth-of-type(4n), .vtp-features .vtp-feature-teasers > article:nth-of-type(4n), .vtp-grid-view .vtp-results-view > article:nth-of-type(4n), .vtp-grid-view #suggested-cars > article:nth-of-type(4n),
  .vtp-filter-panel-features .vtp-feature-list > section:nth-of-type(4n),
  .vtp-features .vtp-feature-teasers > section:nth-of-type(4n),
  .vtp-grid-view .vtp-results-view > section:nth-of-type(4n),
  .vtp-grid-view #suggested-cars > section:nth-of-type(4n),
  .vtp-filter-panel-features .vtp-feature-list > fieldset:nth-of-type(4n),
  .vtp-features .vtp-feature-teasers > fieldset:nth-of-type(4n),
  .vtp-grid-view .vtp-results-view > fieldset:nth-of-type(4n),
  .vtp-grid-view #suggested-cars > fieldset:nth-of-type(4n),
  .vtp-filter-panel-features .vtp-feature-list > label:nth-of-type(4n),
  .vtp-features .vtp-feature-teasers > label:nth-of-type(4n),
  .vtp-grid-view .vtp-results-view > label:nth-of-type(4n),
  .vtp-grid-view #suggested-cars > label:nth-of-type(4n),
  .vtp-filter-panel-features .vtp-feature-list > div:nth-of-type(4n),
  .vtp-features .vtp-feature-teasers > div:nth-of-type(4n),
  .vtp-grid-view .vtp-results-view > div:nth-of-type(4n),
  .vtp-grid-view #suggested-cars > div:nth-of-type(4n),
  .vtp-filter-panel-features .vtp-feature-list > li:nth-of-type(4n),
  .vtp-features .vtp-feature-teasers > li:nth-of-type(4n),
  .vtp-grid-view .vtp-results-view > li:nth-of-type(4n),
  .vtp-grid-view #suggested-cars > li:nth-of-type(4n) {
    margin-right: 2.994%;
    float: left;
  }
  .vtp-filter-panel-features .vtp-feature-list > article:nth-of-type(4n + 1), .vtp-features .vtp-feature-teasers > article:nth-of-type(4n + 1), .vtp-grid-view .vtp-results-view > article:nth-of-type(4n + 1), .vtp-grid-view #suggested-cars > article:nth-of-type(4n + 1),
  .vtp-filter-panel-features .vtp-feature-list > section:nth-of-type(4n + 1),
  .vtp-features .vtp-feature-teasers > section:nth-of-type(4n + 1),
  .vtp-grid-view .vtp-results-view > section:nth-of-type(4n + 1),
  .vtp-grid-view #suggested-cars > section:nth-of-type(4n + 1),
  .vtp-filter-panel-features .vtp-feature-list > fieldset:nth-of-type(4n + 1),
  .vtp-features .vtp-feature-teasers > fieldset:nth-of-type(4n + 1),
  .vtp-grid-view .vtp-results-view > fieldset:nth-of-type(4n + 1),
  .vtp-grid-view #suggested-cars > fieldset:nth-of-type(4n + 1),
  .vtp-filter-panel-features .vtp-feature-list > label:nth-of-type(4n + 1),
  .vtp-features .vtp-feature-teasers > label:nth-of-type(4n + 1),
  .vtp-grid-view .vtp-results-view > label:nth-of-type(4n + 1),
  .vtp-grid-view #suggested-cars > label:nth-of-type(4n + 1),
  .vtp-filter-panel-features .vtp-feature-list > div:nth-of-type(4n + 1),
  .vtp-features .vtp-feature-teasers > div:nth-of-type(4n + 1),
  .vtp-grid-view .vtp-results-view > div:nth-of-type(4n + 1),
  .vtp-grid-view #suggested-cars > div:nth-of-type(4n + 1),
  .vtp-filter-panel-features .vtp-feature-list > li:nth-of-type(4n + 1),
  .vtp-features .vtp-feature-teasers > li:nth-of-type(4n + 1),
  .vtp-grid-view .vtp-results-view > li:nth-of-type(4n + 1),
  .vtp-grid-view #suggested-cars > li:nth-of-type(4n + 1) {
    clear: none;
  }
  .vtp-filter-panel-features .vtp-feature-list > article:nth-of-type(n), .vtp-features .vtp-feature-teasers > article:nth-of-type(n), .vtp-grid-view .vtp-results-view > article:nth-of-type(n), .vtp-grid-view #suggested-cars > article:nth-of-type(n),
  .vtp-filter-panel-features .vtp-feature-list > section:nth-of-type(n),
  .vtp-features .vtp-feature-teasers > section:nth-of-type(n),
  .vtp-grid-view .vtp-results-view > section:nth-of-type(n),
  .vtp-grid-view #suggested-cars > section:nth-of-type(n),
  .vtp-filter-panel-features .vtp-feature-list > fieldset:nth-of-type(n),
  .vtp-features .vtp-feature-teasers > fieldset:nth-of-type(n),
  .vtp-grid-view .vtp-results-view > fieldset:nth-of-type(n),
  .vtp-grid-view #suggested-cars > fieldset:nth-of-type(n),
  .vtp-filter-panel-features .vtp-feature-list > label:nth-of-type(n),
  .vtp-features .vtp-feature-teasers > label:nth-of-type(n),
  .vtp-grid-view .vtp-results-view > label:nth-of-type(n),
  .vtp-grid-view #suggested-cars > label:nth-of-type(n),
  .vtp-filter-panel-features .vtp-feature-list > div:nth-of-type(n),
  .vtp-features .vtp-feature-teasers > div:nth-of-type(n),
  .vtp-grid-view .vtp-results-view > div:nth-of-type(n),
  .vtp-grid-view #suggested-cars > div:nth-of-type(n),
  .vtp-filter-panel-features .vtp-feature-list > li:nth-of-type(n),
  .vtp-features .vtp-feature-teasers > li:nth-of-type(n),
  .vtp-grid-view .vtp-results-view > li:nth-of-type(n),
  .vtp-grid-view #suggested-cars > li:nth-of-type(n) {
    margin-right: 2.994%;
    float: left;
    clear: none;
  }
  .vtp-filter-panel-features .vtp-feature-list > article:nth-of-type(3n), .vtp-features .vtp-feature-teasers > article:nth-of-type(3n), .vtp-grid-view .vtp-results-view > article:nth-of-type(3n), .vtp-grid-view #suggested-cars > article:nth-of-type(3n),
  .vtp-filter-panel-features .vtp-feature-list > section:nth-of-type(3n),
  .vtp-features .vtp-feature-teasers > section:nth-of-type(3n),
  .vtp-grid-view .vtp-results-view > section:nth-of-type(3n),
  .vtp-grid-view #suggested-cars > section:nth-of-type(3n),
  .vtp-filter-panel-features .vtp-feature-list > fieldset:nth-of-type(3n),
  .vtp-features .vtp-feature-teasers > fieldset:nth-of-type(3n),
  .vtp-grid-view .vtp-results-view > fieldset:nth-of-type(3n),
  .vtp-grid-view #suggested-cars > fieldset:nth-of-type(3n),
  .vtp-filter-panel-features .vtp-feature-list > label:nth-of-type(3n),
  .vtp-features .vtp-feature-teasers > label:nth-of-type(3n),
  .vtp-grid-view .vtp-results-view > label:nth-of-type(3n),
  .vtp-grid-view #suggested-cars > label:nth-of-type(3n),
  .vtp-filter-panel-features .vtp-feature-list > div:nth-of-type(3n),
  .vtp-features .vtp-feature-teasers > div:nth-of-type(3n),
  .vtp-grid-view .vtp-results-view > div:nth-of-type(3n),
  .vtp-grid-view #suggested-cars > div:nth-of-type(3n),
  .vtp-filter-panel-features .vtp-feature-list > li:nth-of-type(3n),
  .vtp-features .vtp-feature-teasers > li:nth-of-type(3n),
  .vtp-grid-view .vtp-results-view > li:nth-of-type(3n),
  .vtp-grid-view #suggested-cars > li:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .vtp-filter-panel-features .vtp-feature-list > article:nth-of-type(3n + 1), .vtp-features .vtp-feature-teasers > article:nth-of-type(3n + 1), .vtp-grid-view .vtp-results-view > article:nth-of-type(3n + 1), .vtp-grid-view #suggested-cars > article:nth-of-type(3n + 1),
  .vtp-filter-panel-features .vtp-feature-list > section:nth-of-type(3n + 1),
  .vtp-features .vtp-feature-teasers > section:nth-of-type(3n + 1),
  .vtp-grid-view .vtp-results-view > section:nth-of-type(3n + 1),
  .vtp-grid-view #suggested-cars > section:nth-of-type(3n + 1),
  .vtp-filter-panel-features .vtp-feature-list > fieldset:nth-of-type(3n + 1),
  .vtp-features .vtp-feature-teasers > fieldset:nth-of-type(3n + 1),
  .vtp-grid-view .vtp-results-view > fieldset:nth-of-type(3n + 1),
  .vtp-grid-view #suggested-cars > fieldset:nth-of-type(3n + 1),
  .vtp-filter-panel-features .vtp-feature-list > label:nth-of-type(3n + 1),
  .vtp-features .vtp-feature-teasers > label:nth-of-type(3n + 1),
  .vtp-grid-view .vtp-results-view > label:nth-of-type(3n + 1),
  .vtp-grid-view #suggested-cars > label:nth-of-type(3n + 1),
  .vtp-filter-panel-features .vtp-feature-list > div:nth-of-type(3n + 1),
  .vtp-features .vtp-feature-teasers > div:nth-of-type(3n + 1),
  .vtp-grid-view .vtp-results-view > div:nth-of-type(3n + 1),
  .vtp-grid-view #suggested-cars > div:nth-of-type(3n + 1),
  .vtp-filter-panel-features .vtp-feature-list > li:nth-of-type(3n + 1),
  .vtp-features .vtp-feature-teasers > li:nth-of-type(3n + 1),
  .vtp-grid-view .vtp-results-view > li:nth-of-type(3n + 1),
  .vtp-grid-view #suggested-cars > li:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-filter-panel-features .vtp-feature-list > article, .vtp-features .vtp-feature-teasers > article, .vtp-grid-view .vtp-results-view > article, .vtp-grid-view #suggested-cars > article,
  .vtp-filter-panel-features .vtp-feature-list > section,
  .vtp-features .vtp-feature-teasers > section,
  .vtp-grid-view .vtp-results-view > section,
  .vtp-grid-view #suggested-cars > section,
  .vtp-filter-panel-features .vtp-feature-list > fieldset,
  .vtp-features .vtp-feature-teasers > fieldset,
  .vtp-grid-view .vtp-results-view > fieldset,
  .vtp-grid-view #suggested-cars > fieldset,
  .vtp-filter-panel-features .vtp-feature-list > label,
  .vtp-features .vtp-feature-teasers > label,
  .vtp-grid-view .vtp-results-view > label,
  .vtp-grid-view #suggested-cars > label,
  .vtp-filter-panel-features .vtp-feature-list > div,
  .vtp-features .vtp-feature-teasers > div,
  .vtp-grid-view .vtp-results-view > div,
  .vtp-grid-view #suggested-cars > div,
  .vtp-filter-panel-features .vtp-feature-list > li,
  .vtp-features .vtp-feature-teasers > li,
  .vtp-grid-view .vtp-results-view > li,
  .vtp-grid-view #suggested-cars > li {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-filter-panel-features .vtp-feature-list > article:nth-of-type(3n), .vtp-features .vtp-feature-teasers > article:nth-of-type(3n), .vtp-grid-view .vtp-results-view > article:nth-of-type(3n), .vtp-grid-view #suggested-cars > article:nth-of-type(3n),
  .vtp-filter-panel-features .vtp-feature-list > section:nth-of-type(3n),
  .vtp-features .vtp-feature-teasers > section:nth-of-type(3n),
  .vtp-grid-view .vtp-results-view > section:nth-of-type(3n),
  .vtp-grid-view #suggested-cars > section:nth-of-type(3n),
  .vtp-filter-panel-features .vtp-feature-list > fieldset:nth-of-type(3n),
  .vtp-features .vtp-feature-teasers > fieldset:nth-of-type(3n),
  .vtp-grid-view .vtp-results-view > fieldset:nth-of-type(3n),
  .vtp-grid-view #suggested-cars > fieldset:nth-of-type(3n),
  .vtp-filter-panel-features .vtp-feature-list > label:nth-of-type(3n),
  .vtp-features .vtp-feature-teasers > label:nth-of-type(3n),
  .vtp-grid-view .vtp-results-view > label:nth-of-type(3n),
  .vtp-grid-view #suggested-cars > label:nth-of-type(3n),
  .vtp-filter-panel-features .vtp-feature-list > div:nth-of-type(3n),
  .vtp-features .vtp-feature-teasers > div:nth-of-type(3n),
  .vtp-grid-view .vtp-results-view > div:nth-of-type(3n),
  .vtp-grid-view #suggested-cars > div:nth-of-type(3n),
  .vtp-filter-panel-features .vtp-feature-list > li:nth-of-type(3n),
  .vtp-features .vtp-feature-teasers > li:nth-of-type(3n),
  .vtp-grid-view .vtp-results-view > li:nth-of-type(3n),
  .vtp-grid-view #suggested-cars > li:nth-of-type(3n) {
    margin-right: 2.994%;
    float: left;
  }
  .vtp-filter-panel-features .vtp-feature-list > article:nth-of-type(3n + 1), .vtp-features .vtp-feature-teasers > article:nth-of-type(3n + 1), .vtp-grid-view .vtp-results-view > article:nth-of-type(3n + 1), .vtp-grid-view #suggested-cars > article:nth-of-type(3n + 1),
  .vtp-filter-panel-features .vtp-feature-list > section:nth-of-type(3n + 1),
  .vtp-features .vtp-feature-teasers > section:nth-of-type(3n + 1),
  .vtp-grid-view .vtp-results-view > section:nth-of-type(3n + 1),
  .vtp-grid-view #suggested-cars > section:nth-of-type(3n + 1),
  .vtp-filter-panel-features .vtp-feature-list > fieldset:nth-of-type(3n + 1),
  .vtp-features .vtp-feature-teasers > fieldset:nth-of-type(3n + 1),
  .vtp-grid-view .vtp-results-view > fieldset:nth-of-type(3n + 1),
  .vtp-grid-view #suggested-cars > fieldset:nth-of-type(3n + 1),
  .vtp-filter-panel-features .vtp-feature-list > label:nth-of-type(3n + 1),
  .vtp-features .vtp-feature-teasers > label:nth-of-type(3n + 1),
  .vtp-grid-view .vtp-results-view > label:nth-of-type(3n + 1),
  .vtp-grid-view #suggested-cars > label:nth-of-type(3n + 1),
  .vtp-filter-panel-features .vtp-feature-list > div:nth-of-type(3n + 1),
  .vtp-features .vtp-feature-teasers > div:nth-of-type(3n + 1),
  .vtp-grid-view .vtp-results-view > div:nth-of-type(3n + 1),
  .vtp-grid-view #suggested-cars > div:nth-of-type(3n + 1),
  .vtp-filter-panel-features .vtp-feature-list > li:nth-of-type(3n + 1),
  .vtp-features .vtp-feature-teasers > li:nth-of-type(3n + 1),
  .vtp-grid-view .vtp-results-view > li:nth-of-type(3n + 1),
  .vtp-grid-view #suggested-cars > li:nth-of-type(3n + 1) {
    clear: none;
  }
  .vtp-filter-panel-features .vtp-feature-list > article:nth-of-type(n), .vtp-features .vtp-feature-teasers > article:nth-of-type(n), .vtp-grid-view .vtp-results-view > article:nth-of-type(n), .vtp-grid-view #suggested-cars > article:nth-of-type(n),
  .vtp-filter-panel-features .vtp-feature-list > section:nth-of-type(n),
  .vtp-features .vtp-feature-teasers > section:nth-of-type(n),
  .vtp-grid-view .vtp-results-view > section:nth-of-type(n),
  .vtp-grid-view #suggested-cars > section:nth-of-type(n),
  .vtp-filter-panel-features .vtp-feature-list > fieldset:nth-of-type(n),
  .vtp-features .vtp-feature-teasers > fieldset:nth-of-type(n),
  .vtp-grid-view .vtp-results-view > fieldset:nth-of-type(n),
  .vtp-grid-view #suggested-cars > fieldset:nth-of-type(n),
  .vtp-filter-panel-features .vtp-feature-list > label:nth-of-type(n),
  .vtp-features .vtp-feature-teasers > label:nth-of-type(n),
  .vtp-grid-view .vtp-results-view > label:nth-of-type(n),
  .vtp-grid-view #suggested-cars > label:nth-of-type(n),
  .vtp-filter-panel-features .vtp-feature-list > div:nth-of-type(n),
  .vtp-features .vtp-feature-teasers > div:nth-of-type(n),
  .vtp-grid-view .vtp-results-view > div:nth-of-type(n),
  .vtp-grid-view #suggested-cars > div:nth-of-type(n),
  .vtp-filter-panel-features .vtp-feature-list > li:nth-of-type(n),
  .vtp-features .vtp-feature-teasers > li:nth-of-type(n),
  .vtp-grid-view .vtp-results-view > li:nth-of-type(n),
  .vtp-grid-view #suggested-cars > li:nth-of-type(n) {
    margin-right: 2.994%;
    float: left;
    clear: none;
  }
  .vtp-filter-panel-features .vtp-feature-list > article:nth-of-type(2n), .vtp-features .vtp-feature-teasers > article:nth-of-type(2n), .vtp-grid-view .vtp-results-view > article:nth-of-type(2n), .vtp-grid-view #suggested-cars > article:nth-of-type(2n),
  .vtp-filter-panel-features .vtp-feature-list > section:nth-of-type(2n),
  .vtp-features .vtp-feature-teasers > section:nth-of-type(2n),
  .vtp-grid-view .vtp-results-view > section:nth-of-type(2n),
  .vtp-grid-view #suggested-cars > section:nth-of-type(2n),
  .vtp-filter-panel-features .vtp-feature-list > fieldset:nth-of-type(2n),
  .vtp-features .vtp-feature-teasers > fieldset:nth-of-type(2n),
  .vtp-grid-view .vtp-results-view > fieldset:nth-of-type(2n),
  .vtp-grid-view #suggested-cars > fieldset:nth-of-type(2n),
  .vtp-filter-panel-features .vtp-feature-list > label:nth-of-type(2n),
  .vtp-features .vtp-feature-teasers > label:nth-of-type(2n),
  .vtp-grid-view .vtp-results-view > label:nth-of-type(2n),
  .vtp-grid-view #suggested-cars > label:nth-of-type(2n),
  .vtp-filter-panel-features .vtp-feature-list > div:nth-of-type(2n),
  .vtp-features .vtp-feature-teasers > div:nth-of-type(2n),
  .vtp-grid-view .vtp-results-view > div:nth-of-type(2n),
  .vtp-grid-view #suggested-cars > div:nth-of-type(2n),
  .vtp-filter-panel-features .vtp-feature-list > li:nth-of-type(2n),
  .vtp-features .vtp-feature-teasers > li:nth-of-type(2n),
  .vtp-grid-view .vtp-results-view > li:nth-of-type(2n),
  .vtp-grid-view #suggested-cars > li:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .vtp-filter-panel-features .vtp-feature-list > article:nth-of-type(2n + 1), .vtp-features .vtp-feature-teasers > article:nth-of-type(2n + 1), .vtp-grid-view .vtp-results-view > article:nth-of-type(2n + 1), .vtp-grid-view #suggested-cars > article:nth-of-type(2n + 1),
  .vtp-filter-panel-features .vtp-feature-list > section:nth-of-type(2n + 1),
  .vtp-features .vtp-feature-teasers > section:nth-of-type(2n + 1),
  .vtp-grid-view .vtp-results-view > section:nth-of-type(2n + 1),
  .vtp-grid-view #suggested-cars > section:nth-of-type(2n + 1),
  .vtp-filter-panel-features .vtp-feature-list > fieldset:nth-of-type(2n + 1),
  .vtp-features .vtp-feature-teasers > fieldset:nth-of-type(2n + 1),
  .vtp-grid-view .vtp-results-view > fieldset:nth-of-type(2n + 1),
  .vtp-grid-view #suggested-cars > fieldset:nth-of-type(2n + 1),
  .vtp-filter-panel-features .vtp-feature-list > label:nth-of-type(2n + 1),
  .vtp-features .vtp-feature-teasers > label:nth-of-type(2n + 1),
  .vtp-grid-view .vtp-results-view > label:nth-of-type(2n + 1),
  .vtp-grid-view #suggested-cars > label:nth-of-type(2n + 1),
  .vtp-filter-panel-features .vtp-feature-list > div:nth-of-type(2n + 1),
  .vtp-features .vtp-feature-teasers > div:nth-of-type(2n + 1),
  .vtp-grid-view .vtp-results-view > div:nth-of-type(2n + 1),
  .vtp-grid-view #suggested-cars > div:nth-of-type(2n + 1),
  .vtp-filter-panel-features .vtp-feature-list > li:nth-of-type(2n + 1),
  .vtp-features .vtp-feature-teasers > li:nth-of-type(2n + 1),
  .vtp-grid-view .vtp-results-view > li:nth-of-type(2n + 1),
  .vtp-grid-view #suggested-cars > li:nth-of-type(2n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-features .vtp-feature-list > article, .vtp-features .vtp-feature-teasers > article, .vtp-grid-view .vtp-results-view > article, .vtp-grid-view #suggested-cars > article,
  .vtp-filter-panel-features .vtp-feature-list > section,
  .vtp-features .vtp-feature-teasers > section,
  .vtp-grid-view .vtp-results-view > section,
  .vtp-grid-view #suggested-cars > section,
  .vtp-filter-panel-features .vtp-feature-list > fieldset,
  .vtp-features .vtp-feature-teasers > fieldset,
  .vtp-grid-view .vtp-results-view > fieldset,
  .vtp-grid-view #suggested-cars > fieldset,
  .vtp-filter-panel-features .vtp-feature-list > label,
  .vtp-features .vtp-feature-teasers > label,
  .vtp-grid-view .vtp-results-view > label,
  .vtp-grid-view #suggested-cars > label,
  .vtp-filter-panel-features .vtp-feature-list > div,
  .vtp-features .vtp-feature-teasers > div,
  .vtp-grid-view .vtp-results-view > div,
  .vtp-grid-view #suggested-cars > div,
  .vtp-filter-panel-features .vtp-feature-list > li,
  .vtp-features .vtp-feature-teasers > li,
  .vtp-grid-view .vtp-results-view > li,
  .vtp-grid-view #suggested-cars > li {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
  .vtp-filter-panel-features .vtp-feature-list > article:first-child, .vtp-features .vtp-feature-teasers > article:first-child, .vtp-grid-view .vtp-results-view > article:first-child, .vtp-grid-view #suggested-cars > article:first-child,
  .vtp-filter-panel-features .vtp-feature-list > section:first-child,
  .vtp-features .vtp-feature-teasers > section:first-child,
  .vtp-grid-view .vtp-results-view > section:first-child,
  .vtp-grid-view #suggested-cars > section:first-child,
  .vtp-filter-panel-features .vtp-feature-list > fieldset:first-child,
  .vtp-features .vtp-feature-teasers > fieldset:first-child,
  .vtp-grid-view .vtp-results-view > fieldset:first-child,
  .vtp-grid-view #suggested-cars > fieldset:first-child,
  .vtp-filter-panel-features .vtp-feature-list > label:first-child,
  .vtp-features .vtp-feature-teasers > label:first-child,
  .vtp-grid-view .vtp-results-view > label:first-child,
  .vtp-grid-view #suggested-cars > label:first-child,
  .vtp-filter-panel-features .vtp-feature-list > div:first-child,
  .vtp-features .vtp-feature-teasers > div:first-child,
  .vtp-grid-view .vtp-results-view > div:first-child,
  .vtp-grid-view #suggested-cars > div:first-child,
  .vtp-filter-panel-features .vtp-feature-list > li:first-child,
  .vtp-features .vtp-feature-teasers > li:first-child,
  .vtp-grid-view .vtp-results-view > li:first-child,
  .vtp-grid-view #suggested-cars > li:first-child {
    margin-left: auto;
  }
  .vtp-filter-panel-features .vtp-feature-list > article:last-child, .vtp-features .vtp-feature-teasers > article:last-child, .vtp-grid-view .vtp-results-view > article:last-child, .vtp-grid-view #suggested-cars > article:last-child,
  .vtp-filter-panel-features .vtp-feature-list > section:last-child,
  .vtp-features .vtp-feature-teasers > section:last-child,
  .vtp-grid-view .vtp-results-view > section:last-child,
  .vtp-grid-view #suggested-cars > section:last-child,
  .vtp-filter-panel-features .vtp-feature-list > fieldset:last-child,
  .vtp-features .vtp-feature-teasers > fieldset:last-child,
  .vtp-grid-view .vtp-results-view > fieldset:last-child,
  .vtp-grid-view #suggested-cars > fieldset:last-child,
  .vtp-filter-panel-features .vtp-feature-list > label:last-child,
  .vtp-features .vtp-feature-teasers > label:last-child,
  .vtp-grid-view .vtp-results-view > label:last-child,
  .vtp-grid-view #suggested-cars > label:last-child,
  .vtp-filter-panel-features .vtp-feature-list > div:last-child,
  .vtp-features .vtp-feature-teasers > div:last-child,
  .vtp-grid-view .vtp-results-view > div:last-child,
  .vtp-grid-view #suggested-cars > div:last-child,
  .vtp-filter-panel-features .vtp-feature-list > li:last-child,
  .vtp-features .vtp-feature-teasers > li:last-child,
  .vtp-grid-view .vtp-results-view > li:last-child,
  .vtp-grid-view #suggested-cars > li:last-child {
    margin-right: auto;
  }
}
.vtp-filter-panel-features .vtp-feature-list + .vtp-feature-teasers, .vtp-features .vtp-feature-teasers + .vtp-feature-teasers, .vtp-grid-view .vtp-results-view + .vtp-feature-teasers, .vtp-grid-view #suggested-cars + .vtp-feature-teasers {
  margin-top: -24px;
  margin-top: -2rem;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-features .vtp-feature-list + .vtp-feature-teasers, .vtp-features .vtp-feature-teasers + .vtp-feature-teasers, .vtp-grid-view .vtp-results-view + .vtp-feature-teasers, .vtp-grid-view #suggested-cars + .vtp-feature-teasers {
    margin-top: 0;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-features .vtp-feature-list, .vtp-features .vtp-feature-teasers, .vtp-grid-view .vtp-results-view, .vtp-grid-view #suggested-cars {
    margin-bottom: 0;
  }
}

.vtp-filter-panels-container .vtp-filter-fields-4-2-1, .vtp-vehicle-conditions .vtp-vehicle-conditions-list {
  *zoom: 1;
}
.vtp-filter-panels-container .vtp-filter-fields-4-2-1:before, .vtp-vehicle-conditions .vtp-vehicle-conditions-list:before, .vtp-filter-panels-container .vtp-filter-fields-4-2-1:after, .vtp-vehicle-conditions .vtp-vehicle-conditions-list:after {
  content: "";
  display: table;
}
.vtp-filter-panels-container .vtp-filter-fields-4-2-1:after, .vtp-vehicle-conditions .vtp-vehicle-conditions-list:after {
  clear: both;
}
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > article, .vtp-vehicle-conditions .vtp-vehicle-conditions-list > article,
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > section,
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > section,
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > fieldset,
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > fieldset,
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > label,
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > label,
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > div,
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > div,
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > li,
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > li {
  display: block;
  float: left;
  clear: none;
  width: 22.7045%;
  margin-left: 0;
  margin-right: 2.994%;
  margin-bottom: 36px;
  margin-bottom: 3rem;
}
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > article:nth-of-type(n), .vtp-vehicle-conditions .vtp-vehicle-conditions-list > article:nth-of-type(n),
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > section:nth-of-type(n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > section:nth-of-type(n),
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > fieldset:nth-of-type(n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > fieldset:nth-of-type(n),
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > label:nth-of-type(n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > label:nth-of-type(n),
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > div:nth-of-type(n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > div:nth-of-type(n),
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > li:nth-of-type(n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > li:nth-of-type(n) {
  margin-right: 2.994%;
  float: left;
  clear: none;
}
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > article:nth-of-type(4n), .vtp-vehicle-conditions .vtp-vehicle-conditions-list > article:nth-of-type(4n),
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > section:nth-of-type(4n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > section:nth-of-type(4n),
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > fieldset:nth-of-type(4n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > fieldset:nth-of-type(4n),
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > label:nth-of-type(4n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > label:nth-of-type(4n),
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > div:nth-of-type(4n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > div:nth-of-type(4n),
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > li:nth-of-type(4n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > li:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > article:nth-of-type(4n + 1), .vtp-vehicle-conditions .vtp-vehicle-conditions-list > article:nth-of-type(4n + 1),
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > section:nth-of-type(4n + 1),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > section:nth-of-type(4n + 1),
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > fieldset:nth-of-type(4n + 1),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > fieldset:nth-of-type(4n + 1),
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > label:nth-of-type(4n + 1),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > label:nth-of-type(4n + 1),
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > div:nth-of-type(4n + 1),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > div:nth-of-type(4n + 1),
.vtp-filter-panels-container .vtp-filter-fields-4-2-1 > li:nth-of-type(4n + 1),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list > li:nth-of-type(4n + 1) {
  clear: both;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > article, .vtp-vehicle-conditions .vtp-vehicle-conditions-list > article,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > section,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > section,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > fieldset,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > fieldset,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > label,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > label,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > div,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > div,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > li,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > li {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > article:nth-of-type(n), .vtp-vehicle-conditions .vtp-vehicle-conditions-list > article:nth-of-type(n),
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > section:nth-of-type(n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > section:nth-of-type(n),
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > fieldset:nth-of-type(n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > fieldset:nth-of-type(n),
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > label:nth-of-type(n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > label:nth-of-type(n),
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > div:nth-of-type(n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > div:nth-of-type(n),
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > li:nth-of-type(n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > li:nth-of-type(n) {
    margin-right: 2.994%;
    float: left;
    clear: none;
  }
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > article:nth-of-type(2n), .vtp-vehicle-conditions .vtp-vehicle-conditions-list > article:nth-of-type(2n),
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > section:nth-of-type(2n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > section:nth-of-type(2n),
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > fieldset:nth-of-type(2n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > fieldset:nth-of-type(2n),
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > label:nth-of-type(2n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > label:nth-of-type(2n),
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > div:nth-of-type(2n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > div:nth-of-type(2n),
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > li:nth-of-type(2n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > li:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > article:nth-of-type(2n + 1), .vtp-vehicle-conditions .vtp-vehicle-conditions-list > article:nth-of-type(2n + 1),
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > section:nth-of-type(2n + 1),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > section:nth-of-type(2n + 1),
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > fieldset:nth-of-type(2n + 1),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > fieldset:nth-of-type(2n + 1),
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > label:nth-of-type(2n + 1),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > label:nth-of-type(2n + 1),
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > div:nth-of-type(2n + 1),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > div:nth-of-type(2n + 1),
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > li:nth-of-type(2n + 1),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > li:nth-of-type(2n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > article, .vtp-vehicle-conditions .vtp-vehicle-conditions-list > article,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > section,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > section,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > fieldset,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > fieldset,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > label,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > label,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > div,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > div,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > li,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > li {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
    margin-bottom: 4rem;
  }
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > article:first-child, .vtp-vehicle-conditions .vtp-vehicle-conditions-list > article:first-child,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > section:first-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > section:first-child,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > fieldset:first-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > fieldset:first-child,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > label:first-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > label:first-child,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > div:first-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > div:first-child,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > li:first-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > li:first-child {
    margin-left: auto;
  }
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > article:last-child, .vtp-vehicle-conditions .vtp-vehicle-conditions-list > article:last-child,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > section:last-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > section:last-child,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > fieldset:last-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > fieldset:last-child,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > label:last-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > label:last-child,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > div:last-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > div:last-child,
  .vtp-filter-panels-container .vtp-filter-fields-4-2-1 > li:last-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list > li:last-child {
    margin-right: auto;
  }
}

.vtp-filter-panels-container .vtp-filter-fields-2-1-1 {
  *zoom: 1;
}
.vtp-filter-panels-container .vtp-filter-fields-2-1-1:before, .vtp-filter-panels-container .vtp-filter-fields-2-1-1:after {
  content: "";
  display: table;
}
.vtp-filter-panels-container .vtp-filter-fields-2-1-1:after {
  clear: both;
}
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > article,
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > section,
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > fieldset,
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > label,
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > div,
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > li {
  display: block;
  float: left;
  clear: none;
  width: 48.403%;
  margin-left: 0;
  margin-right: 2.994%;
  margin-bottom: 24px;
  margin-bottom: 2rem;
}
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > article:nth-of-type(n),
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > section:nth-of-type(n),
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > fieldset:nth-of-type(n),
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > label:nth-of-type(n),
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > div:nth-of-type(n),
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > li:nth-of-type(n) {
  margin-right: 2.994%;
  float: left;
  clear: none;
}
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > article:nth-of-type(2n),
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > section:nth-of-type(2n),
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > fieldset:nth-of-type(2n),
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > label:nth-of-type(2n),
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > div:nth-of-type(2n),
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > li:nth-of-type(2n) {
  margin-right: 0;
  float: right;
}
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > article:nth-of-type(2n + 1),
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > section:nth-of-type(2n + 1),
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > fieldset:nth-of-type(2n + 1),
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > label:nth-of-type(2n + 1),
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > div:nth-of-type(2n + 1),
.vtp-filter-panels-container .vtp-filter-fields-2-1-1 > li:nth-of-type(2n + 1) {
  clear: both;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-panels-container .vtp-filter-fields-2-1-1 > article,
  .vtp-filter-panels-container .vtp-filter-fields-2-1-1 > section,
  .vtp-filter-panels-container .vtp-filter-fields-2-1-1 > fieldset,
  .vtp-filter-panels-container .vtp-filter-fields-2-1-1 > label,
  .vtp-filter-panels-container .vtp-filter-fields-2-1-1 > div,
  .vtp-filter-panels-container .vtp-filter-fields-2-1-1 > li {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
  .vtp-filter-panels-container .vtp-filter-fields-2-1-1 > article:first-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-1-1 > section:first-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-1-1 > fieldset:first-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-1-1 > label:first-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-1-1 > div:first-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-1-1 > li:first-child {
    margin-left: auto;
  }
  .vtp-filter-panels-container .vtp-filter-fields-2-1-1 > article:last-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-1-1 > section:last-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-1-1 > fieldset:last-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-1-1 > label:last-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-1-1 > div:last-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-1-1 > li:last-child {
    margin-right: auto;
  }
}

.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1, .vtp-filter-panels-container .vtp-filter-fields-2-2-1 {
  *zoom: 1;
}
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1:before, .vtp-filter-panels-container .vtp-filter-fields-2-2-1:before, .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1:after, .vtp-filter-panels-container .vtp-filter-fields-2-2-1:after {
  content: "";
  display: table;
}
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1:after, .vtp-filter-panels-container .vtp-filter-fields-2-2-1:after {
  clear: both;
}
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > article, .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > article,
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > section,
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > section,
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > fieldset,
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > fieldset,
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > label,
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > label,
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > div,
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > div,
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > li,
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > li {
  display: block;
  float: left;
  clear: none;
  width: 48.403%;
  margin-left: 0;
  margin-right: 2.994%;
  margin-bottom: 24px;
  margin-bottom: 2rem;
}
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > article:nth-of-type(n), .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > article:nth-of-type(n),
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > section:nth-of-type(n),
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > section:nth-of-type(n),
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > fieldset:nth-of-type(n),
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > fieldset:nth-of-type(n),
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > label:nth-of-type(n),
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > label:nth-of-type(n),
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > div:nth-of-type(n),
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > div:nth-of-type(n),
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > li:nth-of-type(n),
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > li:nth-of-type(n) {
  margin-right: 2.994%;
  float: left;
  clear: none;
}
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > article:nth-of-type(2n), .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > article:nth-of-type(2n),
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > section:nth-of-type(2n),
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > section:nth-of-type(2n),
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > fieldset:nth-of-type(2n),
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > fieldset:nth-of-type(2n),
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > label:nth-of-type(2n),
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > label:nth-of-type(2n),
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > div:nth-of-type(2n),
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > div:nth-of-type(2n),
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > li:nth-of-type(2n),
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > li:nth-of-type(2n) {
  margin-right: 0;
  float: right;
}
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > article:nth-of-type(2n + 1), .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > article:nth-of-type(2n + 1),
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > section:nth-of-type(2n + 1),
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > section:nth-of-type(2n + 1),
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > fieldset:nth-of-type(2n + 1),
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > fieldset:nth-of-type(2n + 1),
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > label:nth-of-type(2n + 1),
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > label:nth-of-type(2n + 1),
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > div:nth-of-type(2n + 1),
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > div:nth-of-type(2n + 1),
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > li:nth-of-type(2n + 1),
.vtp-filter-panels-container .vtp-filter-fields-2-2-1 > li:nth-of-type(2n + 1) {
  clear: both;
}
@media only screen and (max-width: 568px) {
  .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > article, .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > article,
  .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > section,
  .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > section,
  .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > fieldset,
  .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > fieldset,
  .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > label,
  .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > label,
  .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > div,
  .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > div,
  .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > li,
  .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > li {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
  .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > article:first-child, .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > article:first-child,
  .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > section:first-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > section:first-child,
  .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > fieldset:first-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > fieldset:first-child,
  .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > label:first-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > label:first-child,
  .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > div:first-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > div:first-child,
  .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > li:first-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > li:first-child {
    margin-left: auto;
  }
  .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > article:last-child, .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > article:last-child,
  .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > section:last-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > section:last-child,
  .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > fieldset:last-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > fieldset:last-child,
  .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > label:last-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > label:last-child,
  .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > div:last-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > div:last-child,
  .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > li:last-child,
  .vtp-filter-panels-container .vtp-filter-fields-2-2-1 > li:last-child {
    margin-right: auto;
  }
}

.list-2-2-2-1 > article,
.list-2-2-2-1 > section,
.list-2-2-2-1 > fieldset,
.list-2-2-2-1 > label,
.list-2-2-2-1 > div,
.list-2-2-2-1 > li {
  float: left;
  clear: none;
  width: 48.403%;
  margin-left: 0;
  margin-right: 2.994%;
  margin-bottom: 24px;
  margin-bottom: 2rem;
}
.list-2-2-2-1 > article:nth-of-type(n),
.list-2-2-2-1 > section:nth-of-type(n),
.list-2-2-2-1 > fieldset:nth-of-type(n),
.list-2-2-2-1 > label:nth-of-type(n),
.list-2-2-2-1 > div:nth-of-type(n),
.list-2-2-2-1 > li:nth-of-type(n) {
  margin-right: 2.994%;
  float: left;
  clear: none;
}
.list-2-2-2-1 > article:nth-of-type(2n),
.list-2-2-2-1 > section:nth-of-type(2n),
.list-2-2-2-1 > fieldset:nth-of-type(2n),
.list-2-2-2-1 > label:nth-of-type(2n),
.list-2-2-2-1 > div:nth-of-type(2n),
.list-2-2-2-1 > li:nth-of-type(2n) {
  margin-right: 0;
  float: right;
}
.list-2-2-2-1 > article:nth-of-type(2n + 1),
.list-2-2-2-1 > section:nth-of-type(2n + 1),
.list-2-2-2-1 > fieldset:nth-of-type(2n + 1),
.list-2-2-2-1 > label:nth-of-type(2n + 1),
.list-2-2-2-1 > div:nth-of-type(2n + 1),
.list-2-2-2-1 > li:nth-of-type(2n + 1) {
  clear: both;
}
@media only screen and (max-width: 568px) {
  .list-2-2-2-1 > article,
  .list-2-2-2-1 > section,
  .list-2-2-2-1 > fieldset,
  .list-2-2-2-1 > label,
  .list-2-2-2-1 > div,
  .list-2-2-2-1 > li {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .list-2-2-2-1 > article:first-child,
  .list-2-2-2-1 > section:first-child,
  .list-2-2-2-1 > fieldset:first-child,
  .list-2-2-2-1 > label:first-child,
  .list-2-2-2-1 > div:first-child,
  .list-2-2-2-1 > li:first-child {
    margin-left: auto;
  }
  .list-2-2-2-1 > article:last-child,
  .list-2-2-2-1 > section:last-child,
  .list-2-2-2-1 > fieldset:last-child,
  .list-2-2-2-1 > label:last-child,
  .list-2-2-2-1 > div:last-child,
  .list-2-2-2-1 > li:last-child {
    margin-right: auto;
  }
}

.list-3-2-1 > article,
.list-3-2-1 > section,
.list-3-2-1 > fieldset,
.list-3-2-1 > label,
.list-3-2-1 > div,
.list-3-2-1 > li {
  float: left;
  clear: none;
  width: 31.2706666667%;
  margin-left: 0;
  margin-right: 2.994%;
  margin-bottom: 24px;
  margin-bottom: 2rem;
}
.list-3-2-1 > article:nth-of-type(n),
.list-3-2-1 > section:nth-of-type(n),
.list-3-2-1 > fieldset:nth-of-type(n),
.list-3-2-1 > label:nth-of-type(n),
.list-3-2-1 > div:nth-of-type(n),
.list-3-2-1 > li:nth-of-type(n) {
  margin-right: 2.994%;
  float: left;
  clear: none;
}
.list-3-2-1 > article:nth-of-type(3n),
.list-3-2-1 > section:nth-of-type(3n),
.list-3-2-1 > fieldset:nth-of-type(3n),
.list-3-2-1 > label:nth-of-type(3n),
.list-3-2-1 > div:nth-of-type(3n),
.list-3-2-1 > li:nth-of-type(3n) {
  margin-right: 0;
  float: right;
}
.list-3-2-1 > article:nth-of-type(3n + 1),
.list-3-2-1 > section:nth-of-type(3n + 1),
.list-3-2-1 > fieldset:nth-of-type(3n + 1),
.list-3-2-1 > label:nth-of-type(3n + 1),
.list-3-2-1 > div:nth-of-type(3n + 1),
.list-3-2-1 > li:nth-of-type(3n + 1) {
  clear: both;
}
@media only screen and (max-width: 940px) {
  .list-3-2-1 > article,
  .list-3-2-1 > section,
  .list-3-2-1 > fieldset,
  .list-3-2-1 > label,
  .list-3-2-1 > div,
  .list-3-2-1 > li {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .list-3-2-1 > article:nth-of-type(3n),
  .list-3-2-1 > section:nth-of-type(3n),
  .list-3-2-1 > fieldset:nth-of-type(3n),
  .list-3-2-1 > label:nth-of-type(3n),
  .list-3-2-1 > div:nth-of-type(3n),
  .list-3-2-1 > li:nth-of-type(3n) {
    margin-right: 2.994%;
    float: left;
  }
  .list-3-2-1 > article:nth-of-type(3n + 1),
  .list-3-2-1 > section:nth-of-type(3n + 1),
  .list-3-2-1 > fieldset:nth-of-type(3n + 1),
  .list-3-2-1 > label:nth-of-type(3n + 1),
  .list-3-2-1 > div:nth-of-type(3n + 1),
  .list-3-2-1 > li:nth-of-type(3n + 1) {
    clear: none;
  }
  .list-3-2-1 > article:nth-of-type(n),
  .list-3-2-1 > section:nth-of-type(n),
  .list-3-2-1 > fieldset:nth-of-type(n),
  .list-3-2-1 > label:nth-of-type(n),
  .list-3-2-1 > div:nth-of-type(n),
  .list-3-2-1 > li:nth-of-type(n) {
    margin-right: 2.994%;
    float: left;
    clear: none;
  }
  .list-3-2-1 > article:nth-of-type(2n),
  .list-3-2-1 > section:nth-of-type(2n),
  .list-3-2-1 > fieldset:nth-of-type(2n),
  .list-3-2-1 > label:nth-of-type(2n),
  .list-3-2-1 > div:nth-of-type(2n),
  .list-3-2-1 > li:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .list-3-2-1 > article:nth-of-type(2n + 1),
  .list-3-2-1 > section:nth-of-type(2n + 1),
  .list-3-2-1 > fieldset:nth-of-type(2n + 1),
  .list-3-2-1 > label:nth-of-type(2n + 1),
  .list-3-2-1 > div:nth-of-type(2n + 1),
  .list-3-2-1 > li:nth-of-type(2n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 568px) {
  .list-3-2-1 > article,
  .list-3-2-1 > section,
  .list-3-2-1 > fieldset,
  .list-3-2-1 > label,
  .list-3-2-1 > div,
  .list-3-2-1 > li {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .list-3-2-1 > article:first-child,
  .list-3-2-1 > section:first-child,
  .list-3-2-1 > fieldset:first-child,
  .list-3-2-1 > label:first-child,
  .list-3-2-1 > div:first-child,
  .list-3-2-1 > li:first-child {
    margin-left: auto;
  }
  .list-3-2-1 > article:last-child,
  .list-3-2-1 > section:last-child,
  .list-3-2-1 > fieldset:last-child,
  .list-3-2-1 > label:last-child,
  .list-3-2-1 > div:last-child,
  .list-3-2-1 > li:last-child {
    margin-right: auto;
  }
}

.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul, .vtp-similar-searches .vtp-similar-searches-list ul, .vtp-cmp-fields.vtp-filter-fields-3-2-1 {
  *zoom: 1;
}
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul:before, .vtp-similar-searches .vtp-similar-searches-list ul:before, .vtp-cmp-fields.vtp-filter-fields-3-2-1:before, .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul:after, .vtp-similar-searches .vtp-similar-searches-list ul:after, .vtp-cmp-fields.vtp-filter-fields-3-2-1:after {
  content: "";
  display: table;
}
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul:after, .vtp-similar-searches .vtp-similar-searches-list ul:after, .vtp-cmp-fields.vtp-filter-fields-3-2-1:after {
  clear: both;
}
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > article, .vtp-similar-searches .vtp-similar-searches-list ul > article, .vtp-cmp-fields.vtp-filter-fields-3-2-1 > article,
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > section,
.vtp-similar-searches .vtp-similar-searches-list ul > section,
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > section,
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > fieldset,
.vtp-similar-searches .vtp-similar-searches-list ul > fieldset,
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > fieldset,
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > label,
.vtp-similar-searches .vtp-similar-searches-list ul > label,
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > label,
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > div,
.vtp-similar-searches .vtp-similar-searches-list ul > div,
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > div,
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > li,
.vtp-similar-searches .vtp-similar-searches-list ul > li,
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > li {
  display: block;
  float: left;
  clear: none;
  width: 31.2706666667%;
  margin-left: 0;
  margin-right: 2.994%;
  margin-bottom: 24px;
  margin-bottom: 2rem;
}
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > article:nth-of-type(n), .vtp-similar-searches .vtp-similar-searches-list ul > article:nth-of-type(n), .vtp-cmp-fields.vtp-filter-fields-3-2-1 > article:nth-of-type(n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > section:nth-of-type(n),
.vtp-similar-searches .vtp-similar-searches-list ul > section:nth-of-type(n),
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > section:nth-of-type(n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > fieldset:nth-of-type(n),
.vtp-similar-searches .vtp-similar-searches-list ul > fieldset:nth-of-type(n),
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > fieldset:nth-of-type(n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > label:nth-of-type(n),
.vtp-similar-searches .vtp-similar-searches-list ul > label:nth-of-type(n),
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > label:nth-of-type(n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > div:nth-of-type(n),
.vtp-similar-searches .vtp-similar-searches-list ul > div:nth-of-type(n),
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > div:nth-of-type(n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > li:nth-of-type(n),
.vtp-similar-searches .vtp-similar-searches-list ul > li:nth-of-type(n),
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > li:nth-of-type(n) {
  margin-right: 2.994%;
  float: left;
  clear: none;
}
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > article:nth-of-type(3n), .vtp-similar-searches .vtp-similar-searches-list ul > article:nth-of-type(3n), .vtp-cmp-fields.vtp-filter-fields-3-2-1 > article:nth-of-type(3n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > section:nth-of-type(3n),
.vtp-similar-searches .vtp-similar-searches-list ul > section:nth-of-type(3n),
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > section:nth-of-type(3n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > fieldset:nth-of-type(3n),
.vtp-similar-searches .vtp-similar-searches-list ul > fieldset:nth-of-type(3n),
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > fieldset:nth-of-type(3n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > label:nth-of-type(3n),
.vtp-similar-searches .vtp-similar-searches-list ul > label:nth-of-type(3n),
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > label:nth-of-type(3n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > div:nth-of-type(3n),
.vtp-similar-searches .vtp-similar-searches-list ul > div:nth-of-type(3n),
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > div:nth-of-type(3n),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > li:nth-of-type(3n),
.vtp-similar-searches .vtp-similar-searches-list ul > li:nth-of-type(3n),
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > li:nth-of-type(3n) {
  margin-right: 0;
  float: right;
}
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > article:nth-of-type(3n + 1), .vtp-similar-searches .vtp-similar-searches-list ul > article:nth-of-type(3n + 1), .vtp-cmp-fields.vtp-filter-fields-3-2-1 > article:nth-of-type(3n + 1),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > section:nth-of-type(3n + 1),
.vtp-similar-searches .vtp-similar-searches-list ul > section:nth-of-type(3n + 1),
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > section:nth-of-type(3n + 1),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > fieldset:nth-of-type(3n + 1),
.vtp-similar-searches .vtp-similar-searches-list ul > fieldset:nth-of-type(3n + 1),
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > fieldset:nth-of-type(3n + 1),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > label:nth-of-type(3n + 1),
.vtp-similar-searches .vtp-similar-searches-list ul > label:nth-of-type(3n + 1),
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > label:nth-of-type(3n + 1),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > div:nth-of-type(3n + 1),
.vtp-similar-searches .vtp-similar-searches-list ul > div:nth-of-type(3n + 1),
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > div:nth-of-type(3n + 1),
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > li:nth-of-type(3n + 1),
.vtp-similar-searches .vtp-similar-searches-list ul > li:nth-of-type(3n + 1),
.vtp-cmp-fields.vtp-filter-fields-3-2-1 > li:nth-of-type(3n + 1) {
  clear: both;
}
@media only screen and (max-width: 940px) {
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > article, .vtp-similar-searches .vtp-similar-searches-list ul > article, .vtp-cmp-fields.vtp-filter-fields-3-2-1 > article,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > section,
  .vtp-similar-searches .vtp-similar-searches-list ul > section,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > section,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > fieldset,
  .vtp-similar-searches .vtp-similar-searches-list ul > fieldset,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > fieldset,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > label,
  .vtp-similar-searches .vtp-similar-searches-list ul > label,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > label,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > div,
  .vtp-similar-searches .vtp-similar-searches-list ul > div,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > div,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > li,
  .vtp-similar-searches .vtp-similar-searches-list ul > li,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > li {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > article:nth-of-type(3n), .vtp-similar-searches .vtp-similar-searches-list ul > article:nth-of-type(3n), .vtp-cmp-fields.vtp-filter-fields-3-2-1 > article:nth-of-type(3n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > section:nth-of-type(3n),
  .vtp-similar-searches .vtp-similar-searches-list ul > section:nth-of-type(3n),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > section:nth-of-type(3n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > fieldset:nth-of-type(3n),
  .vtp-similar-searches .vtp-similar-searches-list ul > fieldset:nth-of-type(3n),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > fieldset:nth-of-type(3n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > label:nth-of-type(3n),
  .vtp-similar-searches .vtp-similar-searches-list ul > label:nth-of-type(3n),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > label:nth-of-type(3n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > div:nth-of-type(3n),
  .vtp-similar-searches .vtp-similar-searches-list ul > div:nth-of-type(3n),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > div:nth-of-type(3n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > li:nth-of-type(3n),
  .vtp-similar-searches .vtp-similar-searches-list ul > li:nth-of-type(3n),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > li:nth-of-type(3n) {
    margin-right: 2.994%;
    float: left;
  }
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > article:nth-of-type(3n + 1), .vtp-similar-searches .vtp-similar-searches-list ul > article:nth-of-type(3n + 1), .vtp-cmp-fields.vtp-filter-fields-3-2-1 > article:nth-of-type(3n + 1),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > section:nth-of-type(3n + 1),
  .vtp-similar-searches .vtp-similar-searches-list ul > section:nth-of-type(3n + 1),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > section:nth-of-type(3n + 1),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > fieldset:nth-of-type(3n + 1),
  .vtp-similar-searches .vtp-similar-searches-list ul > fieldset:nth-of-type(3n + 1),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > fieldset:nth-of-type(3n + 1),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > label:nth-of-type(3n + 1),
  .vtp-similar-searches .vtp-similar-searches-list ul > label:nth-of-type(3n + 1),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > label:nth-of-type(3n + 1),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > div:nth-of-type(3n + 1),
  .vtp-similar-searches .vtp-similar-searches-list ul > div:nth-of-type(3n + 1),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > div:nth-of-type(3n + 1),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > li:nth-of-type(3n + 1),
  .vtp-similar-searches .vtp-similar-searches-list ul > li:nth-of-type(3n + 1),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > li:nth-of-type(3n + 1) {
    clear: none;
  }
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > article:nth-of-type(n), .vtp-similar-searches .vtp-similar-searches-list ul > article:nth-of-type(n), .vtp-cmp-fields.vtp-filter-fields-3-2-1 > article:nth-of-type(n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > section:nth-of-type(n),
  .vtp-similar-searches .vtp-similar-searches-list ul > section:nth-of-type(n),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > section:nth-of-type(n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > fieldset:nth-of-type(n),
  .vtp-similar-searches .vtp-similar-searches-list ul > fieldset:nth-of-type(n),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > fieldset:nth-of-type(n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > label:nth-of-type(n),
  .vtp-similar-searches .vtp-similar-searches-list ul > label:nth-of-type(n),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > label:nth-of-type(n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > div:nth-of-type(n),
  .vtp-similar-searches .vtp-similar-searches-list ul > div:nth-of-type(n),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > div:nth-of-type(n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > li:nth-of-type(n),
  .vtp-similar-searches .vtp-similar-searches-list ul > li:nth-of-type(n),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > li:nth-of-type(n) {
    margin-right: 2.994%;
    float: left;
    clear: none;
  }
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > article:nth-of-type(2n), .vtp-similar-searches .vtp-similar-searches-list ul > article:nth-of-type(2n), .vtp-cmp-fields.vtp-filter-fields-3-2-1 > article:nth-of-type(2n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > section:nth-of-type(2n),
  .vtp-similar-searches .vtp-similar-searches-list ul > section:nth-of-type(2n),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > section:nth-of-type(2n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > fieldset:nth-of-type(2n),
  .vtp-similar-searches .vtp-similar-searches-list ul > fieldset:nth-of-type(2n),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > fieldset:nth-of-type(2n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > label:nth-of-type(2n),
  .vtp-similar-searches .vtp-similar-searches-list ul > label:nth-of-type(2n),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > label:nth-of-type(2n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > div:nth-of-type(2n),
  .vtp-similar-searches .vtp-similar-searches-list ul > div:nth-of-type(2n),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > div:nth-of-type(2n),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > li:nth-of-type(2n),
  .vtp-similar-searches .vtp-similar-searches-list ul > li:nth-of-type(2n),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > li:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > article:nth-of-type(2n + 1), .vtp-similar-searches .vtp-similar-searches-list ul > article:nth-of-type(2n + 1), .vtp-cmp-fields.vtp-filter-fields-3-2-1 > article:nth-of-type(2n + 1),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > section:nth-of-type(2n + 1),
  .vtp-similar-searches .vtp-similar-searches-list ul > section:nth-of-type(2n + 1),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > section:nth-of-type(2n + 1),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > fieldset:nth-of-type(2n + 1),
  .vtp-similar-searches .vtp-similar-searches-list ul > fieldset:nth-of-type(2n + 1),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > fieldset:nth-of-type(2n + 1),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > label:nth-of-type(2n + 1),
  .vtp-similar-searches .vtp-similar-searches-list ul > label:nth-of-type(2n + 1),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > label:nth-of-type(2n + 1),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > div:nth-of-type(2n + 1),
  .vtp-similar-searches .vtp-similar-searches-list ul > div:nth-of-type(2n + 1),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > div:nth-of-type(2n + 1),
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > li:nth-of-type(2n + 1),
  .vtp-similar-searches .vtp-similar-searches-list ul > li:nth-of-type(2n + 1),
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > li:nth-of-type(2n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > article, .vtp-similar-searches .vtp-similar-searches-list ul > article, .vtp-cmp-fields.vtp-filter-fields-3-2-1 > article,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > section,
  .vtp-similar-searches .vtp-similar-searches-list ul > section,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > section,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > fieldset,
  .vtp-similar-searches .vtp-similar-searches-list ul > fieldset,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > fieldset,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > label,
  .vtp-similar-searches .vtp-similar-searches-list ul > label,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > label,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > div,
  .vtp-similar-searches .vtp-similar-searches-list ul > div,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > div,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > li,
  .vtp-similar-searches .vtp-similar-searches-list ul > li,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > li {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
    margin-bottom: 4rem;
  }
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > article:first-child, .vtp-similar-searches .vtp-similar-searches-list ul > article:first-child, .vtp-cmp-fields.vtp-filter-fields-3-2-1 > article:first-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > section:first-child,
  .vtp-similar-searches .vtp-similar-searches-list ul > section:first-child,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > section:first-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > fieldset:first-child,
  .vtp-similar-searches .vtp-similar-searches-list ul > fieldset:first-child,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > fieldset:first-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > label:first-child,
  .vtp-similar-searches .vtp-similar-searches-list ul > label:first-child,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > label:first-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > div:first-child,
  .vtp-similar-searches .vtp-similar-searches-list ul > div:first-child,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > div:first-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > li:first-child,
  .vtp-similar-searches .vtp-similar-searches-list ul > li:first-child,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > li:first-child {
    margin-left: auto;
  }
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > article:last-child, .vtp-similar-searches .vtp-similar-searches-list ul > article:last-child, .vtp-cmp-fields.vtp-filter-fields-3-2-1 > article:last-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > section:last-child,
  .vtp-similar-searches .vtp-similar-searches-list ul > section:last-child,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > section:last-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > fieldset:last-child,
  .vtp-similar-searches .vtp-similar-searches-list ul > fieldset:last-child,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > fieldset:last-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > label:last-child,
  .vtp-similar-searches .vtp-similar-searches-list ul > label:last-child,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > label:last-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > div:last-child,
  .vtp-similar-searches .vtp-similar-searches-list ul > div:last-child,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > div:last-child,
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul > li:last-child,
  .vtp-similar-searches .vtp-similar-searches-list ul > li:last-child,
  .vtp-cmp-fields.vtp-filter-fields-3-2-1 > li:last-child {
    margin-right: auto;
  }
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  padding: 0;
  margin-bottom: 19px;
  font-size: 18px;
  line-height: inherit;
  color: #000;
  border: 0;
  width: 100%;
}

label,
.label {
  -webkit-user-select: false;
  -moz-user-select: false;
  -ms-user-select: false;
  user-select: false;
  -webkit-touch-callout: none;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 10px;
  font-weight: 700;
  cursor: pointer;
}
label i,
.label i {
  position: relative;
  top: 5px;
  margin-left: 5px;
}

/*for ie8 polyfill*/
.placeholder {
  color: #aaa !important;
}

input[type=search] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=radio],
input[type=checkbox] {
  -webkit-user-select: false;
  -moz-user-select: false;
  -ms-user-select: false;
  user-select: false;
  -webkit-touch-callout: none;
  margin: 4px 0 0;
  margin-top: 1px \9 ;
  line-height: normal;
}
input[type=radio] ~ label, input[type=radio] ~ .label,
input[type=checkbox] ~ label,
input[type=checkbox] ~ .label {
  cursor: pointer;
}

input[type=range] {
  display: block;
  width: 100%;
}

select[multiple],
select[size] {
  height: auto;
}

input[type=file]:focus,
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 25px;
  font-size: 12px;
  line-height: 1.6;
  color: #000;
}

textarea,
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
.form-control {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0.6em 1.9em 0.5em 0.8em;
  font-family: Verdana, sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: #000;
  background-color: #fff;
  background-image: none;
  border: 1px solid #cecece;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  min-width: 250px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
textarea:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus,
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
textarea::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=datetime]::-webkit-input-placeholder,
input[type=datetime-local]::-webkit-input-placeholder,
input[type=date]::-webkit-input-placeholder,
input[type=month]::-webkit-input-placeholder,
input[type=time]::-webkit-input-placeholder,
input[type=week]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=color]::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.8);
}
textarea:-moz-placeholder,
input[type=text]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=datetime]:-moz-placeholder,
input[type=datetime-local]:-moz-placeholder,
input[type=date]:-moz-placeholder,
input[type=month]:-moz-placeholder,
input[type=time]:-moz-placeholder,
input[type=week]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=url]:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=color]:-moz-placeholder,
.form-control:-moz-placeholder {
  color: black;
}
textarea::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=datetime]::-moz-placeholder,
input[type=datetime-local]::-moz-placeholder,
input[type=date]::-moz-placeholder,
input[type=month]::-moz-placeholder,
input[type=time]::-moz-placeholder,
input[type=week]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=url]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=color]::-moz-placeholder,
.form-control::-moz-placeholder {
  color: black;
}
textarea:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=datetime]:-ms-input-placeholder,
input[type=datetime-local]:-ms-input-placeholder,
input[type=date]:-ms-input-placeholder,
input[type=month]:-ms-input-placeholder,
input[type=time]:-ms-input-placeholder,
input[type=week]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=color]:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.8);
}
textarea[disabled], textarea[readonly], fieldset[disabled] textarea,
input[type=text][disabled],
input[type=text][readonly],
fieldset[disabled] input[type=text],
input[type=password][disabled],
input[type=password][readonly],
fieldset[disabled] input[type=password],
input[type=datetime][disabled],
input[type=datetime][readonly],
fieldset[disabled] input[type=datetime],
input[type=datetime-local][disabled],
input[type=datetime-local][readonly],
fieldset[disabled] input[type=datetime-local],
input[type=date][disabled],
input[type=date][readonly],
fieldset[disabled] input[type=date],
input[type=month][disabled],
input[type=month][readonly],
fieldset[disabled] input[type=month],
input[type=time][disabled],
input[type=time][readonly],
fieldset[disabled] input[type=time],
input[type=week][disabled],
input[type=week][readonly],
fieldset[disabled] input[type=week],
input[type=email][disabled],
input[type=email][readonly],
fieldset[disabled] input[type=email],
input[type=url][disabled],
input[type=url][readonly],
fieldset[disabled] input[type=url],
input[type=search][disabled],
input[type=search][readonly],
fieldset[disabled] input[type=search],
input[type=tel][disabled],
input[type=tel][readonly],
fieldset[disabled] input[type=tel],
input[type=color][disabled],
input[type=color][readonly],
fieldset[disabled] input[type=color],
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #c6c9cb;
  opacity: 1;
}
textarea::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=datetime]::-webkit-input-placeholder,
input[type=datetime-local]::-webkit-input-placeholder,
input[type=date]::-webkit-input-placeholder,
input[type=month]::-webkit-input-placeholder,
input[type=time]::-webkit-input-placeholder,
input[type=week]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=color]::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: #a3a3a3;
}
textarea:-moz-placeholder,
input[type=text]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=datetime]:-moz-placeholder,
input[type=datetime-local]:-moz-placeholder,
input[type=date]:-moz-placeholder,
input[type=month]:-moz-placeholder,
input[type=time]:-moz-placeholder,
input[type=week]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=url]:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=color]:-moz-placeholder,
.form-control:-moz-placeholder {
  color: #a3a3a3;
  opacity: 1;
}
textarea::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=datetime]::-moz-placeholder,
input[type=datetime-local]::-moz-placeholder,
input[type=date]::-moz-placeholder,
input[type=month]::-moz-placeholder,
input[type=time]::-moz-placeholder,
input[type=week]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=url]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=color]::-moz-placeholder,
.form-control::-moz-placeholder {
  color: #a3a3a3;
  opacity: 1;
}
textarea:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=datetime]:-ms-input-placeholder,
input[type=datetime-local]:-ms-input-placeholder,
input[type=date]:-ms-input-placeholder,
input[type=month]:-ms-input-placeholder,
input[type=time]:-ms-input-placeholder,
input[type=week]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=color]:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
  color: #a3a3a3;
}

input[placeholder] {
  text-overflow: ellipsis;
}

::-moz-placeholder {
  text-overflow: ellipsis;
} /* firefox 19+ */
input:-moz-placeholder {
  text-overflow: ellipsis;
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

textarea.form-control {
  height: auto;
}

.input-label {
  position: relative;
  top: 0.6em;
}

.control-group {
  *zoom: 1;
  position: relative;
  margin-bottom: 24px;
  margin-bottom: 2rem;
}
.control-group:before, .control-group:after {
  content: "";
  display: table;
}
.control-group:after {
  clear: both;
}

.radio-primary {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none; /* Firefox */
  appearance: none;
  clip: rect(0px, 0px, 0px, 0px);
  clip: rect(0 0 0 0);
}
.radio-primary + label, .radio-primary + .label {
  position: relative;
  padding-left: 40px;
  min-height: 30px;
  padding-top: 5px;
  padding-top: 0.4166666667rem;
  margin-top: 10px;
  margin-top: 0.8333333333rem;
  width: 100%;
}
.radio-primary + label:before, .radio-primary + .label:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3532px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  position: absolute;
  margin-left: -40px;
  margin-right: 10px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .radio-primary + label:before, .radio-primary + .label:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.radio-primary:checked + label:before,
.radio-primary:checked + .label:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3452px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .radio-primary:checked + label:before,
  .radio-primary:checked + .label:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

@media only screen and (max-width: 568px) {
  .radio-primary + label,
  .radio-primary + .label {
    width: 100%;
    padding-left: 0;
    padding-right: 40px;
  }
  .radio-primary + label:before,
  .radio-primary + .label:before {
    display: none;
  }
  .radio-primary + label:after,
  .radio-primary + .label:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -3532px;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .radio-primary + label:after,
  .radio-primary + .label:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .radio-primary:checked + label:after, .radio-primary:checked + .label:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -3452px;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .radio-primary:checked + label:after, .radio-primary:checked + .label:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .radio-primary:checked + label:before, .radio-primary:checked + .label:before {
    display: none;
  }
}
.checkbox-primary {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none; /* Firefox */
  appearance: none;
  clip: rect(0px, 0px, 0px, 0px);
  clip: rect(0 0 0 0);
}
.checkbox-primary + label, .checkbox-primary + .label, .checkbox-primary + label + label, .checkbox-primary + .label + label, .checkbox-primary + label + label + label, .checkbox-primary + .label + label + label {
  margin-top: 10px;
  margin-top: 0.8333333333rem;
  padding-top: 5px;
  padding-top: 0.4166666667rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  position: relative;
  padding-left: 40px;
  pointer-events: all;
  min-height: 30px;
}
.checkbox-primary + label:before, .checkbox-primary + .label:before, .checkbox-primary + label + label:before, .checkbox-primary + .label + label:before, .checkbox-primary + label + label + label:before, .checkbox-primary + .label + label + label:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3532px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  margin-left: -40px;
  margin-right: 10px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .checkbox-primary + label:before, .checkbox-primary + .label:before, .checkbox-primary + label + label:before, .checkbox-primary + .label + label:before, .checkbox-primary + label + label + label:before, .checkbox-primary + .label + label + label:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.checkbox-primary:checked + label:before,
.checkbox-primary:checked + .label:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3452px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .checkbox-primary:checked + label:before,
  .checkbox-primary:checked + .label:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.checkbox-primary.default-two-lines + label:before, .checkbox-primary.default-two-lines + .label:before {
  top: 5px;
  top: 0.4166666667rem;
}
.checkbox-primary.checkbox-square + label:before, .checkbox-primary.checkbox-square + .label:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3132px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .checkbox-primary.checkbox-square + label:before, .checkbox-primary.checkbox-square + .label:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.checkbox-primary.checkbox-square:checked + label:before,
.checkbox-primary.checkbox-square:checked + .label:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3012px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .checkbox-primary.checkbox-square:checked + label:before,
  .checkbox-primary.checkbox-square:checked + .label:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.checkbox-primary.checkbox-square[disabled] + label,
.checkbox-primary.checkbox-square[disabled] + .label {
  color: #b0b6b8;
}
.checkbox-primary.checkbox-square[disabled] + label:before,
.checkbox-primary.checkbox-square[disabled] + .label:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3172px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .checkbox-primary.checkbox-square[disabled] + label:before,
  .checkbox-primary.checkbox-square[disabled] + .label:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .checkbox-primary.checkbox-square + label:before, .checkbox-primary.checkbox-square + .label:before {
    display: none;
  }
  .checkbox-primary.checkbox-square + label:after, .checkbox-primary.checkbox-square + .label:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -3132px;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .checkbox-primary.checkbox-square + label:after, .checkbox-primary.checkbox-square + .label:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .checkbox-primary.checkbox-square:checked + label:after,
  .checkbox-primary.checkbox-square:checked + .label:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -3012px;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .checkbox-primary.checkbox-square:checked + label:after,
  .checkbox-primary.checkbox-square:checked + .label:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .checkbox-primary.checkbox-square[disabled] + label:after,
  .checkbox-primary.checkbox-square[disabled] + .label:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -3172px;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .checkbox-primary.checkbox-square[disabled] + label:after,
  .checkbox-primary.checkbox-square[disabled] + .label:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

@media only screen and (max-width: 568px) {
  .control-group > label,
  .control-group > .label {
    width: 100%;
  }
  .checkbox-primary + label,
  .checkbox-primary + .label {
    width: 100%;
    padding-left: 0;
    padding-right: 40px;
  }
  .checkbox-primary + label:before,
  .checkbox-primary + .label:before {
    display: none;
  }
  .checkbox-primary + label:after,
  .checkbox-primary + .label:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -3532px;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    position: absolute;
    right: 0;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .checkbox-primary + label:after,
  .checkbox-primary + .label:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .checkbox-primary + label.has-tooltip,
  .checkbox-primary + .label.has-tooltip {
    padding-right: 60px;
  }
  .checkbox-primary:checked + label:after, .checkbox-primary:checked + .label:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -3452px;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .checkbox-primary:checked + label:after, .checkbox-primary:checked + .label:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .checkbox-primary:checked + label:before, .checkbox-primary:checked + .label:before {
    display: none;
  }
}
.control-group span.error {
  *zoom: 1;
  clear: both;
  position: relative;
  display: block;
  min-height: 28px;
  min-height: 2.3333333333rem;
  font-size: 11px;
  color: #cc0033;
}
.control-group span.error:before, .control-group span.error:after {
  content: "";
  display: table;
}
.control-group span.error:after {
  clear: both;
}

textarea.error,
input[type=text].error,
input[type=password].error,
input[type=datetime].error,
input[type=datetime-local].error,
input[type=date].error,
input[type=month].error,
input[type=time].error,
input[type=week].error,
input[type=number].error,
input[type=email].error,
input[type=url].error,
input[type=search].error,
input[type=tel].error,
input[type=color].error,
.custom-select select.error {
  border: 1px solid #cc0033;
  color: #cc0033;
}

.vtp-compare-bar, .vtp-anchor-nav {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
}

.vtp-flyout.loading .content::after, .vtp-modals .vtp-modal.loading::after {
  content: "";
  width: 45px;
  height: 8px;
  display: block;
  background: url("../images/filterpage/loader_big.gif") no-repeat center left;
}

.vtp-anchor-nav {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  *zoom: 1;
  width: auto;
  max-width: 1280px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 4%;
  padding-right: 4%;
  display: block;
  top: 0;
  -webkit-transition: padding-left 150ms ease, padding-right 150ms ease;
  -o-transition: padding-left 150ms ease, padding-right 150ms ease;
  transition: padding-left 150ms ease, padding-right 150ms ease;
  width: 100%;
  z-index: 1010;
}
.vtp-anchor-nav:before, .vtp-anchor-nav:after {
  content: "";
  display: table;
}
.vtp-anchor-nav:after {
  clear: both;
}
.vtp-anchor-nav .vtp-anchor-nav-inner {
  background-color: #1a1a1a;
}
.vtp-anchor-nav .container {
  *zoom: 1;
  width: auto;
  max-width: 1280px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  -webkit-transition: padding-left 150ms ease, padding-right 150ms ease, margin-left 150ms ease, margin-right 150ms ease;
  -o-transition: padding-left 150ms ease, padding-right 150ms ease, margin-left 150ms ease, margin-right 150ms ease;
  transition: padding-left 150ms ease, padding-right 150ms ease, margin-left 150ms ease, margin-right 150ms ease;
}
.vtp-anchor-nav .container:before, .vtp-anchor-nav .container:after {
  content: "";
  display: table;
}
.vtp-anchor-nav .container:after {
  clear: both;
}
.fixedsticky-on.vtp-anchor-nav, .sticky-active.vtp-anchor-nav {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}
.fixedsticky-on.vtp-anchor-nav .container, .sticky-active.vtp-anchor-nav .container {
  padding: 0 4%;
}
@media only screen and (max-width: 767px) {
  .fixedsticky-on.vtp-anchor-nav .container, .sticky-active.vtp-anchor-nav .container {
    padding: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .fixedsticky-on.vtp-anchor-nav .container, .sticky-active.vtp-anchor-nav .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.vtp-anchor-nav a {
  font-size: 13px;
  line-height: 22.8px;
  line-height: 1.9rem;
  display: block;
  padding: 24px 0;
  position: relative;
  color: #b3b3b3;
  -webkit-transition: color 400ms ease;
  -o-transition: color 400ms ease;
  transition: color 400ms ease;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
}
.vtp-anchor-nav a:hover {
  color: #fff;
}
.vtp-lightversion .vtp-anchor-nav a:not(.vtp-btn) {
  background-color: transparent !important;
}
.vtp-anchor-nav .active {
  background-color: #d9d9d9;
  z-index: 3;
}
.vtp-anchor-nav .active:before {
  content: "";
  border: transparent;
}
.vtp-anchor-nav .active a {
  color: #1a1a1a;
  z-index: 2;
}
.vtp-anchor-nav .active a:hover {
  cursor: default;
}
.vtp-anchor-nav ul {
  font-size: 0;
}
.vtp-anchor-nav li {
  position: relative;
  display: block;
  float: left;
  text-align: center;
  padding-right: 3%;
  padding-left: 3%;
}
.vtp-anchor-nav li:before {
  content: "|";
  border-right: 1px solid #4c4c4c;
  color: #1a1a1a;
  line-height: 23.3333333333px;
  height: 23.3333333333px;
  position: absolute;
  top: 50%;
  width: 0;
  margin-top: -11.6666666667px;
  left: 0;
}
.vtp-anchor-nav li:first-child:before {
  visibility: hidden;
}

.vtp-consumption .vtp-btn.expand, .vtp-consumption .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-consumption .expand.vtp-btn, .vtp-technical-data .vtp-btn.expand, .vtp-technical-data .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-technical-data .expand.vtp-btn, .vtp-features .vtp-btn.expand, .vtp-features .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-features .expand.vtp-btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  clear: both;
}
.lt-ie9 .vtp-consumption .vtp-btn.expand, .vtp-consumption .lt-ie9 .vtp-btn.expand, .lt-ie9 .vtp-technical-data .vtp-btn.expand, .vtp-technical-data .lt-ie9 .vtp-btn.expand, .lt-ie9 .vtp-features .vtp-btn.expand, .vtp-features .lt-ie9 .vtp-btn.expand {
  white-space: nowrap;
  width: 280px;
}
.vtp-consumption .vtp-btn.expand + div, .vtp-consumption .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn + div, .vtp-compare-bar.compare-enabled .action-holder .vtp-consumption .expand.vtp-btn + div, .vtp-technical-data .vtp-btn.expand + div, .vtp-technical-data .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn + div, .vtp-compare-bar.compare-enabled .action-holder .vtp-technical-data .expand.vtp-btn + div, .vtp-features .vtp-btn.expand + div, .vtp-features .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn + div, .vtp-compare-bar.compare-enabled .action-holder .vtp-features .expand.vtp-btn + div {
  padding-top: 24px;
}

/* Ion.RangeSlider
// css version 2.0.3
// © 2013-2014 Denis Ineshin | IonDen.com
// ===================================================================================================================*/
/* =====================================================================================================================
// RangeSlider */
.irs {
  position: relative;
  display: block;
  width: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.irs-line {
  position: relative;
  display: block;
  overflow: hidden;
  outline: none !important;
}

.irs-line-left, .irs-line-mid, .irs-line-right {
  position: absolute;
  display: block;
  top: 0;
}

.irs-line-left {
  left: 0;
  width: 11%;
}

.irs-line-mid {
  left: 9%;
  width: 82%;
}

.irs-line-right {
  right: 0;
  width: 11%;
}

.irs-bar {
  position: absolute;
  display: block;
  left: 0;
  width: 0;
}

.irs-bar-edge {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}

.irs-shadow {
  position: absolute;
  display: none;
  left: 0;
  width: 0;
}

.irs-slider {
  position: absolute;
  display: block;
  cursor: default;
  z-index: 1;
}

.irs-from, .irs-to, .irs-single {
  top: 0;
  color: #000;
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
  text-shadow: none;
  padding: 1px 5px;
  position: absolute;
  display: block;
  cursor: default;
  white-space: nowrap;
}

.irs-slider.type_last {
  z-index: 2;
}

.irs-min {
  position: absolute;
  display: block;
  left: 0;
  cursor: default;
}

.irs-max {
  position: absolute;
  display: block;
  right: 0;
  cursor: default;
}

.irs-from, .irs-to, .irs-single {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  cursor: default;
  white-space: nowrap;
}

.irs-grid {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
}

.irs-with-grid .irs-grid {
  display: block;
}

.irs-grid-pol {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: #000;
}

.irs-grid-pol.small {
  height: 4px;
}

.irs-grid-text {
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
  color: #000;
}

.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
}

.lt-ie9 .irs-disable-mask {
  background: #000;
  filter: alpha(opacity=0);
  cursor: not-allowed;
}

.irs-disabled {
  opacity: 0.4;
}

.lt-ie9 .irs-disabled {
  filter: alpha(opacity=40);
}

.irs-hidden-input {
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  z-index: -9999 !important;
  background: none !important;
  border-style: solid !important;
  border-color: transparent !important;
}

.line-clamp.clamped {
  position: relative;
}
.line-clamp.clamped:after {
  content: "…";
  font: inherit;
  display: block;
  position: absolute;
  line-height: inherit;
  text-align: right;
  bottom: 0;
  right: 0;
  /* width: 2.8em;
  padding-right: 0.1em;
  background-size: 100% 100%;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAgAAAAABCAMAAACfZeZEAAAABGdBTUEAALGPC/xhBQAAAwBQTFRF////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AAAA////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wDWRdwAAAP90Uk5TgsRjMZXhS30YrvDUP3Emow1YibnM9+ggOZxrBtpRRo94gxItwLOoX/vsHdA2yGgL8+TdKUK8VFufmHSGgAQWJNc9tk+rb5KMCA8aM0iwpWV6dwP9+fXuFerm3yMs0jDOysY8wr5FTldeoWKabgEJ8RATG+IeIdsn2NUqLjQ3OgBDumC3SbRMsVKsValZplydZpZpbJOQco2KdYeEe36BDAL8/vgHBfr2CvTyDu8R7esU6RcZ5ecc4+Af3iLcJSjZ1ivT0S/PMs3LNck4x8U7wz7Bv0G9RLtHuEq1TbJQr1OtVqqnWqRdoqBhnmSbZ5mXapRtcJGOc4t2eYiFfH9AS7qYlgAAARlJREFUKM9jqK9fEGS7VNrDI2+F/nyB1Z4Fa5UKN4TbbeLY7FW0Tatkp3jp7mj7vXzl+4yrDsYoVx+JYz7mXXNSp/a0RN25JMcLPP8umzRcTZW77tNyk63tdprzXdmO+2ZdD9MFe56Y9z3LUG96mcX02n/CW71JH6Qmf8px/cw77ZvVzB+BCj8D5vxhn/vXZh6D4uzf1rN+Cc347j79q/zUL25TPrJMfG/5LvuNZP8rixeZz/mf+vU+Vut+5NL5gPOeb/sd1dZbTs03hBuvmV5JuaRyMfk849nEM7qnEk6IHI8/qn049hB35QGHiv0yZXuMdkXtYC3ebrglcqvYxoj1muvC1nDlrzJYGbpcdHHIMo2FwYv+j3QAAOBSfkZYITwUAAAAAElFTkSuQmCC);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to($col), color-stop(60%, $col));
  background: -moz-linear-gradient(to right, rgba(255, 255, 255, 0), $col 60%, $col);
  background: -o-linear-gradient(to right, rgba(255, 255, 255, 0), $col 60%, $col);
  background: -ms-linear-gradient(to right, rgba(255, 255, 255, 0), $col 60%, $col);
  background: linear-gradient(to right, rgba(255, 255, 255, 0), $col 60%, $col); */
  width: 1em;
  background: white;
}

.one-liner {
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: block;
  /* autoprefixer: off */
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-height: 1.2em;
}

@media print {
  body {
    overflow: visible !important;
    text-overflow: initial !important;
    display: block !important;
    -webkit-line-clamp: initial !important;
    -webkit-box-orient: initial !important;
    max-height: none !important;
  }
}
.vtp-loading-container {
  padding: 42px 0;
  display: none;
}
@media only screen and (max-width: 768px) {
  .vtp-loading-container {
    padding: 48px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .vtp-loading-container {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 1440px) {
  .vtp-loading-container {
    padding: 78px 0;
  }
}
@media only screen and (max-width: 1920px) {
  .vtp-loading-container {
    padding: 96px 0;
  }
}
.vtp-loading-container .vtp-progress-continuous {
  position: relative;
  height: 0.25rem;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 24px 0;
}
.vtp-loading-container .vtp-progress-continuous .vtp-progress-bar {
  -webkit-animation: vtp-progress-continuous 2s linear infinite;
  -o-animation: vtp-progress-continuous 2s linear infinite;
  animation: vtp-progress-continuous 2s linear infinite;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: #bb0a30;
}

@-webkit-keyframes vtp-progress-continuous {
  0% {
    left: -55%;
    width: 55%;
  }
  50% {
    width: 30%;
  }
  70% {
    width: 70%;
  }
  80% {
    left: 50%;
  }
  95% {
    left: 120%;
  }
  to {
    left: 100%;
  }
}
@-o-keyframes vtp-progress-continuous {
  0% {
    left: -55%;
    width: 55%;
  }
  50% {
    width: 30%;
  }
  70% {
    width: 70%;
  }
  80% {
    left: 50%;
  }
  95% {
    left: 120%;
  }
  to {
    left: 100%;
  }
}
@keyframes vtp-progress-continuous {
  0% {
    left: -55%;
    width: 55%;
  }
  50% {
    width: 30%;
  }
  70% {
    width: 70%;
  }
  80% {
    left: 50%;
  }
  95% {
    left: 120%;
  }
  to {
    left: 100%;
  }
}
.vtp-icon-ENVKV, .vtp-icon-aaa, .vtp-icon-5fj-warranty, .vtp-icon-audi-plus-small, .vtp-icon-audi-plus, .vtp-icon-dealerinfo, .vtp-icon-i, .vtp-icon-favstar:before, .vtp-icon-plakette-2, .vtp-icon-plakette-3, .vtp-icon-plakette-4-xl, .vtp-icon-plakette-4, .vtp-icon-uk_360, .vtp-icon-gallery {
  display: inline-block;
}

.vtp-icon-gallery {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1448px;
  background-repeat: no-repeat;
  width: 23px;
  height: 19px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -11.5px;
  margin-top: -9.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-gallery {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-icon-uk_360 {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1477px;
  background-repeat: no-repeat;
  width: 23px;
  height: 19px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -11.5px;
  margin-top: -9.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-uk_360 {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-icon-plakette-4 {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2894px;
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-plakette-4 {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-icon-plakette-4-xl {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -7114px;
  background-repeat: no-repeat;
  width: 77px;
  height: 77px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-plakette-4-xl {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-icon-plakette-3 {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2894px;
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-plakette-3 {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-icon-plakette-2 {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2894px;
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-plakette-2 {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-icon-favstar {
  display: block;
  background-color: #434c53;
  height: 30px;
  width: 30px;
}
.vtp-icon-favstar:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3332px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  content: "";
  display: inline-block;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-favstar:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-icon-favstar.active {
  background-color: #c03;
}
.vtp-icon-favstar:hover {
  background-color: #aa142d;
}
.desktop .vtp-icon-favstar {
  -webkit-transition: background 0.1s ease-in-out;
  -o-transition: background 0.1s ease-in-out;
  transition: background 0.1s ease-in-out;
}
.desktop .vtp-icon-favstar:before {
  -webkit-transition: height 0.1s ease-in-out, width 0.1s ease-in-out;
  -o-transition: height 0.1s ease-in-out, width 0.1s ease-in-out;
  transition: height 0.1s ease-in-out, width 0.1s ease-in-out;
}
.desktop .vtp-icon-favstar:active {
  background-color: #aa142d;
}
.desktop .vtp-icon-favstar:active:before {
  -webkit-transform: scale(0.8, 0.8);
  -ms-transform: scale(0.8, 0.8);
  -o-transform: scale(0.8, 0.8);
  transform: scale(0.8, 0.8);
}
.desktop .vtp-icon-favstar.active:active {
  background-color: #434c53;
}

.touch .vtp-icon-favstar:active, .touch .vtp-icon-favstar:hover {
  background-color: #434c53;
}
.touch .vtp-icon-favstar.active:active, .touch .vtp-icon-favstar.active:hover {
  background-color: #c03;
}

.vtp-icon-i {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1536px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-i {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-icon-i:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1506px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-i:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media print {
  .vtp-icon-i {
    display: none;
  }
}

.vtp-icon-dealerinfo {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -7290px;
  background-repeat: no-repeat;
  width: 96px;
  height: 82px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-dealerinfo {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-icon-audi-plus {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3694px;
  background-repeat: no-repeat;
  width: 74px;
  height: 34px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-audi-plus {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-icon-audi-plus-small {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1596px;
  background-repeat: no-repeat;
  width: 60px;
  height: 21px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-audi-plus-small {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-icon-5fj-warranty {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -7201px;
  background-repeat: no-repeat;
  width: 60px;
  height: 79px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-5fj-warranty {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-icon-aaa {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3252px;
  background-repeat: no-repeat;
  width: 221px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-aaa {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-icon-ENVKV.EEC-AP {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -364px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-ENVKV.EEC-AP {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-icon-ENVKV.EEC-A {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -324px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-ENVKV.EEC-A {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-icon-ENVKV.EEC-B {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -404px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-ENVKV.EEC-B {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-icon-ENVKV.EEC-C {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -444px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-ENVKV.EEC-C {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-icon-ENVKV.EEC-D {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -484px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-ENVKV.EEC-D {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-icon-ENVKV.EEC-E {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -524px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-ENVKV.EEC-E {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-icon-ENVKV.EEC-F {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -564px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-ENVKV.EEC-F {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-icon-ENVKV.EEC-G {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -604px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-icon-ENVKV.EEC-G {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}

table {
  background-color: transparent;
  width: 100%;
  max-width: 100%;
}

th {
  text-align: left;
}

.table {
  margin-bottom: 19px;
}
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.6;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}

.table-plain > thead > tr > th,
.table-plain > thead > tr > td,
.table-plain > tbody > tr > th,
.table-plain > tbody > tr > td,
.table-plain > tfoot > tr > th,
.table-plain > tfoot > tr > td {
  border: 0;
}
.table-plain > thead > tr > th:first-child,
.table-plain > thead > tr > td:first-child,
.table-plain > tbody > tr > th:first-child,
.table-plain > tbody > tr > td:first-child,
.table-plain > tfoot > tr > th:first-child,
.table-plain > tfoot > tr > td:first-child {
  padding-left: 0;
}

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5;
}

table col[class*=col-] {
  position: static;
  float: none;
  display: table-column;
}

table td[class*=col-],
table th[class*=col-] {
  position: static;
  float: none;
  display: table-cell;
}

@media screen and (max-width: 568px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 14.25px;
    overflow-y: hidden;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-btn {
  display: inline-block;
  margin-bottom: 0;
  padding: 10px 14px 9px;
  font-size: 12px;
  line-height: 1.6;
  border-radius: 0;
  font-family: Verdana, sans-serif;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border: 1px solid transparent;
  background-image: none;
  -webkit-transition: background-color 140ms ease;
  -o-transition: background-color 140ms ease;
  transition: background-color 140ms ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  min-width: 80px;
  color: #fff;
  background-color: #000;
}
.vtp-btn:hover, .vtp-compare-bar.compare-enabled .action-holder .vtp-btn:hover, .vtp-btn:focus, .vtp-compare-bar.compare-enabled .action-holder .vtp-btn:focus, .open > .vtp-btn.dropdown-toggle, .vtp-compare-bar.compare-enabled .action-holder .open > .dropdown-toggle.vtp-btn {
  color: #fff;
  background-color: #434c53;
}
.open > .vtp-btn.dropdown-toggle, .vtp-compare-bar.compare-enabled .action-holder .open > .dropdown-toggle.vtp-btn {
  background-image: none;
}
.vtp-btn.disabled, .vtp-compare-bar.compare-enabled .action-holder .disabled.vtp-btn, .vtp-btn[disabled], .vtp-compare-bar.compare-enabled .action-holder [disabled].vtp-btn, fieldset[disabled] .vtp-btn, fieldset[disabled] .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder fieldset[disabled] .vtp-btn {
  color: #ffffff;
  opacity: 1;
}
.vtp-btn.disabled, .vtp-compare-bar.compare-enabled .action-holder .disabled.vtp-btn, .vtp-btn.disabled:hover, .vtp-btn.disabled:focus, .vtp-btn.disabled.active, .vtp-btn[disabled], .vtp-compare-bar.compare-enabled .action-holder [disabled].vtp-btn, .vtp-btn[disabled]:hover, .vtp-btn[disabled]:focus, .vtp-btn[disabled].active, fieldset[disabled] .vtp-btn, fieldset[disabled] .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder fieldset[disabled] .vtp-btn, fieldset[disabled] .vtp-btn:hover, fieldset[disabled] .vtp-btn:focus, fieldset[disabled] .vtp-btn.active {
  background-color: #e7e9ea;
}
.vtp-btn .badge, .vtp-compare-bar.compare-enabled .action-holder .vtp-btn .badge {
  color: #000;
  background-color: #fff;
}
.vtp-btn:hover, .vtp-compare-bar.compare-enabled .action-holder .vtp-btn:hover, .vtp-btn:focus, .vtp-compare-bar.compare-enabled .action-holder .vtp-btn:focus {
  text-decoration: none;
}
.vtp-btn.disabled, .vtp-compare-bar.compare-enabled .action-holder .disabled.vtp-btn, .vtp-btn[disabled], .vtp-compare-bar.compare-enabled .action-holder [disabled].vtp-btn, fieldset[disabled] .vtp-btn, fieldset[disabled] .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder fieldset[disabled] .vtp-btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.vtp-btn.back, .vtp-compare-bar.compare-enabled .action-holder .back.vtp-btn {
  padding-left: 8px;
  padding-right: 12px;
}
.vtp-btn.back:after, .vtp-compare-bar.compare-enabled .action-holder .back.vtp-btn:after {
  display: none;
}
.vtp-btn.back:before, .vtp-compare-bar.compare-enabled .action-holder .back.vtp-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -334px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  content: "";
  display: inline-block;
  margin-right: 0.5em;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-btn.back:before, .vtp-compare-bar.compare-enabled .action-holder .back.vtp-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-btn.complete:after, .vtp-compare-bar.compare-enabled .action-holder .complete.vtp-btn:after, .vtp-btn.download:after, .vtp-compare-bar.compare-enabled .action-holder .download.vtp-btn:after, .vtp-btn.submit:after, .vtp-compare-bar.compare-enabled .action-holder .submit.vtp-btn:after, .vtp-btn.next:after, .vtp-compare-bar.compare-enabled .action-holder .next.vtp-btn:after, .vtp-btn.primary:after, .vtp-compare-bar.compare-enabled .action-holder .primary.vtp-btn:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -352px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  content: "";
  display: inline-block;
  margin-left: 0.5em;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-btn.complete:after, .vtp-compare-bar.compare-enabled .action-holder .complete.vtp-btn:after, .vtp-btn.download:after, .vtp-compare-bar.compare-enabled .action-holder .download.vtp-btn:after, .vtp-btn.submit:after, .vtp-compare-bar.compare-enabled .action-holder .submit.vtp-btn:after, .vtp-btn.next:after, .vtp-compare-bar.compare-enabled .action-holder .next.vtp-btn:after, .vtp-btn.primary:after, .vtp-compare-bar.compare-enabled .action-holder .primary.vtp-btn:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-btn.primary, .vtp-compare-bar.compare-enabled .action-holder .primary.vtp-btn {
  min-width: 80px;
  color: #fff;
  background-color: #c03;
}
.vtp-btn.primary:hover, .vtp-compare-bar.compare-enabled .action-holder .primary.vtp-btn:hover, .vtp-btn.primary:focus, .vtp-compare-bar.compare-enabled .action-holder .primary.vtp-btn:focus, .open > .vtp-btn.primary.dropdown-toggle {
  color: #fff;
  background-color: #aa142d;
}
.open > .vtp-btn.primary.dropdown-toggle {
  background-image: none;
}
.vtp-btn.primary.disabled, .vtp-compare-bar.compare-enabled .action-holder .primary.disabled.vtp-btn, .vtp-btn.primary[disabled], .vtp-compare-bar.compare-enabled .action-holder .primary[disabled].vtp-btn, fieldset[disabled] .vtp-btn.primary, fieldset[disabled] .vtp-compare-bar.compare-enabled .action-holder .primary.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder fieldset[disabled] .primary.vtp-btn {
  color: #ffffff;
  opacity: 1;
}
.vtp-btn.primary.disabled, .vtp-compare-bar.compare-enabled .action-holder .primary.disabled.vtp-btn, .vtp-btn.primary.disabled:hover, .vtp-btn.primary.disabled:focus, .vtp-btn.primary.disabled.active, .vtp-btn.primary[disabled], .vtp-compare-bar.compare-enabled .action-holder .primary[disabled].vtp-btn, .vtp-btn.primary[disabled]:hover, .vtp-btn.primary[disabled]:focus, .vtp-btn.primary[disabled].active, fieldset[disabled] .vtp-btn.primary, fieldset[disabled] .vtp-compare-bar.compare-enabled .action-holder .primary.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder fieldset[disabled] .primary.vtp-btn, fieldset[disabled] .vtp-btn.primary:hover, fieldset[disabled] .vtp-btn.primary:focus, fieldset[disabled] .vtp-btn.primary.active {
  background-color: #e7e9ea;
}
.vtp-btn.primary .badge, .vtp-compare-bar.compare-enabled .action-holder .primary.vtp-btn .badge {
  color: #c03;
  background-color: #fff;
}
.vtp-btn.secondary, .vtp-compare-bar.compare-enabled .action-holder .secondary.vtp-btn {
  min-width: 80px;
  color: #000;
  background-color: #e5e5e5;
}
.vtp-btn.secondary:hover, .vtp-compare-bar.compare-enabled .action-holder .secondary.vtp-btn:hover, .vtp-btn.secondary:focus, .vtp-compare-bar.compare-enabled .action-holder .secondary.vtp-btn:focus, .open > .vtp-btn.secondary.dropdown-toggle {
  color: #000;
  background-color: #d0d3d4;
}
.open > .vtp-btn.secondary.dropdown-toggle {
  background-image: none;
}
.vtp-btn.secondary.disabled, .vtp-compare-bar.compare-enabled .action-holder .secondary.disabled.vtp-btn, .vtp-btn.secondary[disabled], .vtp-compare-bar.compare-enabled .action-holder .secondary[disabled].vtp-btn, fieldset[disabled] .vtp-btn.secondary, fieldset[disabled] .vtp-compare-bar.compare-enabled .action-holder .secondary.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder fieldset[disabled] .secondary.vtp-btn {
  color: #ffffff;
  opacity: 1;
}
.vtp-btn.secondary.disabled, .vtp-compare-bar.compare-enabled .action-holder .secondary.disabled.vtp-btn, .vtp-btn.secondary.disabled:hover, .vtp-btn.secondary.disabled:focus, .vtp-btn.secondary.disabled.active, .vtp-btn.secondary[disabled], .vtp-compare-bar.compare-enabled .action-holder .secondary[disabled].vtp-btn, .vtp-btn.secondary[disabled]:hover, .vtp-btn.secondary[disabled]:focus, .vtp-btn.secondary[disabled].active, fieldset[disabled] .vtp-btn.secondary, fieldset[disabled] .vtp-compare-bar.compare-enabled .action-holder .secondary.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder fieldset[disabled] .secondary.vtp-btn, fieldset[disabled] .vtp-btn.secondary:hover, fieldset[disabled] .vtp-btn.secondary:focus, fieldset[disabled] .vtp-btn.secondary.active {
  background-color: #e7e9ea;
}
.vtp-btn.secondary .badge, .vtp-compare-bar.compare-enabled .action-holder .secondary.vtp-btn .badge {
  color: #e5e5e5;
  background-color: #000;
}
.vtp-btn.cancel, .vtp-compare-bar.compare-enabled .action-holder .cancel.vtp-btn {
  min-width: 80px;
  color: #000;
  background-color: #e7e9ea;
}
.vtp-btn.cancel:hover, .vtp-compare-bar.compare-enabled .action-holder .cancel.vtp-btn:hover, .vtp-btn.cancel:focus, .vtp-compare-bar.compare-enabled .action-holder .cancel.vtp-btn:focus, .open > .vtp-btn.cancel.dropdown-toggle {
  color: #000;
  background-color: #d3d5d7;
}
.open > .vtp-btn.cancel.dropdown-toggle {
  background-image: none;
}
.vtp-btn.cancel.disabled, .vtp-compare-bar.compare-enabled .action-holder .cancel.disabled.vtp-btn, .vtp-btn.cancel[disabled], .vtp-compare-bar.compare-enabled .action-holder .cancel[disabled].vtp-btn, fieldset[disabled] .vtp-btn.cancel, fieldset[disabled] .vtp-compare-bar.compare-enabled .action-holder .cancel.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder fieldset[disabled] .cancel.vtp-btn {
  color: #ffffff;
  opacity: 1;
}
.vtp-btn.cancel.disabled, .vtp-compare-bar.compare-enabled .action-holder .cancel.disabled.vtp-btn, .vtp-btn.cancel.disabled:hover, .vtp-btn.cancel.disabled:focus, .vtp-btn.cancel.disabled.active, .vtp-btn.cancel[disabled], .vtp-compare-bar.compare-enabled .action-holder .cancel[disabled].vtp-btn, .vtp-btn.cancel[disabled]:hover, .vtp-btn.cancel[disabled]:focus, .vtp-btn.cancel[disabled].active, fieldset[disabled] .vtp-btn.cancel, fieldset[disabled] .vtp-compare-bar.compare-enabled .action-holder .cancel.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder fieldset[disabled] .cancel.vtp-btn, fieldset[disabled] .vtp-btn.cancel:hover, fieldset[disabled] .vtp-btn.cancel:focus, fieldset[disabled] .vtp-btn.cancel.active {
  background-color: #e7e9ea;
}
.vtp-btn.cancel .badge, .vtp-compare-bar.compare-enabled .action-holder .cancel.vtp-btn .badge {
  color: #e7e9ea;
  background-color: #000;
}
.vtp-btn.expand, .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn {
  /*min-width: 200px;*/
  margin-top: 20px;
  margin-top: 1.6666666667rem;
  margin-bottom: 20px;
  margin-bottom: 1.6666666667rem;
}
.vtp-btn.expand [data-state=active], .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn [data-state=active] {
  display: none;
}
.vtp-btn.expand.with-icon, .vtp-compare-bar.compare-enabled .action-holder .expand.with-icon.vtp-btn {
  padding-right: 24px;
}
.vtp-btn.expand.with-icon:after, .vtp-compare-bar.compare-enabled .action-holder .expand.with-icon.vtp-btn:after {
  content: "";
  display: inline-block;
  position: relative;
  left: 10px;
  top: 3px;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -814px;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-btn.expand.with-icon:after, .vtp-compare-bar.compare-enabled .action-holder .expand.with-icon.vtp-btn:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-btn.expand.active [data-state=active] {
  display: inline;
}
.vtp-btn.expand.active [data-state=inactive] {
  display: none;
}
.vtp-btn.expand.active.with-icon:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -742px;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-btn.expand.active.with-icon:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-btn.expand.btn-center, .vtp-compare-bar.compare-enabled .action-holder .expand.btn-center.vtp-btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  clear: both;
}
.vtp-btn.hint, .vtp-compare-bar.compare-enabled .action-holder .hint.vtp-btn {
  margin: 0 0 24px 0;
  margin: 0 0 2rem 0;
  padding: 0 0 0 12px;
  padding: 0 0 0 1rem;
  background-color: transparent;
  display: inline-block;
  color: black;
}
.vtp-btn.hint:before, .vtp-compare-bar.compare-enabled .action-holder .hint.vtp-btn:before {
  top: 12px;
  top: 1rem;
  left: -12px;
  left: -1rem;
  content: "";
  display: inline-block;
  position: relative;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -790px;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  background-color: #e7e9ea;
  border: 11px solid #e7e9ea;
  height: 36px;
  width: 36px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-btn.hint:before, .vtp-compare-bar.compare-enabled .action-holder .hint.vtp-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-btn.hint.active:before, .vtp-compare-bar.compare-enabled .action-holder .hint.active.vtp-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -718px;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  height: 36px;
  width: 36px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-btn.hint.active:before, .vtp-compare-bar.compare-enabled .action-holder .hint.active.vtp-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-btn.option, .vtp-compare-bar.compare-enabled .action-holder .option.vtp-btn {
  padding-left: 42px;
  position: relative;
}
.vtp-btn.option [data-state=active], .vtp-compare-bar.compare-enabled .action-holder .option.vtp-btn [data-state=active],
.vtp-btn.option [data-state=success],
.vtp-compare-bar.compare-enabled .action-holder .option.vtp-btn [data-state=success] {
  display: none;
}
.vtp-btn.option:before, .vtp-compare-bar.compare-enabled .action-holder .option.vtp-btn:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 12px;
  top: 1rem;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -814px;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-btn.option:before, .vtp-compare-bar.compare-enabled .action-holder .option.vtp-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-btn.option.active [data-state=active] {
  display: inline;
}
.vtp-btn.option.active [data-state=inactive],
.vtp-btn.option.active [data-state=success] {
  display: none;
}
.vtp-btn.option.active:before, .vtp-compare-bar.compare-enabled .action-holder .option.active.vtp-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -742px;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  top: 12px;
  top: 1rem;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-btn.option.active:before, .vtp-compare-bar.compare-enabled .action-holder .option.active.vtp-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-btn.option.success:before, .vtp-compare-bar.compare-enabled .action-holder .option.success.vtp-btn:before {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -214px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  top: 7px;
  top: 0.5833333333rem;
  left: 9px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-btn.option.success:before, .vtp-compare-bar.compare-enabled .action-holder .option.success.vtp-btn:before {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-btn.option.success [data-state=success] {
  display: inline;
}
.vtp-btn.option.success [data-state=active],
.vtp-btn.option.success [data-state=inactive] {
  display: none;
}
.vtp-btn.toggle, .vtp-compare-bar.compare-enabled .action-holder .toggle.vtp-btn {
  min-width: 80px;
  color: #000;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
}
.vtp-btn.toggle:hover, .vtp-compare-bar.compare-enabled .action-holder .toggle.vtp-btn:hover, .vtp-btn.toggle:focus, .vtp-compare-bar.compare-enabled .action-holder .toggle.vtp-btn:focus, .open > .vtp-btn.toggle.dropdown-toggle {
  color: #000;
  background-color: #fff;
}
.open > .vtp-btn.toggle.dropdown-toggle {
  background-image: none;
}
.vtp-btn.toggle.disabled, .vtp-compare-bar.compare-enabled .action-holder .toggle.disabled.vtp-btn, .vtp-btn.toggle[disabled], .vtp-compare-bar.compare-enabled .action-holder .toggle[disabled].vtp-btn, fieldset[disabled] .vtp-btn.toggle, fieldset[disabled] .vtp-compare-bar.compare-enabled .action-holder .toggle.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder fieldset[disabled] .toggle.vtp-btn {
  color: #ffffff;
  opacity: 1;
}
.vtp-btn.toggle.disabled, .vtp-compare-bar.compare-enabled .action-holder .toggle.disabled.vtp-btn, .vtp-btn.toggle.disabled:hover, .vtp-btn.toggle.disabled:focus, .vtp-btn.toggle.disabled.active, .vtp-btn.toggle[disabled], .vtp-compare-bar.compare-enabled .action-holder .toggle[disabled].vtp-btn, .vtp-btn.toggle[disabled]:hover, .vtp-btn.toggle[disabled]:focus, .vtp-btn.toggle[disabled].active, fieldset[disabled] .vtp-btn.toggle, fieldset[disabled] .vtp-compare-bar.compare-enabled .action-holder .toggle.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder fieldset[disabled] .toggle.vtp-btn, fieldset[disabled] .vtp-btn.toggle:hover, fieldset[disabled] .vtp-btn.toggle:focus, fieldset[disabled] .vtp-btn.toggle.active {
  background-color: #e7e9ea;
}
.vtp-btn.toggle .badge, .vtp-compare-bar.compare-enabled .action-holder .toggle.vtp-btn .badge {
  color: #fff;
  background-color: #000;
}
.vtp-btn.toggle.active, .vtp-compare-bar.compare-enabled .action-holder .toggle.active.vtp-btn {
  background-color: #d9d9d9;
  color: #000;
}
.vtp-btn.toggle.active [data-state=active] {
  display: inline;
}
.vtp-btn.toggle.active [data-state=inactive] {
  display: none;
}
.vtp-btn.toggle.active:after, .vtp-compare-bar.compare-enabled .action-holder .toggle.active.vtp-btn:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -742px;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-btn.toggle.active:after, .vtp-compare-bar.compare-enabled .action-holder .toggle.active.vtp-btn:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-btn.toggle:focus, .vtp-compare-bar.compare-enabled .action-holder .toggle.vtp-btn:focus, .vtp-btn.toggle:hover, .vtp-compare-bar.compare-enabled .action-holder .toggle.vtp-btn:hover {
  color: #000;
}
.vtp-btn.multiline, .vtp-compare-bar.compare-enabled .action-holder .multiline.vtp-btn {
  max-width: 100%;
  white-space: normal;
}
.vtp-btn.plain:before, .vtp-compare-bar.compare-enabled .action-holder .plain.vtp-btn:before, .vtp-btn.plain:after, .vtp-compare-bar.compare-enabled .action-holder .plain.vtp-btn:after {
  display: none;
}
.vtp-btn.mobile, .vtp-compare-bar.compare-enabled .action-holder .mobile.vtp-btn {
  display: none;
}
@media print {
  .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-btn {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-btn.no-mobile, .vtp-compare-bar.compare-enabled .action-holder .no-mobile.vtp-btn {
    display: none;
  }
  .vtp-btn.mobile, .vtp-compare-bar.compare-enabled .action-holder .mobile.vtp-btn {
    display: block;
  }
}

input[type=submit].vtp-btn, .vtp-compare-bar.compare-enabled .action-holder input[type=submit].vtp-btn {
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* Firefox */
  appearance: none;
}

.vtp-close-btn {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2972px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-close-btn {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-close-btn:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2932px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-close-btn:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-close-btn:focus {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2932px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  outline: 2px solid #000;
  outline-offset: 1px;
  border: 1px solid #fff;
  border-radius: 2px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-close-btn:focus {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-close-btn.modal {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3835px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-close-btn.modal {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-close-btn.modal:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3785px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-close-btn.modal:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-download-btn.modal {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3935px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-download-btn.modal {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-download-btn.modal:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3885px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-download-btn.modal:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.btn-next,
.btn-prev {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 40px;
  height: 40px;
}
.btn-next:after,
.btn-prev:after {
  content: "";
  position: absolute;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5685px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  left: 0;
  top: 0;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .btn-next:after,
  .btn-prev:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.btn-next.btn-prev:after,
.btn-prev.btn-prev:after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.btn-next:hover:after,
.btn-prev:hover:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5635px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .btn-next:hover:after,
  .btn-prev:hover:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.btn-link {
  color: #c03;
  font-weight: 400;
  cursor: pointer;
  border-radius: 0;
}
.btn-link, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link, .btn-link:hover, .btn-link:focus {
  border-color: transparent;
}
.btn-link:hover, .btn-link:focus {
  color: #800020;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #ffffff;
  text-decoration: none;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.vtp-ajax-load-btn {
  position: relative;
}
.vtp-ajax-load-btn .spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.vtp-ajax-load-btn .spinner + span {
  opacity: 0;
}

.sup,
sup {
  top: -6px;
  top: -0.5rem;
  position: relative;
  font-size: inherit;
  text-align: center;
}
.sup a,
sup a {
  font-size: 75%;
  position: relative;
  pointer-events: auto;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.touch .sup a,
.touch sup a {
  margin: -2.4px -6px;
  margin: -0.2rem -0.5rem;
  padding: 2.4px 6px;
  padding: 0.2rem 0.5rem;
}

h1 .sup,
h1 sup,
h2 .sup,
h2 sup {
  top: -7.8px;
  top: -0.65rem;
}

@media screen and (min-width: 0\0 ) {
  .sup,
  sup {
    font-size: inherit;
  }
  .sup a,
  sup a {
    font-size: inherit;
    margin-right: 3px;
  }
}
.ie9 .sup, .ie9 sup,
.ie9 .sup a, .ie9 sub a {
  font-size: 12px;
}
.ie9 h1 .sup, .ie9 h1 sup,
.ie9 h1 .sup a, .ie9 h1 sup a {
  font-size: 26px;
}

img {
  width: 100%;
  max-width: 100% !important;
  height: auto;
  image-rendering: auto;
}
img.no-scale {
  width: auto;
}

.google-maps img {
  max-width: none !important;
}

[data-srcset],
[data-src] {
  display: none;
}

.js [data-srcset],
.js [data-src] {
  display: inline;
}

.vtp-modals {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 5000;
  background: #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  background: rgba(0, 0, 0, 0.85);
}
.vtp-market-uk .vtp-modals {
  background: rgba(0, 0, 0, 0.65);
}
.vtp-modals.active {
  display: block;
}
.vtp-modals h1 {
  margin: 48px 0 36px;
  margin: 4rem 0 3rem;
  word-wrap: normal;
  line-height: 1.2;
}
.mobile .vtp-modals h1 {
  letter-spacing: -0.02em;
}
.vtp-modals h2 {
  margin: 42px 0 12px;
  margin: 3.5rem 0 1rem;
  word-wrap: normal;
  line-height: 1.2;
}
.vtp-modals ol,
.vtp-modals ul {
  margin-bottom: 36px;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  list-style-type: disc;
  list-style-position: inside;
}
.vtp-modals .vtp-mandatory-areasearch ol,
.vtp-modals .vtp-mandatory-areasearch ul {
  list-style-position: outside;
}
.vtp-modals dl {
  float: left;
  clear: none;
  width: 48.403%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-modals dl:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 660px) {
  .vtp-modals dl {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-modals dl:first-child {
    margin-left: auto;
  }
  .vtp-modals dl:last-child {
    margin-right: auto;
  }
}
.vtp-modals dt {
  margin-top: 36px;
  margin-top: 3rem;
  margin-bottom: 12px;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.vtp-modals footer {
  margin-top: 60px;
  margin-top: 5rem;
  padding-top: 24px;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
}
.vtp-modals footer p {
  margin-bottom: 0;
  margin-bottom: 0;
}
.vtp-modals .vtp-consumption footer {
  padding-left: 4%;
  padding-right: 4%;
}
.vtp-modals .cf, .vtp-modals .vtp-filter-panel-engines .vtp-filter-campaigns, .vtp-filter-panel-engines .vtp-modals .vtp-filter-campaigns, .vtp-modals .vtp-filter-panel-engines .vtp-filter-engines, .vtp-filter-panel-engines .vtp-modals .vtp-filter-engines, .vtp-modals .vtp-filter-panel-engines .vtp-filter-fields-full-width, .vtp-filter-panel-engines .vtp-modals .vtp-filter-fields-full-width, .vtp-modals .car-teaser .product-extras, .vtp-modals .similar-car-item .product-extras, .car-teaser .vtp-modals .product-extras, .similar-car-item .vtp-modals .product-extras, .vtp-modals .vtp-tab-pane, .vtp-modals .vtp-description-list-wrap, .vtp-modals .vtp-similar-cars-list, .vtp-modals .vtp-suggested-cars-item, .vtp-modals .vtp-filter-panel-features .vtp-feature-list, .vtp-filter-panel-features .vtp-modals .vtp-feature-list, .vtp-modals .vtp-features .vtp-feature-teasers, .vtp-features .vtp-modals .vtp-feature-teasers, .vtp-modals .vtp-grid-view .vtp-results-view, .vtp-grid-view .vtp-modals .vtp-results-view, .vtp-modals .vtp-grid-view #suggested-cars, .vtp-grid-view .vtp-modals #suggested-cars, .vtp-modals .list-2-2-2-1, .vtp-modals .list-3-2-1 {
  margin: 36px 0;
  margin: 3rem 0;
}
.vtp-modals .vtp-close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 2000;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  text-indent: -9999px;
  color: #000;
}
.vtp-modals .vtp-close-btn.bottom {
  display: none;
}
.vtp-modals .vtp-modal {
  *zoom: 1;
  width: auto;
  max-width: 970px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 48px;
  padding-bottom: 4rem;
  display: none;
  position: relative;
  z-index: 5010;
  background: #fff;
  opacity: 0;
}
.vtp-modals .vtp-modal:before, .vtp-modals .vtp-modal:after {
  content: "";
  display: table;
}
.vtp-modals .vtp-modal:after {
  clear: both;
}
.vtp-modals .vtp-modal.opacity-full {
  opacity: 1;
}
.vtp-modals .vtp-modal.transparent {
  background: none;
  padding-bottom: 0;
  padding-bottom: 0;
}
.vtp-modals .vtp-modal.active {
  display: block;
}
.vtp-modals .vtp-modal.no-delay {
  -webkit-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}
.vtp-modals .vtp-modal.vtp-second-screen section {
  padding-top: 0;
  padding-bottom: 0;
}
.vtp-modals .vtp-modal.vtp-second-screen > .vtp-link.back, .vtp-modals .vtp-modal.vtp-second-screen > .back.vtp-breadcrumb-item {
  margin-left: 4%;
  padding-top: 30px;
  padding-top: 2.5rem;
  padding-bottom: 30px;
  padding-bottom: 2.5rem;
}
.vtp-modals .vtp-modal .container {
  padding: 70px 4% 20px;
}
.vtp-modals .vtp-modal .dialog-container {
  padding: 25px 0 35px;
}
.vtp-modals .vtp-modal .vtp-section-modal-layer {
  padding-top: 0;
  padding-bottom: 0;
}
.vtp-modals .vtp-modal .vtp-section-modal-layer .container {
  padding-left: 0;
  padding-right: 0;
}
.vtp-modals .vtp-modal .media .container {
  padding-top: 20px;
}
.vtp-modals .vtp-modal .vtp-mediacontrols .btn-fullscreen {
  display: none;
}
.vtp-modals .vtp-modal .vtp-tooltip ul {
  margin-bottom: 0;
}
@media only screen and (max-width: 660px) {
  .vtp-modals .vtp-modal {
    padding-top: 72px;
    padding-top: 6rem;
    padding-bottom: 72px;
    padding-bottom: 6rem;
  }
}
@media only screen and (min-width: 768px) {
  .vtp-modals .vtp-modal {
    -webkit-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
    animation-delay: 0.2s;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-modals .vtp-modal {
    min-height: 100%;
  }
  .vtp-modals .vtp-modal h1 {
    font-size: 21.6px;
    font-size: 1.8rem;
  }
}
.vtp-modals .vtp-modal.vtp-consumption h3.headline_main {
  margin: 4rem 0 3rem;
  word-wrap: normal;
  line-height: 1.2;
  font-size: 36px;
}
.vtp-modals .vtp-modal.vtp-consumption .engine-key-consumption .visible {
  float: left;
  width: 100%;
}
.vtp-modals .vtp-modal.vtp-consumption dl {
  width: 100%;
}
.vtp-modals .vtp-modal.vtp-consumption dl dt {
  line-height: 1.6;
  font-size: 1rem;
  font-family: Verdana, sans-serif;
}
.vtp-modals .vtp-modal-noindent .container,
.vtp-modals .vtp-modal-noindent .dynamicContent {
  padding: 25px 0 35px;
}

#filter-area-search-map .vtp-area-result-list ul {
  border: 1px solid #c6c9cb;
  margin-bottom: 0;
}

@media only screen and (max-width: 660px) {
  .vtp-modals .vtp-modal .container {
    padding-top: 20px;
  }
  .vtp-modals .vtp-modal-logged-out-form input, .vtp-modals .vtp-modal-logged-in-form input {
    margin-bottom: 30px;
  }
  .vtp-modals .vtp-teaser-module-list-item {
    margin-top: 30px;
  }
  .vtp-modals .vtp-close-btn {
    left: 4%;
    top: 28px;
    right: auto;
    background: none;
    font-size: inherit;
    text-indent: 0;
    height: auto;
    width: auto;
    -webkit-transition: color 400ms cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: color 400ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: color 400ms cubic-bezier(0.19, 1, 0.22, 1);
  }
  .vtp-modals .vtp-close-btn:hover {
    width: auto;
    height: auto;
    background: none;
    color: #c03;
  }
  .vtp-modals .vtp-close-btn:hover {
    color: #c03;
    cursor: pointer;
  }
  .vtp-modals .vtp-close-btn.vtp-link-active {
    color: #c03;
  }
  .vtp-modals .vtp-close-btn.basic {
    position: relative;
    display: inline-block;
    padding-left: 16px;
    text-decoration: none;
  }
  .vtp-modals .vtp-close-btn.basic:before {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -316px;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 6px;
  }
}
@media only screen and (max-width: 660px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 660px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (min-resolution: 144dpi), only screen and (max-width: 660px) and (min-resolution: 1.5dppx) {
  .vtp-modals .vtp-close-btn.basic:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 660px) {
  .vtp-modals .vtp-close-btn.basicAfter {
    position: relative;
    display: inline-block;
    padding-right: 16px;
  }
  .vtp-modals .vtp-close-btn.basicAfter:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -316px;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
    content: "";
    display: inline-block;
    position: absolute;
    right: 0;
    top: 6px;
  }
}
@media only screen and (max-width: 660px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 660px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (min-resolution: 144dpi), only screen and (max-width: 660px) and (min-resolution: 1.5dppx) {
  .vtp-modals .vtp-close-btn.basicAfter:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 660px) {
  .vtp-modals .vtp-close-btn.bold {
    font-weight: 700;
  }
  .vtp-modals .vtp-close-btn.underline {
    text-decoration: underline;
  }
  .vtp-modals .vtp-close-btn.no-underline {
    text-decoration: none;
  }
  .vtp-modals .vtp-close-btn.top, .vtp-modals .vtp-close-btn.up {
    padding-left: 12px;
  }
  .vtp-modals .vtp-close-btn.top:before, .vtp-modals .vtp-close-btn.up:before {
    position: absolute;
    background-image: url(../images/sprite-common.png);
    background-position: 0px -208px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
    content: "";
    display: inline-block;
    position: relative;
  }
}
@media only screen and (max-width: 660px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 660px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (min-resolution: 144dpi), only screen and (max-width: 660px) and (min-resolution: 1.5dppx) {
  .vtp-modals .vtp-close-btn.top:before, .vtp-modals .vtp-close-btn.up:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 660px) {
  .vtp-modals .vtp-close-btn.upAfter {
    padding-right: 8px;
  }
  .vtp-modals .vtp-close-btn.upAfter:after {
    position: absolute;
    background-image: url(../images/sprite-common.png);
    background-position: 0px -370px;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
    content: "";
    display: inline-block;
    position: relative;
    right: -8px;
  }
}
@media only screen and (max-width: 660px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 660px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (min-resolution: 144dpi), only screen and (max-width: 660px) and (min-resolution: 1.5dppx) {
  .vtp-modals .vtp-close-btn.upAfter:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 660px) {
  .vtp-modals .vtp-close-btn.down {
    padding-right: 8px;
  }
  .vtp-modals .vtp-close-btn.down:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -136px;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
    content: "";
    display: inline-block;
    position: relative;
    right: -8px;
  }
}
@media only screen and (max-width: 660px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 660px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (min-resolution: 144dpi), only screen and (max-width: 660px) and (min-resolution: 1.5dppx) {
  .vtp-modals .vtp-close-btn.down:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 660px) {
  .vtp-modals .vtp-close-btn.down.active:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -370px;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
  }
}
@media only screen and (max-width: 660px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 660px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (min-resolution: 144dpi), only screen and (max-width: 660px) and (min-resolution: 1.5dppx) {
  .vtp-modals .vtp-close-btn.down.active:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 660px) {
  .vtp-modals .vtp-close-btn.back, .vtp-modals .vtp-close-btn.next {
    font-family: Verdana, sans-serif;
    font-weight: 700;
  }
  .vtp-modals .vtp-close-btn.back {
    padding-left: 8px;
  }
  .vtp-modals .vtp-close-btn.back:before {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -244px;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
    content: "";
    display: inline-block;
    position: relative;
    left: -8px;
  }
}
@media only screen and (max-width: 660px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 660px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (min-resolution: 144dpi), only screen and (max-width: 660px) and (min-resolution: 1.5dppx) {
  .vtp-modals .vtp-close-btn.back:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 660px) {
  .vtp-modals .vtp-close-btn.back:hover:before {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -298px;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
  }
}
@media only screen and (max-width: 660px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 660px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (min-resolution: 144dpi), only screen and (max-width: 660px) and (min-resolution: 1.5dppx) {
  .vtp-modals .vtp-close-btn.back:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 660px) {
  .vtp-modals .vtp-close-btn.next {
    padding-right: 8px;
  }
  .vtp-modals .vtp-close-btn.next:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -262px;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
    content: "";
    display: inline-block;
    position: relative;
    left: 8px;
  }
}
@media only screen and (max-width: 660px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 660px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (min-resolution: 144dpi), only screen and (max-width: 660px) and (min-resolution: 1.5dppx) {
  .vtp-modals .vtp-close-btn.next:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 660px) {
  .vtp-modals .vtp-close-btn.next:hover:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -316px;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
  }
}
@media only screen and (max-width: 660px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 660px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (min-resolution: 144dpi), only screen and (max-width: 660px) and (min-resolution: 1.5dppx) {
  .vtp-modals .vtp-close-btn.next:hover:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 660px) {
  .vtp-modals .vtp-close-btn.bottom {
    display: block;
    top: auto;
    bottom: 24px;
  }
  .vtp-modals .vtp-modal.gallery .vtp-close-btn.modal {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -3835px;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 660px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 660px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (min-resolution: 144dpi), only screen and (max-width: 660px) and (min-resolution: 1.5dppx) {
  .vtp-modals .vtp-modal.gallery .vtp-close-btn.modal {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 660px) {
  .vtp-modals .vtp-modal.gallery .vtp-close-btn.modal.bottom {
    display: none;
  }
  .vtp-modals.dialog .vtp-close-btn, .vtp-modals.gallery .vtp-close-btn {
    position: absolute;
    right: 4%;
    top: 24px;
    left: auto;
    padding-bottom: 0;
    background-image: url(../images/sprite-common.png);
    background-position: 0px -3835px;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    font-family: "AudiTypeExtNormal", Verdana, sans-serif;
    text-indent: -9999px;
  }
}
@media only screen and (max-width: 660px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 660px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (min-resolution: 144dpi), only screen and (max-width: 660px) and (min-resolution: 1.5dppx) {
  .vtp-modals.dialog .vtp-close-btn, .vtp-modals.gallery .vtp-close-btn {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 660px) {
  .vtp-modals.dialog .vtp-close-btn:hover, .vtp-modals.gallery .vtp-close-btn:hover {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -3785px;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 660px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 660px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 660px) and (min-resolution: 144dpi), only screen and (max-width: 660px) and (min-resolution: 1.5dppx) {
  .vtp-modals.dialog .vtp-close-btn:hover, .vtp-modals.gallery .vtp-close-btn:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 660px) {
  .vtp-modals.dialog .vtp-close-btn.bottom, .vtp-modals.gallery .vtp-close-btn.bottom {
    display: none;
  }
}
.vtp-modal {
  display: none;
  max-width: 90%;
}
.vtp-modal.vtp-modal-form {
  max-width: 900px;
}
.vtp-modal.vtp-modal-form article {
  padding: 48px;
  padding: 4rem;
  padding-bottom: 0;
}
@media only screen and (max-width: 660px) {
  .vtp-modal.vtp-modal-form article {
    padding: 0;
  }
}
.vtp-modal.vtp-modal-logged-out-form article, .vtp-modal.vtp-modal-logged-in-form article {
  padding: 0;
  padding: 0;
}
.vtp-modal.vtp-modal-logged-out-form input, .vtp-modal.vtp-modal-logged-in-form input {
  display: inline-block;
  width: 255px;
  margin-right: 30px;
}
.vtp-modal.vtp-modal-logged-out-form h1, .vtp-modal.vtp-modal-logged-in-form h1 {
  padding-top: 40px;
}
.vtp-modal.vtp-modal-logged-out-form #ssoErrorMessage, .vtp-modal.vtp-modal-logged-in-form #ssoErrorMessage {
  display: block;
  position: absolute;
}
.vtp-modal.vtp-modal-logged-out-form a, .vtp-modal.vtp-modal-logged-in-form a {
  display: block;
  margin-top: 15px;
}
.vtp-modal.vtp-modal-logged-out-form .vtp-btn, .vtp-modal.vtp-modal-logged-out-form .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-modal.vtp-modal-logged-out-form .vtp-btn, .vtp-modal.vtp-modal-logged-in-form .vtp-btn, .vtp-modal.vtp-modal-logged-in-form .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-modal.vtp-modal-logged-in-form .vtp-btn {
  display: block;
  margin-top: 15px;
  margin-bottom: 30px;
}
.vtp-modal.dialog {
  width: auto;
  margin: 40px auto;
  max-width: 768px;
  padding: 40px 4%;
}
.vtp-modal.dialog h1 {
  margin-bottom: 30px;
  margin-top: 0;
}
.vtp-modal.dialog p {
  margin-bottom: 0;
}
.vtp-modal.dialog p.compact {
  margin-bottom: 30px;
  margin-bottom: 2.5rem;
}
.vtp-modal.dialog .modal-dialog-controls {
  margin-top: 48px;
  margin-top: 4rem;
}
.vtp-modal.dialog .modal-dialog-controls > button,
.vtp-modal.dialog .modal-dialog-controls > a,
.vtp-modal.dialog .modal-dialog-controls > div {
  margin-left: 10px;
  margin-left: 0.8333333333rem;
}
.vtp-modal.dialog .modal-dialog-controls > button:first-child,
.vtp-modal.dialog .modal-dialog-controls > a:first-child,
.vtp-modal.dialog .modal-dialog-controls > div:first-child {
  margin-left: 0;
}
@media only screen and (max-width: 1023px) {
  .vtp-modal.dialog {
    margin: 40px 12%;
  }
  .vtp-modal.dialog p {
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-modal.dialog {
    margin-left: 4%;
    margin-right: 4%;
    min-height: 0;
  }
}
@media only screen and (max-width: 660px) {
  .vtp-modal.dialog {
    margin: 0;
    max-width: none;
  }
}

#gwb-plus.vtp-modal .vtp-close-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -298px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  color: #c03;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  #gwb-plus.vtp-modal .vtp-close-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

/**
 * IE9 Related Workarounds
 */
.lt-ie9.vtp-modals,
.ie9.vtp-modals {
  overflow: auto;
  overflow-y: scroll;
}

.lt-ie9 #login-form fieldset .control-group:first-child,
.ie9 #login-form fieldset .control-group:first-child {
  margin-top: 2em;
}
.lt-ie9 #login-form fieldset .control-group:first-child label,
.ie9 #login-form fieldset .control-group:first-child label {
  position: absolute;
  top: -2em;
}

.vtp-description-list-wrap {
  width: 100%;
}
.vtp-description-list-wrap.section {
  padding-bottom: 0;
}
.vtp-description-list-wrap:only-child {
  display: block;
  clear: both;
  float: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.vtp-description-list-wrap:only-child:first-child {
  margin-left: auto;
}
.vtp-description-list-wrap:only-child:last-child {
  margin-right: auto;
}
.vtp-description-list-wrap dl {
  *zoom: 1;
  margin-bottom: 1.35em;
}
.vtp-description-list-wrap dl:before, .vtp-description-list-wrap dl:after {
  content: "";
  display: table;
}
.vtp-description-list-wrap dl:after {
  clear: both;
}
.vtp-description-list-wrap dl dt {
  margin-right: 1%;
  width: 35%;
  float: left;
}
.vtp-description-list-wrap dl dd {
  position: relative;
  padding-left: 1em;
  width: 64%;
  float: right;
  line-height: 1.5em;
  padding-top: 0.1em;
}
.vtp-description-list-wrap dl dd:before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
}
.vtp-description-list-wrap dl dd + dd {
  margin-top: 1em;
}
@media only screen and (max-width: 568px) {
  .vtp-description-list-wrap dl dt,
  .vtp-description-list-wrap dl dd {
    width: 100%;
    float: none;
  }
}

.vtp-checklist ul {
  margin-bottom: 12px;
  margin-bottom: 1rem;
}

.vtp-checklist ul > li {
  position: relative;
  padding-left: 15px;
  list-style-type: none;
  margin-bottom: 6px;
  margin-bottom: 0.5rem;
}
.vtp-checklist ul > li:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -406px;
  background-repeat: no-repeat;
  width: 12px;
  height: 9px;
  left: -2px;
  left: -0.1666666667rem;
  top: 5px;
  top: 0.4166666667rem;
  content: "";
  display: inline-block;
  position: absolute;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-checklist ul > li:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-checklist-compact ul > li {
  margin-bottom: 0;
}

.disc {
  list-style-type: disc;
  padding-left: 1.5em;
}

.circle {
  list-style-type: circle;
  padding-left: 1.5em;
}

.square {
  list-style-type: square;
  padding-left: 1.5em;
}

@media print {
  .vtp-checklist ul > li:before {
    background-image: none;
    content: "✔";
    color: #c03;
  }
}
.vtp-link, .vtp-breadcrumb-item {
  -webkit-transition: color 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 400ms cubic-bezier(0.19, 1, 0.22, 1);
}
.vtp-link:hover, .vtp-breadcrumb-item:hover {
  color: #c03;
  cursor: pointer;
}
.vtp-link.vtp-link-active, .vtp-link-active.vtp-breadcrumb-item {
  color: #c03;
}
.vtp-link.basic, .basic.vtp-breadcrumb-item {
  position: relative;
  display: inline-block;
  padding-left: 16px;
  text-decoration: none;
}
.vtp-link.basic:before, .basic.vtp-breadcrumb-item:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -316px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 6px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-link.basic:before, .basic.vtp-breadcrumb-item:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-link.basicAfter, .basicAfter.vtp-breadcrumb-item {
  position: relative;
  display: inline-block;
  padding-right: 16px;
}
.vtp-link.basicAfter:after, .basicAfter.vtp-breadcrumb-item:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -316px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 6px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-link.basicAfter:after, .basicAfter.vtp-breadcrumb-item:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-link.bold, .bold.vtp-breadcrumb-item {
  font-weight: 700;
}
.vtp-link.underline, .underline.vtp-breadcrumb-item {
  text-decoration: underline;
}
.vtp-link.no-underline, .no-underline.vtp-breadcrumb-item {
  text-decoration: none;
}
.vtp-link.top, .top.vtp-breadcrumb-item, .vtp-link.up, .up.vtp-breadcrumb-item {
  padding-left: 12px;
}
.vtp-link.top:before, .top.vtp-breadcrumb-item:before, .vtp-link.up:before, .up.vtp-breadcrumb-item:before {
  position: absolute;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -208px;
  background-repeat: no-repeat;
  width: 12px;
  height: 8px;
  content: "";
  display: inline-block;
  position: relative;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-link.top:before, .top.vtp-breadcrumb-item:before, .vtp-link.up:before, .up.vtp-breadcrumb-item:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-link.upAfter, .upAfter.vtp-breadcrumb-item {
  padding-right: 8px;
}
.vtp-link.upAfter:after, .upAfter.vtp-breadcrumb-item:after {
  position: absolute;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -370px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  content: "";
  display: inline-block;
  position: relative;
  right: -8px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-link.upAfter:after, .upAfter.vtp-breadcrumb-item:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media print {
  .vtp-link.upAfter:after, .upAfter.vtp-breadcrumb-item:after {
    display: none !important;
  }
}
.vtp-link.down, .down.vtp-breadcrumb-item {
  padding-right: 8px;
}
.vtp-link.down:after, .down.vtp-breadcrumb-item:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -136px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  content: "";
  display: inline-block;
  position: relative;
  right: -8px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-link.down:after, .down.vtp-breadcrumb-item:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media print {
  .vtp-link.down:after, .down.vtp-breadcrumb-item:after {
    display: none !important;
  }
}
.vtp-link.down.active:after, .down.active.vtp-breadcrumb-item:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -370px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-link.down.active:after, .down.active.vtp-breadcrumb-item:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-link.back, .back.vtp-breadcrumb-item, .vtp-link.next, .next.vtp-breadcrumb-item {
  font-family: Verdana, sans-serif;
  font-weight: 700;
}
.vtp-link.back, .back.vtp-breadcrumb-item {
  padding-left: 8px;
}
.vtp-link.back:before, .back.vtp-breadcrumb-item:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -244px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  content: "";
  display: inline-block;
  position: relative;
  left: -8px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-link.back:before, .back.vtp-breadcrumb-item:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-link.back:hover:before, .back.vtp-breadcrumb-item:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -298px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-link.back:hover:before, .back.vtp-breadcrumb-item:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-link.next, .next.vtp-breadcrumb-item {
  padding-right: 8px;
}
.vtp-link.next:after, .next.vtp-breadcrumb-item:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -262px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  content: "";
  display: inline-block;
  position: relative;
  left: 8px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-link.next:after, .next.vtp-breadcrumb-item:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-link.next:hover:after, .next.vtp-breadcrumb-item:hover:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -316px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-link.next:hover:after, .next.vtp-breadcrumb-item:hover:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-links.padded li + li, .vtp-footer .padded.footer-links li + li {
  margin-top: 10px;
}
.vtp-links a, .vtp-footer .footer-links a {
  -webkit-transition: color 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 400ms cubic-bezier(0.19, 1, 0.22, 1) !important;
}
.vtp-links a:hover, .vtp-footer .footer-links a:hover {
  color: #c03;
  cursor: pointer;
}
.vtp-links a.vtp-link-active, .vtp-footer .footer-links a.vtp-link-active {
  color: #c03;
}
.vtp-links a.basic, .vtp-footer .footer-links a.basic {
  position: relative;
  display: inline-block;
  padding-left: 16px;
  text-decoration: none;
}
.vtp-links a.basic:before, .vtp-footer .footer-links a.basic:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -316px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 6px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-links a.basic:before, .vtp-footer .footer-links a.basic:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-links a.bold, .vtp-footer .footer-links a.bold {
  font-weight: 700;
}
.vtp-links.basic a, .vtp-footer .basic.footer-links a {
  position: relative;
  display: inline-block;
  padding-left: 16px;
  text-decoration: none;
}
.vtp-links.basic a:before, .vtp-footer .basic.footer-links a:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -316px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 6px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-links.basic a:before, .vtp-footer .basic.footer-links a:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-links.bold a, .vtp-footer .bold.footer-links a {
  font-weight: 700;
}

.vtp-links-campaign {
  display: inline-block;
  font-weight: 700;
  padding: 5px 0 0 0;
  text-decoration: none;
}
.vtp-links-campaign .icon {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -316px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 0 0 4px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-links-campaign .icon {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media print {
  .vtp-links-campaign .icon {
    display: none;
  }
}

@media print {
  a {
    text-decoration: none !important;
  }
}

.vtp-md-mediagallery-media-list {
  position: relative;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
  will-change: opacity;
  /* for maximize function -> vtp-md-mediagallery-media-list-detail need to be set dynamicaly*/
  /* for overview function -> vtp-md-mediagallery-media-list-overview need to be set dynamicaly*/
}
.vtp-md-mediagallery-media-list .vtp-mediagallery-icon-bar {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 4;
}
.vtp-md-mediagallery-media-list .vtp-mediagallery-categories {
  background-color: #000;
  margin: 17px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.vtp-md-mediagallery-media-list .vtp-mediagallery-categories .vtp-mediagallery-category-list {
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
}
.vtp-md-mediagallery-media-list .vtp-mediagallery-categories .vtp-mediagallery-category-list ul {
  overflow: hidden;
  margin: 0;
  padding-bottom: 0;
}
.vtp-md-mediagallery-media-list .vtp-mediagallery-categories .vtp-mediagallery-category-list ul li {
  position: relative;
  display: inline-block;
  float: left;
  margin: 0 0 0 30px;
  color: #b0b6b8;
  line-height: 1.8rem;
  cursor: pointer;
}
.vtp-md-mediagallery-media-list .vtp-mediagallery-categories .vtp-mediagallery-category-list ul li:first-child {
  margin-right: 30px;
  margin-left: 0;
}
.vtp-md-mediagallery-media-list .vtp-mediagallery-categories .vtp-mediagallery-category-list ul li.vtp-active {
  color: #fff;
}
.vtp-md-mediagallery-media-list .vtp-mediagallery-categories .vtp-mediagallery-category-list ul li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
}
.vtp-md-mediagallery-media-list .vtp-mediagallery-categories .vtp-mediagallery-category-list ul .vtp-mediagallery-categories-overview {
  padding-left: 30px;
  background: url(../images/overview.png) center left no-repeat;
}
.vtp-md-mediagallery-media-list .vtp-mediagallery-categories .vtp-mediagallery-category-list ul .vtp-mediagallery-categories-overview::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -30px;
  width: 1px;
  height: 17px;
  background-color: #b0b6b8;
}
@media only screen and (max-width: 800px) {
  .vtp-md-mediagallery-media-list .vtp-mediagallery-categories .vtp-mediagallery-category-list {
    display: none;
  }
}
.vtp-md-mediagallery-media-list .vtp-mediagallery-categories #vtp-mediagallery-category-list-select {
  border-radius: 0;
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font: 12px/15px Verdana, sans-serif;
  height: 42px;
  padding: 12px 18px 12px 14px;
  line-height: 19px;
  background-position: 95% center;
  background-repeat: no-repeat;
  background-color: #000;
  text-indent: 0.01px;
  text-overflow: "…";
  appearance: none;
  width: 100%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-image: url(../images/arrow_down.png);
}
@media only screen and (max-width: 800px) {
  .vtp-md-mediagallery-media-list .vtp-mediagallery-categories #vtp-mediagallery-category-list-select {
    display: block;
  }
}
.vtp-md-mediagallery-media-list .vtp-mediagallery-categories #vtp-mediagallery-category-list-select::-ms-expand {
  display: none;
}
.vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-detail {
  width: 100%;
  -webkit-transition: width 250ms ease-in-out;
  -o-transition: width 250ms ease-in-out;
  transition: width 250ms ease-in-out;
  will-change: width;
}
.vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-detail .vtp-mediagallery-stage .vtp-mediagallery-detail-slide {
  height: 100% !important;
}
.vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-detail .vtp-mediagallery-stage .vtp-mediagallery-detail-slide .vtp-md-mediagallery-media-list-detail {
  height: 100%;
}
.vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-detail .vtp-mediagallery-stage .vtp-mediagallery-detail-slide .vtp-video-wrapper .inner {
  height: 100%;
}
.vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-detail .vtp-mediagallery-stage .vtp-mediagallery-detail-slide .vtp-video-wrapper .vtp-youtube {
  height: inherit;
  width: 100%;
}
.vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-detail .vtp-mediagallery-stage .vtp-mediagallery-detail-slide .vtp-video-wrapper .vtp-video {
  height: 100% !important;
}
.vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-detail .vtp-mediagallery-stage .vtp-videoplayer {
  height: 100%;
}
.vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-detail .vtp-mediagallery-stage .vtp-videoplayer video.vtp-video {
  height: 100%;
}
.vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-detail .vtp-mediagallery-thumbs {
  max-height: 0;
}
.vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-detail .vtp-mediagallery-thumbs .vtp-mediagallery-show-thumbs {
  background-image: url(../images/minus.png);
}
.vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-overview .vtp-mediagallery-stage {
  display: none;
}
.vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-overview .vtp-mediagallery-thumbs {
  position: relative;
  height: 100%;
  max-height: 100%;
  width: 100%;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-overview .vtp-mediagallery-thumbs .vtp-mediagallery-thumbs-description {
  display: none;
}
.vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-overview .vtp-mediagallery-thumbs-slider-wrap {
  height: 100%;
  padding-top: 90px;
  padding-bottom: 74px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 568px) {
  .vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-overview .vtp-mediagallery-thumbs-slider-wrap {
    display: block;
  }
}
.vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-overview .vtp-mediagallery-thumbs-slider-wrap .vtp-mediagallery-thumbs-slider {
  height: 100%;
  width: 100%;
  margin: 0;
  overflow: auto;
  padding-right: 16px;
}
.vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-overview .vtp-mediagallery-thumbs-slider-wrap .vtp-mediagallery-thumbs-slider .vtp-mediagallery-images {
  position: relative;
  height: auto;
  width: 100%;
  padding: 0 15px;
  overflow-y: hidden;
  overflow-x: hidden;
  white-space: normal;
  margin-left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  margin-left: 0 !important;
}
.vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-overview .vtp-mediagallery-thumbs-slider-wrap .vtp-mediagallery-thumbs-slider .vtp-mediagallery-images .vtp-mediagallery-item {
  height: auto;
  width: 25%;
  margin-left: 0;
  padding: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: -4px;
  padding-bottom: 0;
}
.vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-overview .vtp-mediagallery-thumbs-slider-wrap .vtp-mediagallery-thumbs-slider .vtp-mediagallery-images .vtp-mediagallery-item .vtp-mediagallery-image {
  width: 100%;
  height: 0;
  border: none;
  background-size: cover;
}
@media only screen and (max-width: 800px) {
  .vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-overview .vtp-mediagallery-thumbs-slider-wrap .vtp-mediagallery-thumbs-slider .vtp-mediagallery-images .vtp-mediagallery-item {
    width: 33.3%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-overview .vtp-mediagallery-thumbs-slider-wrap .vtp-mediagallery-thumbs-slider .vtp-mediagallery-images .vtp-mediagallery-item {
    width: 50%;
  }
}
.vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-overview .vtp-mediagallery-categories {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 93%;
}

.vtp-mediagallery-stage {
  position: relative;
  height: 100%;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
  will-change: opacity;
}
.vtp-mediagallery-stage .vtp-mediagallery-detail {
  height: 100%;
}
.vtp-mediagallery-stage .vtp-mediagallery-detail .vtp-mediagallery-detail-slide {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: height 250ms ease-in-out;
  -o-transition: height 250ms ease-in-out;
  transition: height 250ms ease-in-out;
  will-change: height;
  text-align: center;
  font-size: 0;
}
.vtp-mediagallery-stage .vtp-mediagallery-detail .vtp-mediagallery-detail-slide[data-toggle=zoom] .vtp-mediagallery-detail-img {
  cursor: url("../images/zoom-icon-enlarge-cursor.png") 24 24, pointer !important;
  cursor: pointer;
}
@media only screen and (min-width: 1280px) {
  .vtp-mediagallery-stage .vtp-mediagallery-detail .vtp-mediagallery-detail-slide[data-toggle=zoom] .vtp-mediagallery-detail-img {
    max-width: 1500px;
    margin: 0 auto;
  }
}
.vtp-mediagallery-stage .vtp-mediagallery-detail .vtp-mediagallery-detail-slide .vtp-mediagallery-detail-img {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: background-image 250ms ease-in-out, visibility 250ms ease-in-out;
  -o-transition: background-image 250ms ease-in-out, visibility 250ms ease-in-out;
  transition: background-image 250ms ease-in-out, visibility 250ms ease-in-out;
  will-change: background-image, visibility;
  visibility: hidden;
}
.vtp-mediagallery-stage .vtp-mediagallery-detail .vtp-mediagallery-detail-slide .vtp-mediagallery-detail-img.isVisible {
  visibility: visible;
}
.vtp-mediagallery-stage .vtp-mediagallery-detail .vtp-mediagallery-detail-slide .vtp-mediagallery-browse {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 100;
  width: 100%;
  height: 1px;
  margin-top: -40px;
  -webkit-transition: top 250ms ease-in-out;
  -o-transition: top 250ms ease-in-out;
  transition: top 250ms ease-in-out;
  will-change: top;
}
.vtp-mediagallery-stage .vtp-mediagallery-detail .vtp-mediagallery-detail-slide .vtp-mediagallery-browse ul {
  padding: 0;
  margin: 0;
  height: 100%;
}
.vtp-mediagallery-stage .vtp-mediagallery-detail .vtp-mediagallery-detail-slide .vtp-mediagallery-browse ul li {
  list-style-type: none;
  margin: 0;
  top: 20px;
}
.vtp-mediagallery-stage .vtp-mediagallery-detail .vtp-mediagallery-detail-slide .vtp-mediagallery-browse ul li:hover {
  cursor: pointer;
}
.vtp-mediagallery-stage .vtp-mediagallery-detail .vtp-mediagallery-detail-slide .vtp-mediagallery-browse ul .btn-prev {
  display: inline-block;
  left: 30px;
}
@media only screen and (max-width: 660px) {
  .vtp-mediagallery-stage .vtp-mediagallery-detail .vtp-mediagallery-detail-slide .vtp-mediagallery-browse ul .btn-prev {
    left: 5px;
  }
}
.vtp-mediagallery-stage .vtp-mediagallery-detail .vtp-mediagallery-detail-slide .vtp-mediagallery-browse ul .btn-next {
  right: 30px;
}
@media only screen and (max-width: 660px) {
  .vtp-mediagallery-stage .vtp-mediagallery-detail .vtp-mediagallery-detail-slide .vtp-mediagallery-browse ul .btn-next {
    right: 5px;
  }
}
.vtp-mediagallery-stage .vtp-mediagallery-detail .vtp-video-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 250ms ease-in-out, visibility 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out, visibility 250ms ease-in-out;
  transition: opacity 250ms ease-in-out, visibility 250ms ease-in-out;
  will-change: opacity, visibility;
  visibility: hidden;
}
.vtp-mediagallery-stage .vtp-mediagallery-detail .vtp-video-wrapper.isVisible {
  visibility: visible;
}
.vtp-mediagallery-stage .vtp-mediagallery-detail .vtp-video-wrapper .vtp-youtube {
  -webkit-transition: height 250ms ease-in-out;
  -o-transition: height 250ms ease-in-out;
  transition: height 250ms ease-in-out;
  will-change: height;
  height: 300px;
  /*must be set dynamically*/
  width: 532px;
  /*must be set dynamically*/
}
.vtp-mediagallery-stage .vtp-counter {
  position: absolute;
  top: 25px;
  left: 35px;
  max-height: 40px;
  color: #fff;
  -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.15);
  background-color: #000;
  padding: 4px 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.vtp-mediagallery-stage .vtp-counter span {
  position: relative;
  color: #fff;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  padding-right: 5px;
}
.vtp-mediagallery-stage .vtp-counter span.vtp-carousel-indicator-current-index:after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 1px;
  height: 17px;
  background-color: #d0d3d4;
}
.vtp-mediagallery-stage .vtp-counter span.vtp-carousel-indicator-length {
  padding-right: 0;
  padding-left: 5px;
  color: #d0d3d4;
}

.vtp-mediagallery-thumbs {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  max-height: 500px;
  z-index: 3;
  opacity: 0;
  -webkit-transition: max-height 250ms ease-in-out, opacity 250ms ease-in-out;
  -o-transition: max-height 250ms ease-in-out, opacity 250ms ease-in-out;
  transition: max-height 250ms ease-in-out, opacity 250ms ease-in-out;
  will-change: max-height, opacity;
}
.vtp-mediagallery-thumbs .vtp-mediagallery-show-thumbs {
  display: block;
  position: absolute;
  right: 35px;
  top: -50px;
  width: 30px;
  height: 30px;
  -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.15);
  background: url(../images/plus.png) center center no-repeat #000;
  cursor: pointer;
}
.vtp-mediagallery-thumbs .vtp-mediagallery-show-thumbs:hover {
  background-color: #434c53;
}
.vtp-mediagallery-thumbs .vtp-mediagallery-show-thumbs-inner {
  height: 100%;
}
.vtp-mediagallery-thumbs .vtp-mediagallery-show-thumbs-inner .vtp-mediagallery-thumbs-description {
  margin: 15px 20px 13px;
}
.vtp-mediagallery-thumbs .vtp-mediagallery-show-thumbs-inner .vtp-mediagallery-thumbs-description p {
  -webkit-transition: opacity 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
  will-change: opacity;
  color: #fff;
  opacity: 0;
}
.vtp-mediagallery-thumbs .vtp-mediagallery-thumbs-slider-wrap {
  overflow: hidden;
  height: 94px;
}
@media only screen and (max-width: 568px) {
  .vtp-mediagallery-thumbs .vtp-mediagallery-thumbs-slider-wrap {
    display: none;
  }
}
.vtp-mediagallery-thumbs .vtp-mediagallery-thumbs-slider-wrap .vtp-mediagallery-thumbs-slider {
  position: relative;
  height: 100%;
  margin: 0 20px;
}
.vtp-mediagallery-thumbs .vtp-mediagallery-thumbs-slider-wrap .vtp-mediagallery-images {
  position: absolute;
  top: 20px;
  left: 0;
  display: block;
  margin: 0;
  padding: 0;
  overflow-y: hidden;
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-transition: margin-left 250ms ease-in-out;
  -o-transition: margin-left 250ms ease-in-out;
  transition: margin-left 250ms ease-in-out;
  will-change: margin-left;
}
.vtp-mediagallery-thumbs .vtp-mediagallery-thumbs-slider-wrap .vtp-mediagallery-images .vtp-mediagallery-item {
  position: relative;
  display: none;
  margin-left: 10px;
  cursor: pointer;
  overflow: hidden;
  height: 100%;
}
.vtp-mediagallery-thumbs .vtp-mediagallery-thumbs-slider-wrap .vtp-mediagallery-images .vtp-mediagallery-item:first-child {
  margin-left: 0;
}
.vtp-mediagallery-thumbs .vtp-mediagallery-thumbs-slider-wrap .vtp-mediagallery-images .vtp-mediagallery-item a {
  position: relative;
  display: inline;
  z-index: 0;
}
.vtp-mediagallery-thumbs .vtp-mediagallery-thumbs-slider-wrap .vtp-mediagallery-images .vtp-mediagallery-item.vtp-selected {
  display: inline-block;
}
.vtp-mediagallery-thumbs .vtp-mediagallery-thumbs-slider-wrap .vtp-mediagallery-images .vtp-mediagallery-item.vtp-mediagallery-item-video::after {
  content: "";
  font-size: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  width: 1em;
  height: 1em;
  -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.15);
  background: url(../images/play.png) center center no-repeat #000;
}
.vtp-mediagallery-thumbs .vtp-mediagallery-thumbs-slider-wrap .vtp-mediagallery-images .vtp-mediagallery-item.vtp-mediagallery-item-video:hover::after {
  background-color: #434c53;
}
.vtp-mediagallery-thumbs .vtp-mediagallery-thumbs-slider-wrap .vtp-mediagallery-images .vtp-mediagallery-item .vtp-mediagallery-image {
  position: relative;
  display: inline-block;
  z-index: -1;
  height: 74px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border: 1px solid #434c53;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.vtp-mediagallery-thumbs .vtp-mediagallery-thumbs-slider-wrap .vtp-mediagallery-images .vtp-mediagallery-item.vtp-active .vtp-mediagallery-image, .vtp-mediagallery-thumbs .vtp-mediagallery-thumbs-slider-wrap .vtp-mediagallery-images .vtp-mediagallery-item:hover .vtp-mediagallery-image {
  border-color: #fff;
}
.vtp-mediagallery-thumbs.vtp-image-ratio_16x9 .vtp-mediagallery-images .vtp-mediagallery-item .vtp-mediagallery-image {
  width: 131px;
  padding-bottom: 56.25%;
}
.vtp-mediagallery-thumbs.vtp-image-ratio_4x3 .vtp-mediagallery-images .vtp-mediagallery-item .vtp-mediagallery-image {
  width: 98px;
  padding-bottom: 73%;
}
.vtp-mediagallery-thumbs.vtp-image-ratio_3x2 .vtp-mediagallery-images .vtp-mediagallery-item .vtp-mediagallery-image {
  width: 109px;
  padding-bottom: 66%;
}

/* enable opacity by open the modal overlay */
.vtp-modal.gallery.active {
  height: 100%;
  -webkit-transition: max-width 250ms ease-in-out;
  -o-transition: max-width 250ms ease-in-out;
  transition: max-width 250ms ease-in-out;
  will-change: max-width;
  padding-top: 0;
}
@media only screen and (max-width: 800px) {
  .vtp-modal.gallery.active {
    max-width: 100%;
  }
}
.vtp-modal.gallery.active .vtp-close-btn {
  top: 25px;
  right: 30px;
  text-indent: 500px;
  font-size: 0;
}
@media only screen and (max-width: 660px) {
  .vtp-modal.gallery.active .vtp-close-btn {
    top: 20px;
    right: 30px;
    left: inherit;
  }
}
.vtp-modal.gallery.active .vtp-download-btn {
  top: 25px;
  right: 80px;
  text-indent: 500px;
  font-size: 0;
  position: absolute;
  z-index: 2000;
}
@media only screen and (max-width: 660px) {
  .vtp-modal.gallery.active .vtp-download-btn {
    top: 20px;
    right: 75px;
  }
}
.vtp-modal.gallery.active.galleryfullscreen {
  max-width: 100%;
}
.vtp-modal.gallery.active .vtp-md-mediagallery-media-list {
  opacity: 1;
}
.vtp-modal.gallery.active .vtp-md-mediagallery-media-list .vtp-mediagallery-stage {
  opacity: 1;
}
.vtp-modal.gallery.active .vtp-md-mediagallery-media-list .vtp-mediagallery-detail-slide {
  opacity: 1;
}
.vtp-modal.gallery.active .vtp-md-mediagallery-media-list .vtp-mediagallery-thumbs {
  opacity: 1;
}
.vtp-modal.gallery.active .vtp-md-mediagallery-media-list .vtp-md-mediagallery-media-list {
  opacity: 1;
}
.vtp-modal.gallery.active .vtp-md-mediagallery-media-list .vtp-mediagallery-thumbs-description p {
  opacity: 1;
}

html.isZoomed .vtp-gallery .vtp-slide-zoomButton,
html.isZoomed .vtp-gallery .btn-next,
html.isZoomed .vtp-gallery .btn-prev,
html.isZoomed .vtp-gallery .vtp-mediagallery-show-thumbs,
html.isZoomed .vtp-gallery .vtp-counter {
  -webkit-transition: opacity 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
  opacity: 0;
  will-change: opacity;
}
html.isZoomed .vtp-close-btn,
html.isZoomed .vtp-download-btn {
  -webkit-transition: opacity 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
  opacity: 0;
  will-change: opacity;
}

/* For Zoom Functionality */
html.desktop #vtp-zoom .zoomContainer .vtp-slide-zoomOutButton {
  top: 25px;
  right: 30px !important;
}
@media only screen and (min-width: 1680px) {
  html.desktop #vtp-zoom .zoomContainer .vtp-slide-zoomOutButton {
    display: none;
  }
}
html.desktop .vtp-mediagallery-stage .vtp-slide-zoomButton {
  top: 25px !important;
  right: 130px !important;
}
@media only screen and (max-width: 660px) {
  html.desktop .vtp-mediagallery-stage .vtp-slide-zoomButton {
    top: 20px !important;
    right: 120px !important;
  }
}

/* For IE9 */
html.ie9 .vtp-mediagallery-detail .vtp-mediagallery-detail-slide[data-toggle=zoom] .vtp-mediagallery-detail-img {
  cursor: none;
}
html.ie9 .vtp-slide-zoomButton {
  display: none;
}

/* For mobile + landscape view */
html.mobile.landscape .vtp-md-mediagallery-media-list .vtp-mediagallery-stage .vtp-mediagallery-detail .btn-prev {
  left: 140px;
}
html.mobile.landscape .vtp-md-mediagallery-media-list .vtp-mediagallery-stage .vtp-mediagallery-detail .btn-next {
  right: 140px;
}
html.mobile.landscape .vtp-md-mediagallery-media-list .vtp-mediagallery-thumbs .vtp-mediagallery-show-thumbs {
  top: -20px;
}
html.mobile.landscape .vtp-md-mediagallery-media-list.vtp-md-mediagallery-media-list-detail .vtp-mediagallery-show-thumbs {
  top: -50px;
}
html.ipad .vtp-mediacontrols .vtp-controls, html.mobile.landscape .vtp-mediacontrols .vtp-controls {
  opacity: 1;
}
html.ipad #vtp-zoom .zoomContainer .vtp-slide-zoomOutButton, html.mobile.landscape #vtp-zoom .zoomContainer .vtp-slide-zoomOutButton {
  top: 25px;
  right: 30px !important;
}
@media only screen and (min-width: 1680px) {
  html.ipad #vtp-zoom .zoomContainer .vtp-slide-zoomOutButton, html.mobile.landscape #vtp-zoom .zoomContainer .vtp-slide-zoomOutButton {
    display: none;
  }
}
html.ipad .vtp-mediagallery-stage .vtp-slide-zoomButton, html.mobile.landscape .vtp-mediagallery-stage .vtp-slide-zoomButton {
  top: 25px !important;
  right: 130px !important;
}
@media only screen and (max-width: 660px) {
  html.ipad .vtp-mediagallery-stage .vtp-slide-zoomButton, html.mobile.landscape .vtp-mediagallery-stage .vtp-slide-zoomButton {
    top: 20px !important;
    right: 120px !important;
  }
}
html.ipad.landscape .vtp-modal.gallery.active, html.mobile.landscape.landscape .vtp-modal.gallery.active {
  max-width: 100%;
}

.vtp-stage-gallery {
  position: relative;
  background-color: #d0d3d4;
  /**
   *  Stage Gallery Slides Image ratios
   *  H / (W / 100) = C%
   */
}
@media print {
  .vtp-stage-gallery {
    background-color: transparent;
    margin-left: 4%;
    margin-right: 4%;
  }
  .vtp-stage-gallery .vtp-videoplayer {
    display: none;
  }
  .vtp-stage-gallery div.available {
    background-color: transparent;
    text-align: right;
  }
}
.vtp-stage-gallery.vtp-image-ratio_4x3, .vtp-stage-gallery.vtp-image-ratio_3x2, .vtp-stage-gallery.vtp-image-ratio_16x9, .vtp-stage-gallery.vtp-image-ratio_2_135x1 {
  padding-bottom: 0;
}
@media only screen and (max-width: 568px) {
  .vtp-stage-gallery.vtp-image-ratio_4x3, .vtp-stage-gallery.vtp-image-ratio_3x2, .vtp-stage-gallery.vtp-image-ratio_16x9, .vtp-stage-gallery.vtp-image-ratio_2_135x1 {
    padding-bottom: 0 !important;
  }
}
.vtp-stage-gallery.vtp-image-ratio_4x3 .vtp-stage-gallery-slides {
  padding-bottom: 37.5%;
}
@media only screen and (max-width: 568px) {
  .vtp-stage-gallery.vtp-image-ratio_4x3 .vtp-stage-gallery-slides {
    padding-bottom: 75% !important;
  }
}
.vtp-stage-gallery.vtp-image-ratio_3x2 .vtp-stage-gallery-slides {
  padding-bottom: 33.333%;
}
@media only screen and (max-width: 568px) {
  .vtp-stage-gallery.vtp-image-ratio_3x2 .vtp-stage-gallery-slides {
    padding-bottom: 66.666% !important;
  }
}
.vtp-stage-gallery.vtp-image-ratio_16x9 .vtp-stage-gallery-slides {
  padding-bottom: 28%;
}
@media only screen and (max-width: 568px) {
  .vtp-stage-gallery.vtp-image-ratio_16x9 .vtp-stage-gallery-slides {
    padding-bottom: 56% !important;
  }
}
.vtp-stage-gallery.vtp-image-ratio_2_135x1 .vtp-stage-gallery-slides {
  padding-bottom: 31.25%;
}
@media only screen and (max-width: 568px) {
  .vtp-stage-gallery.vtp-image-ratio_2_135x1 .vtp-stage-gallery-slides {
    padding-bottom: 46.84%;
  }
}
.vtp-stage-gallery .vtp-stage-gallery-slides {
  position: relative;
  height: 0;
  padding-bottom: 31.25%;
  overflow: hidden;
}
@media only screen and (max-width: 568px) {
  .vtp-stage-gallery .vtp-stage-gallery-slides {
    padding-bottom: 46.84%;
  }
}
.vtp-stage-gallery .available {
  background-color: #e7e9ea;
  font-family: Verdana, sans-serif;
  left: 0;
  line-height: 1rem;
  padding: 8px 4px;
  text-align: center;
  width: 100%;
}
.vtp-stage-gallery .available a {
  font-family: Verdana, sans-serif;
  font-size: 7px !important;
}
.vtp-stage-gallery .vtp-stage-gallery-button, .vtp-stage-gallery .vtp-stage-uk_360-button {
  display: block;
  position: absolute;
  width: 50px;
  bottom: 0;
  left: 0;
  color: #fff;
  background: #000;
  font-size: 12px;
  font-size: 1rem;
  text-align: center;
  line-height: 50px;
}
@media print {
  .vtp-stage-gallery .vtp-stage-gallery-button, .vtp-stage-gallery .vtp-stage-uk_360-button {
    display: none;
  }
}
.vtp-stage-gallery .vtp-stage-gallery-button i, .vtp-stage-gallery .vtp-stage-uk_360-button i {
  top: 47%;
  left: 53%;
}
.vtp-stage-gallery .vtp-stage-gallery-button:hover, .vtp-stage-gallery .vtp-stage-uk_360-button:hover {
  background-color: #434c53;
}
@media only screen and (max-width: 644px) {
  .vtp-stage-gallery .vtp-stage-gallery-button, .vtp-stage-gallery .vtp-stage-uk_360-button {
    width: 40px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-stage-gallery .vtp-stage-gallery-button, .vtp-stage-gallery .vtp-stage-uk_360-button {
    display: none;
  }
}
.vtp-stage-gallery .vtp-stage-uk_360-button {
  left: 60px;
}
.vtp-stage-gallery .vtp-stage-uk_360-button i {
  top: 50%;
  left: 50%;
}
@media only screen and (max-width: 568px) {
  .vtp-stage-gallery .vtp-stage-uk_360-button {
    display: block;
    width: 35px;
    height: 35px;
    left: 82px;
  }
}
.vtp-stage-gallery .image-quality-container {
  display: none;
  position: absolute;
  width: 50px;
  height: 150px;
  left: 0;
  bottom: 50px;
}
@media only screen and (max-width: 644px) {
  .vtp-stage-gallery .image-quality-container {
    width: 40px;
    bottom: 10px;
  }
}
.vtp-stage-gallery .image-quality-container .vtp-stage-gallery-button, .vtp-stage-gallery .image-quality-container .vtp-stage-uk_360-button {
  position: relative;
  display: block;
  bottom: auto;
  top: auto;
  left: auto;
  right: auto;
}
@media only screen and (max-width: 568px) {
  .vtp-stage-gallery .vtp-stage-gallery-item {
    float: left;
    clear: none;
    width: 99.8%;
    margin-left: 0;
    margin-right: 0;
    display: block !important;
    height: auto;
    max-width: none !important;
  }
  .vtp-stage-gallery .vtp-stage-gallery-item a {
    pointer-events: none !important;
    cursor: default;
  }
}
.vtp-stage-gallery .vtp-stage-gallery-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
}
.vtp-stage-gallery .vtp-stage-gallery-item {
  position: relative;
  height: 100%;
  width: auto;
  font-size: 0;
  overflow: hidden;
}
.vtp-stage-gallery .vtp-stage-gallery-item.active {
  overflow: visible;
}
.vtp-stage-gallery .vtp-stage-gallery-item + a {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}
.vtp-stage-gallery .vtp-stage-gallery-item .picture {
  display: inline-block;
  height: 100%;
  max-width: 100%;
  text-align: center;
}
.vtp-stage-gallery .vtp-stage-gallery-item .picture img {
  width: auto;
  height: 100%;
  max-height: 100%;
}
@-moz-document url-prefix() {
  .vtp-stage-gallery .vtp-stage-gallery-item .picture {
    height: auto;
    width: 100%;
  }
}
.vtp-stage-gallery .vtp-stage-gallery-item img {
  width: 100%;
  max-width: 100%;
}
.vtp-stage-gallery .vtp-stage-gallery-item:only-child img {
  width: auto;
  max-height: 100%;
}
.vtp-stage-gallery .vtp-stage-gallery-item .vtp-videoplayer {
  max-height: 100%;
}
@media only screen and (max-width: 568px) {
  .vtp-stage-gallery .vtp-stage-gallery-item .picture {
    top: auto;
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    text-align: center;
    position: relative;
    height: 100%;
  }
}
.vtp-stage-gallery.render {
  background-color: #fff;
  /**
   * Stage Images: 2
   */
}
@media only screen and (max-width: 568px) {
  .vtp-stage-gallery.render .vtp-stage-gallery-item .picture {
    width: 100%;
  }
}
.vtp-stage-gallery.render .vtp-stage-gallery-item:nth-of-type(1) {
  float: left;
  clear: none;
  width: 66.5333333333%;
  margin-left: 0;
  margin-right: 0;
  left: -2px;
}
.vtp-stage-gallery.render .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.render .vtp-stage-gallery-item:nth-of-type(3) {
  float: left;
  clear: none;
  width: 33.2666666667%;
  margin-left: 0;
  margin-right: 0;
  height: 50%;
  left: 2px;
  top: -2px;
}
@media only screen and (max-width: 568px) {
  .vtp-stage-gallery.render .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.render .vtp-stage-gallery-item:nth-of-type(3) {
    height: 100%;
  }
}
.vtp-stage-gallery.render .vtp-stage-gallery-item:nth-of-type(3) {
  top: 2px;
}
.vtp-stage-gallery.render .vtp-stage-gallery-item:nth-of-type(n+4) {
  display: none;
}
.vtp-stage-gallery.render.slides-1 .vtp-stage-gallery-content, .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-content {
  text-align: center;
}
.vtp-stage-gallery.render.slides-1 .vtp-stage-gallery-item, .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item {
  float: none;
}
.vtp-stage-gallery.render.slides-1 .vtp-stage-gallery-item:nth-of-type(1), .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item:nth-of-type(1) {
  width: auto;
  display: inline-block;
  left: -2px;
}
.vtp-stage-gallery.render.slides-1 .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item:nth-of-type(2) {
  left: 2px;
}
.vtp-stage-gallery.render.slides-1 .vtp-stage-gallery-item:nth-of-type(n+2), .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item:nth-of-type(n+2) {
  display: none;
}
.vtp-stage-gallery.render.slides-1 .vtp-stage-gallery-item .picture, .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item .picture {
  display: inline-block;
}
.vtp-stage-gallery.render.slides-1 .vtp-stage-gallery-item img, .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item img {
  width: auto;
  max-height: 100%;
}
.vtp-stage-gallery.render.slides-1 .vtp-stage-gallery-item .vtp-youtube img, .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item .vtp-youtube img {
  width: 100%;
}
@media only screen and (max-width: 568px) {
  .vtp-stage-gallery.render.slides-1 .vtp-stage-gallery-item, .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item {
    float: left;
  }
}
.vtp-stage-gallery.custom .vtp-stage-gallery-content {
  height: 100%;
  overflow: hidden;
}
.vtp-stage-gallery.custom .vtp-stage-gallery-item {
  float: left;
  height: 100%;
  position: relative;
  display: block;
}
.vtp-stage-gallery.custom .vtp-stage-gallery-item .picture {
  height: 100%;
}
@media only screen and (max-width: 568px) {
  .vtp-stage-gallery.custom .vtp-stage-gallery-item .picture {
    text-align: center;
    display: block;
  }
}
.vtp-stage-gallery.custom .vtp-stage-gallery-item img {
  display: inline;
  width: auto;
  height: auto;
  max-width: 100%;
}
.gt-ie8 .vtp-stage-gallery.custom .vtp-stage-gallery-item img {
  position: absolute;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.lt-ie9 .vtp-stage-gallery.custom .vtp-stage-gallery-item img {
  text-align: center;
}
@media only screen and (max-width: 568px) {
  .vtp-stage-gallery.custom .vtp-stage-gallery-item img {
    display: block;
    max-height: 100%;
  }
}
.vtp-stage-gallery.custom .vtp-stage-gallery-item:nth-of-type(1) {
  display: block;
  width: 50%;
  max-width: 50%;
}
.vtp-stage-gallery.custom .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.custom .vtp-stage-gallery-item:nth-of-type(3), .vtp-stage-gallery.custom .vtp-stage-gallery-item:nth-of-type(4), .vtp-stage-gallery.custom .vtp-stage-gallery-item:nth-of-type(5) {
  float: left;
  clear: none;
  width: 24.95%;
  margin-left: 0;
  margin-right: 0;
  height: 50%;
  max-width: 25%;
}
@media only screen and (max-width: 568px) {
  .vtp-stage-gallery.custom .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.custom .vtp-stage-gallery-item:nth-of-type(3), .vtp-stage-gallery.custom .vtp-stage-gallery-item:nth-of-type(4), .vtp-stage-gallery.custom .vtp-stage-gallery-item:nth-of-type(5) {
    height: 100%;
  }
}
.vtp-stage-gallery.custom .vtp-stage-gallery-item:nth-of-type(n+6) {
  display: none;
}
.vtp-stage-gallery.custom.slides-1 .vtp-stage-gallery-item {
  max-width: 70%;
  float: none;
}
.vtp-stage-gallery.custom.slides-1 .vtp-stage-gallery-item:nth-of-type(1).vtp-video-item {
  width: 67%;
  max-width: 100%;
}
.vtp-stage-gallery.custom.slides-1 .vtp-stage-gallery-item:nth-of-type(1).vtp-video-item .vtp-youtube img {
  width: 100%;
}
.vtp-stage-gallery.custom.slides-1 .vtp-stage-gallery-item:nth-of-type(n+2) {
  display: none;
}
.vtp-stage-gallery.custom.slides-1 .vtp-stage-gallery-item:first-child {
  display: inline-block;
}
.vtp-stage-gallery.custom.slides-1 .vtp-stage-gallery-item img {
  max-height: 100%;
}
.vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-slides, .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-slides, .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-slides {
  overflow: hidden;
}
.vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item, .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-item, .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-item {
  height: 100%;
}
.vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(n+3), .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-item:nth-of-type(n+3), .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-item:nth-of-type(n+3) {
  display: none;
}
.vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(1), .vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-item:nth-of-type(1), .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-item:nth-of-type(1), .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-item:nth-of-type(2) {
  float: left;
  clear: none;
  width: 49.9%;
  margin-left: 0;
  margin-right: 0;
  max-width: 50%;
}
.vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(1) img, .vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(2) img, .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-item:nth-of-type(1) img, .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-item:nth-of-type(2) img, .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-item:nth-of-type(1) img, .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-item:nth-of-type(2) img {
  display: inline-block;
  width: auto;
  max-width: 100%;
}
.vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(1) .vtp-youtube img, .vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(2) .vtp-youtube img, .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-item:nth-of-type(1) .vtp-youtube img, .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-item:nth-of-type(2) .vtp-youtube img, .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-item:nth-of-type(1) .vtp-youtube img, .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-item:nth-of-type(2) .vtp-youtube img {
  width: 100%;
}
@media only screen and (max-width: 568px) {
  .vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(1), .vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-item:nth-of-type(1), .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-item:nth-of-type(1), .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-item:nth-of-type(2) {
    float: left !important;
  }
  .vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(1) a, .vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(2) a, .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-item:nth-of-type(1) a, .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-item:nth-of-type(2) a, .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-item:nth-of-type(1) a, .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-item:nth-of-type(2) a {
    float: none !important;
  }
}
.vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-content, .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-content, .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-content {
  width: 100%;
}
.vtp-stage-gallery.render.slides-0, .vtp-stage-gallery.custom.slides-0 {
  background: #d0d3d4 url("../images/fallback/stage/stage_images_fallback.png") no-repeat center center;
  background-size: auto 100%;
}
.vtp-stage-gallery.render.slides-0 .vtp-stage-gallery-slides, .vtp-stage-gallery.custom.slides-0 .vtp-stage-gallery-slides {
  display: none;
}
@media only screen and (max-width: 568px) {
  .vtp-stage-gallery.render .vtp-stage-gallery-content, .vtp-stage-gallery.custom .vtp-stage-gallery-content {
    width: 100%;
    overflow: visible;
  }
  .vtp-stage-gallery.render.slides-1 .vtp-stage-gallery-item, .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item, .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item, .vtp-stage-gallery.render.slides-3 .vtp-stage-gallery-item, .vtp-stage-gallery.render.slides-4 .vtp-stage-gallery-item, .vtp-stage-gallery.render.slides-5 .vtp-stage-gallery-item, .vtp-stage-gallery.custom.slides-1 .vtp-stage-gallery-item, .vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item, .vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item, .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-item, .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-item, .vtp-stage-gallery.custom.slides-5 .vtp-stage-gallery-item {
    width: 100%;
  }
  .vtp-stage-gallery.render.slides-1 .vtp-stage-gallery-item:nth-of-type(1), .vtp-stage-gallery.render.slides-1 .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.render.slides-1 .vtp-stage-gallery-item:nth-of-type(3), .vtp-stage-gallery.render.slides-1 .vtp-stage-gallery-item:nth-of-type(4), .vtp-stage-gallery.render.slides-1 .vtp-stage-gallery-item:nth-of-type(5), .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item:nth-of-type(1), .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item:nth-of-type(3), .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item:nth-of-type(4), .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item:nth-of-type(5), .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item:nth-of-type(1), .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item:nth-of-type(3), .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item:nth-of-type(4), .vtp-stage-gallery.render.slides-2 .vtp-stage-gallery-item:nth-of-type(5), .vtp-stage-gallery.render.slides-3 .vtp-stage-gallery-item:nth-of-type(1), .vtp-stage-gallery.render.slides-3 .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.render.slides-3 .vtp-stage-gallery-item:nth-of-type(3), .vtp-stage-gallery.render.slides-3 .vtp-stage-gallery-item:nth-of-type(4), .vtp-stage-gallery.render.slides-3 .vtp-stage-gallery-item:nth-of-type(5), .vtp-stage-gallery.render.slides-4 .vtp-stage-gallery-item:nth-of-type(1), .vtp-stage-gallery.render.slides-4 .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.render.slides-4 .vtp-stage-gallery-item:nth-of-type(3), .vtp-stage-gallery.render.slides-4 .vtp-stage-gallery-item:nth-of-type(4), .vtp-stage-gallery.render.slides-4 .vtp-stage-gallery-item:nth-of-type(5), .vtp-stage-gallery.render.slides-5 .vtp-stage-gallery-item:nth-of-type(1), .vtp-stage-gallery.render.slides-5 .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.render.slides-5 .vtp-stage-gallery-item:nth-of-type(3), .vtp-stage-gallery.render.slides-5 .vtp-stage-gallery-item:nth-of-type(4), .vtp-stage-gallery.render.slides-5 .vtp-stage-gallery-item:nth-of-type(5), .vtp-stage-gallery.custom.slides-1 .vtp-stage-gallery-item:nth-of-type(1), .vtp-stage-gallery.custom.slides-1 .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.custom.slides-1 .vtp-stage-gallery-item:nth-of-type(3), .vtp-stage-gallery.custom.slides-1 .vtp-stage-gallery-item:nth-of-type(4), .vtp-stage-gallery.custom.slides-1 .vtp-stage-gallery-item:nth-of-type(5), .vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(1), .vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(3), .vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(4), .vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(5), .vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(1), .vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(3), .vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(4), .vtp-stage-gallery.custom.slides-2 .vtp-stage-gallery-item:nth-of-type(5), .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-item:nth-of-type(1), .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-item:nth-of-type(3), .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-item:nth-of-type(4), .vtp-stage-gallery.custom.slides-3 .vtp-stage-gallery-item:nth-of-type(5), .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-item:nth-of-type(1), .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-item:nth-of-type(3), .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-item:nth-of-type(4), .vtp-stage-gallery.custom.slides-4 .vtp-stage-gallery-item:nth-of-type(5), .vtp-stage-gallery.custom.slides-5 .vtp-stage-gallery-item:nth-of-type(1), .vtp-stage-gallery.custom.slides-5 .vtp-stage-gallery-item:nth-of-type(2), .vtp-stage-gallery.custom.slides-5 .vtp-stage-gallery-item:nth-of-type(3), .vtp-stage-gallery.custom.slides-5 .vtp-stage-gallery-item:nth-of-type(4), .vtp-stage-gallery.custom.slides-5 .vtp-stage-gallery-item:nth-of-type(5) {
    width: 100%;
  }
}

.vtp-social-nav li {
  float: left;
  margin-right: 20px;
  max-height: 60px;
}
.vtp-social-nav li:last-child {
  margin-right: 0;
}
.vtp-social-nav .social-nav-item {
  background-color: #000;
  display: inline-block;
  width: 40px;
  height: 40px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.vtp-social-nav .social-nav-item.socialreader {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5285px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.socialreader {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.socialreader:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5235px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.socialreader:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.facebook {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -4585px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.facebook {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.facebook:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -4535px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.facebook:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.youtube {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5585px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.youtube {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.youtube:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5535px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.youtube:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.whatsapp {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5485px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.whatsapp {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.whatsapp:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5435px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.whatsapp:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.twitter {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5385px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.twitter {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.twitter:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5335px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.twitter:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.googleplus {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -4685px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.googleplus {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.googleplus:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -4635px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.googleplus:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.pinterest {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5085px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.pinterest {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.pinterest:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5035px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.pinterest:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.instagram {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -4785px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.instagram {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.instagram:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -4735px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.instagram:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.linkedin {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -4985px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.linkedin {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.linkedin:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -4935px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.linkedin:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.sendfriend {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5185px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.sendfriend {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.sendfriend:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5135px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.sendfriend:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.line {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -4885px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.line {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-social-nav .social-nav-item.line:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -4835px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-social-nav .social-nav-item.line:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.collapse {
  display: none;
}

@media only screen and (min-width: 768px) {
  .vtp-service-bar .vtp-service-bar-items.collapse {
    display: block;
  }
}

.collapse-toggle {
  padding-top: 19px;
  padding-top: 1.5833333333rem;
  font-size: 12px;
  font-size: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1.3333333333rem;
  background: #e7e9ea;
  border-bottom: 1px solid #cdd0d2;
  cursor: pointer;
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 4%;
  position: relative;
  left: 0;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
.collapse-toggle:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -172px;
  background-repeat: no-repeat;
  width: 12px;
  height: 8px;
  content: "";
  position: absolute;
  right: 4%;
  top: 50%;
  margin-top: -4px;
  display: block;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .collapse-toggle:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.collapse-toggle.active:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -226px;
  background-repeat: no-repeat;
  width: 12px;
  height: 8px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .collapse-toggle.active:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-accordion,
.vtp-mobile-accordion {
  width: 100%;
}
.vtp-accordion .collapse-toggle,
.vtp-mobile-accordion .collapse-toggle {
  margin-bottom: 24;
  margin-bottom: 2rem;
  font-size: 18px;
  font-size: 1.5rem;
  background: none;
  border-bottom: none;
  cursor: default;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  position: inherit;
  left: auto;
  top: auto;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  width: auto;
}
.vtp-accordion .collapse-toggle.ladder,
.vtp-mobile-accordion .collapse-toggle.ladder {
  border-bottom: none;
  margin-bottom: 0.5em;
}
.vtp-accordion .collapse-toggle:after,
.vtp-mobile-accordion .collapse-toggle:after {
  display: none;
}
@media only screen and (max-width: 767px) {
  .vtp-accordion,
  .vtp-mobile-accordion {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .vtp-accordion,
  .vtp-accordion > .container,
  .vtp-mobile-accordion,
  .vtp-mobile-accordion > .container {
    margin: 0;
    padding: 0;
    padding: 0;
  }
  .vtp-accordion.vtp-features,
  .vtp-mobile-accordion.vtp-features {
    border-top: 1px solid #cdd0d2;
  }
  .vtp-accordion h3.collapse-toggle,
  .vtp-mobile-accordion h3.collapse-toggle {
    margin-bottom: 0;
  }
  .vtp-accordion .collapse-toggle,
  .vtp-mobile-accordion .collapse-toggle {
    display: block;
    padding-top: 19px;
    padding-top: 1.5833333333rem;
    font-size: 12px;
    font-size: 1rem;
    padding-bottom: 16px;
    padding-bottom: 1.3333333333rem;
    background: #e7e9ea;
    border-bottom: 1px solid #cdd0d2;
    cursor: pointer;
    font-family: "AudiTypeExtBold", Verdana, sans-serif;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0;
    padding-left: 4%;
    position: relative;
    left: 0;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
  }
  .vtp-accordion .collapse-toggle:after,
  .vtp-mobile-accordion .collapse-toggle:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -172px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
    content: "";
    position: absolute;
    right: 4%;
    top: 50%;
    margin-top: -4px;
    display: block;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .vtp-accordion .collapse-toggle:after,
  .vtp-mobile-accordion .collapse-toggle:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .vtp-accordion .collapse-toggle.active:after,
  .vtp-mobile-accordion .collapse-toggle.active:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -226px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .vtp-accordion .collapse-toggle.active:after,
  .vtp-mobile-accordion .collapse-toggle.active:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .vtp-accordion .content,
  .vtp-mobile-accordion .content {
    display: none;
    width: 100%;
    padding: 20px 4%;
  }
  .vtp-accordion .content.active,
  .vtp-mobile-accordion .content.active {
    display: block;
  }
}

.vtp-accordion {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.vtp-accordion,
.vtp-accordion > .container {
  margin: 0;
  padding: 0;
  padding: 0;
}
.vtp-accordion.vtp-features {
  border-top: 1px solid #cdd0d2;
}
.vtp-accordion .collapse-toggle {
  display: block;
  padding-top: 19px;
  padding-top: 1.5833333333rem;
  font-size: 12px;
  font-size: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1.3333333333rem;
  background: #e7e9ea;
  border-bottom: 1px solid #cdd0d2;
  cursor: pointer;
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 4%;
  position: relative;
  left: 0;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
.vtp-accordion .collapse-toggle:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -172px;
  background-repeat: no-repeat;
  width: 12px;
  height: 8px;
  content: "";
  position: absolute;
  right: 4%;
  top: 50%;
  margin-top: -4px;
  display: block;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-accordion .collapse-toggle:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-accordion .collapse-toggle.active:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -226px;
  background-repeat: no-repeat;
  width: 12px;
  height: 8px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-accordion .collapse-toggle.active:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-accordion .content {
  display: none;
  width: 100%;
  padding: 20px 4%;
}
.vtp-accordion .content.active {
  display: block;
}

.nemo-accordion {
  margin-bottom: 5px;
  margin-bottom: 0.4166666667rem;
}
.nemo-accordion .collapse-toggle {
  padding-left: 10px;
}
.nemo-accordion .collapse-toggle:after {
  right: 10px;
}
.nemo-accordion .content {
  padding: 10px 10px 10px 20px;
  padding: 0.8333333333rem 0.8333333333rem 0.8333333333rem 1.6666666667rem;
}

.vtp-carousel {
  position: relative;
}

.vtp-carousel-dots {
  position: absolute;
  left: 0;
  text-align: center;
  bottom: 5px;
  width: 100%;
}

.swiper-pagination-bullet,
.swiper-pagination-switch {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 7px;
  background: #fff;
  -webkit-box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.25);
  opacity: 0.8;
  margin: 0 5px;
  cursor: pointer;
}

.swiper-pagination-bullet-active,
.swiper-active-switch {
  opacity: 1;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}

.vtp-carousel-indicator {
  padding: 4px 8px;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  font-size: 18px;
  color: #fff;
}
.vtp-carousel-indicator span {
  display: inline-block;
}
.vtp-carousel-indicator .vtp-carousel-indicator-length {
  opacity: 0.65;
}
.vtp-carousel-centered .vtp-carousel-indicator {
  text-align: center;
  color: #000;
}

.vtp-gallery .btn-next,
.vtp-gallery .btn-prev {
  position: absolute;
  z-index: 100;
  top: 50%;
  margin-top: -40px;
}
.vtp-gallery .btn-next.btn-next,
.vtp-gallery .btn-prev.btn-next {
  right: 4%;
}
.vtp-gallery .btn-next.btn-prev,
.vtp-gallery .btn-prev.btn-prev {
  left: 4%;
  display: none;
}

.vtp-carousel-centered .btn-next,
.vtp-carousel-centered .btn-prev {
  top: auto;
  bottom: 0;
}

.vtp-flyout {
  z-index: 2160;
}
.vtp-flyout .content {
  position: relative;
  padding: 20px;
  padding: 1.6666666667rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0 19px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 19px 0 rgba(0, 0, 0, 0.2);
}
.vtp-flyout .content:before {
  content: "";
  position: absolute;
  top: -7px;
  position: absolute;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 11px solid #fff;
}
.vtp-flyout .content.text {
  padding-top: 30px;
  width: 320px;
  line-height: 1.6;
}
.vtp-flyout .content.icons {
  padding-top: 20px;
  padding-bottom: 0;
  padding-right: 0;
}
.vtp-flyout .content.icons .flyout-title {
  padding-bottom: 0;
  border-bottom: 0;
}
.vtp-flyout .content.icons .title {
  margin-bottom: 19px;
}
.vtp-flyout .content.icons .icon {
  margin-bottom: 20px;
}
.vtp-flyout .content .flyout-title,
.vtp-flyout .content .title {
  margin: 0;
  margin: 0;
  font-size: 14px;
  font-size: 1.1666666667rem;
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
  line-height: 1;
}
.vtp-flyout .content .flyout-title {
  padding-bottom: 17px;
  border-bottom: 1px solid #c6c9cb;
}
.vtp-flyout .content .flyout-title + p {
  margin-top: 12px;
  margin-top: 1rem;
}

.lt-ie9 .vtp-flyout .content {
  width: 300px;
  border: 5px solid #efefef;
}

.vtp-service-bar .vtp-flyout {
  display: none;
  position: absolute;
  right: 50%;
  top: 40px;
}
.vtp-service-bar .vtp-flyout.fadeIn, .vtp-service-bar .vtp-page-detail main > .vtp-flyout.spinner, .vtp-page-detail .vtp-service-bar main > .vtp-flyout.spinner, .vtp-service-bar .vtp-flyout.vtp-results-toolbar, .vtp-service-bar .vtp-flyout.fadeOut {
  -webkit-animation-duration: 200ms;
  -o-animation-duration: 200ms;
  animation-duration: 200ms;
}
.vtp-service-bar .vtp-flyout .content {
  right: -50%;
}
.vtp-service-bar .vtp-flyout .content .vtp-social-nav {
  max-width: 300px;
}
.vtp-service-bar .vtp-flyout .content .code {
  display: block;
  height: 40px;
  margin: 20px 0 30px;
  line-height: 40px;
  font-size: 18px;
  font-size: 1.5rem;
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
  background-color: #e7e9ea;
  text-align: center;
}
.vtp-service-bar .vtp-flyout.align-right .content {
  right: -9%;
}
.vtp-service-bar .vtp-flyout.align-right .content:before {
  left: 90%;
}

@media only screen and (min-width: 768px) {
  .vtp-service-bar .vtp-flyout .content .qr-code {
    margin: 0 0 -16px -16px;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-service-bar .vtp-flyout {
    position: static;
    z-index: auto;
  }
  .vtp-service-bar .vtp-flyout.fadeIn, .vtp-service-bar .vtp-page-detail main > .vtp-flyout.spinner, .vtp-page-detail .vtp-service-bar main > .vtp-flyout.spinner, .vtp-service-bar .vtp-flyout.vtp-results-toolbar, .vtp-service-bar .vtp-flyout.fadeOut {
    -webkit-animation-duration: 1ms;
    -o-animation-duration: 1ms;
    animation-duration: 1ms;
  }
  .vtp-service-bar .vtp-flyout .content {
    position: static;
    padding: 23px 4% 40px 0;
    width: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .vtp-service-bar .vtp-flyout .content:before {
    border: 0;
  }
  .vtp-service-bar .vtp-flyout .content.icons {
    padding-top: 10px;
    padding-bottom: 0;
  }
  .vtp-service-bar .vtp-flyout .content .flyout-title {
    border: none;
  }
  .vtp-service-bar .vtp-flyout .content .copy {
    max-width: 400px;
  }
  .vtp-service-bar .vtp-flyout .content .vtp-social-nav {
    max-width: none;
    width: auto !important;
  }
  .vtp-service-bar .vtp-flyout .content .flyout-title {
    display: none;
  }
  .vtp-service-bar .vtp-flyout .content .flyout-title + p {
    margin-top: 0;
  }
}
.audi-code-enter .vtp-flyout .content.text {
  padding-top: 15px;
}
.audi-code-enter .vtp-flyout .content input {
  display: block;
  float: left;
  width: 220px;
  min-width: 220px;
  margin-right: 20px;
  color: #a3a3a3;
  font-family: Verdana, sans-serif;
  font-size: 12px;
}
.audi-code-enter .vtp-flyout .content input:focus {
  color: #000;
}
.audi-code-enter .vtp-flyout .content input:focus ~ button {
  background-color: #000;
}
.audi-code-enter .vtp-flyout .content button {
  display: block;
  float: left;
  width: 40px;
  min-width: 0;
}
.audi-code-enter .vtp-flyout .content button:after {
  margin-left: 0;
}
.audi-code-enter .vtp-flyout .spinner {
  left: 40px;
  position: absolute;
  top: -1px;
}
@media only screen and (max-width: 767px) {
  .audi-code-enter .vtp-flyout .spinner {
    left: 168px;
    width: 30px;
    position: absolute;
    top: 8px;
  }
}
.audi-code-enter .vtp-flyout .error {
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 19.2px;
  height: 1.6rem;
  color: #c03;
  font-family: Verdana, sans-serif;
  font-size: 11px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .audi-code-enter .vtp-flyout .error {
    left: 4%;
    bottom: 10px;
  }
}
.touch .audi-code-enter .vtp-flyout .content button {
  background-color: #000;
}

@media only screen and (max-width: 767px) {
  .audi-code .vtp-flyout .content .code {
    margin-bottom: 20px;
    text-align: left;
  }
  .audi-code .vtp-flyout .content .qr-code {
    margin-top: 10px;
  }
}

.search .vtp-flyout .item-list,
.favorites .vtp-flyout .item-list {
  padding-top: 10px;
}
.search .vtp-flyout .item-list li,
.favorites .vtp-flyout .item-list li {
  padding: 10px 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #cdd0d2;
}
.search .vtp-flyout .item-list li:first-child,
.favorites .vtp-flyout .item-list li:first-child {
  padding-top: 0;
}
.search .vtp-flyout .favorites-list,
.favorites .vtp-flyout .favorites-list {
  padding-top: 0;
}
.search .vtp-flyout .favorites-list li,
.favorites .vtp-flyout .favorites-list li {
  border-bottom: 1px solid #c6c9cb;
  margin-bottom: 17px;
}
.search .vtp-flyout .favorites-list li article,
.favorites .vtp-flyout .favorites-list li article {
  margin-bottom: 0;
}
.search .vtp-flyout .vSpacer,
.favorites .vtp-flyout .vSpacer {
  margin: 10px 0;
  display: block;
}
.search .vtp-flyout .vtp-btn.next,
.favorites .vtp-flyout .vtp-btn.next {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .search .vtp-flyout .item-list,
  .favorites .vtp-flyout .item-list {
    padding-top: 0;
  }
}

@media only screen and (max-width: 1280px) {
  .search .vtp-flyout .content {
    right: -9%;
  }
  .search .vtp-flyout .content:before {
    left: 90%;
  }
}
.favorites .vtp-flyout img {
  float: left;
  width: 76px;
  margin-right: 15px;
}
.favorites .vtp-flyout .car-name {
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
}
.favorites .vtp-flyout .car-name:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -316px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  content: "";
  display: inline-block;
  margin-left: 0.5em;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .favorites .vtp-flyout .car-name:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.favorites .vtp-flyout a:hover .car-name {
  color: #c03;
}
.favorites .vtp-flyout .car-price {
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
}

.download .vtp-flyout .content, .login .vtp-flyout .content, .favorites .vtp-flyout .content, .share .vtp-flyout .content, .user .vtp-flyout .content {
  right: -9%;
}
.download .vtp-flyout .content:before, .login .vtp-flyout .content:before, .favorites .vtp-flyout .content:before, .share .vtp-flyout .content:before, .user .vtp-flyout .content:before {
  left: 90%;
}

.login .vtp-flyout .control-group, .search .vtp-flyout .savedsearch-login .control-group {
  margin: 0;
}
.login .vtp-flyout .control-group input, .search .vtp-flyout .savedsearch-login .control-group input {
  display: inline-block;
  float: none;
  width: 255px;
  margin-bottom: 30px;
  margin-right: 5px;
}
.login .vtp-flyout .control-group input[name=password].error, .search .vtp-flyout .savedsearch-login .control-group input[name=password].error {
  margin-bottom: 5px;
}
.login .vtp-flyout .control-group input[name=password], .search .vtp-flyout .savedsearch-login .control-group input[name=password] {
  margin-bottom: 16px;
}
.login .vtp-flyout .control-group i, .search .vtp-flyout .savedsearch-login .control-group i {
  display: none;
  vertical-align: middle;
}
.login .vtp-flyout .control-group i.correct, .search .vtp-flyout .savedsearch-login .control-group i.correct {
  display: inline-block;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -672px;
  background-repeat: no-repeat;
  width: 15px;
  height: 12px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .login .vtp-flyout .control-group i.correct, .search .vtp-flyout .savedsearch-login .control-group i.correct {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.login .vtp-flyout .control-group i.error, .search .vtp-flyout .savedsearch-login .control-group i.error {
  display: inline-block;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -483px;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .login .vtp-flyout .control-group i.error, .search .vtp-flyout .savedsearch-login .control-group i.error {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.login .vtp-flyout .control-group a, .search .vtp-flyout .savedsearch-login .control-group a {
  float: none;
  display: block;
}
.login .vtp-flyout .control-group .submit, .search .vtp-flyout .savedsearch-login .control-group .submit {
  display: block;
  margin: 16px 0 26px;
}
.login .vtp-flyout .control-group .compact, .search .vtp-flyout .savedsearch-login .control-group .compact {
  margin-bottom: 5px;
}
.login .vtp-flyout .control-group .registerButton, .search .vtp-flyout .savedsearch-login .control-group .registerButton {
  margin-bottom: 8px;
}

.search .vtp-flyout .content.text {
  padding-top: 20px;
}
.search .vtp-flyout .search-link {
  display: block;
  position: relative;
  padding-right: 15px;
  font-family: Verdana, sans-serif;
  line-height: 1.2;
}
.search .vtp-flyout .search-link:hover {
  color: #c03;
}
.search .vtp-flyout .search-link:hover h3 {
  color: #c03;
}
.search .vtp-flyout .search-name {
  margin-top: 3px;
  margin-top: 0.25rem;
  margin-bottom: 6px;
  margin-bottom: 0.5rem;
  font-size: 14px;
  font-size: 1.1666666667rem;
}
.search .vtp-flyout .search-name:after {
  content: "";
  display: inline-block;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -543px;
  background-repeat: no-repeat;
  width: 14px;
  height: 11px;
  margin-left: 4.8px;
  margin-left: 0.4rem;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .search .vtp-flyout .search-name:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.search .vtp-flyout .search-info {
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: block;
  /* autoprefixer: off */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 2.6em;
}
.search .vtp-flyout .search-info + .search-info {
  margin-top: 3px;
  margin-top: 0.25rem;
}
.search .vtp-flyout .search-results-link {
  margin-top: 12px;
  margin-top: 1rem;
}
.search .vtp-flyout [href="#saved-search-login-dialog"] {
  margin-bottom: 20px;
  margin-bottom: 1.6666666667rem;
}
.search .vtp-flyout .vtp-checklist {
  margin-top: 12px;
  margin-top: 1rem;
}
@media only screen and (max-width: 660px) {
  .search .vtp-flyout .content.text {
    width: auto;
  }
}

.vtp-form-steps {
  *zoom: 1;
  width: 100%;
  margin-bottom: 48px;
  margin-bottom: 4rem;
  border: 1px solid #f2f4f3;
}
.vtp-form-steps:before, .vtp-form-steps:after {
  content: "";
  display: table;
}
.vtp-form-steps:after {
  clear: both;
}
.vtp-form-steps.vtp-form-steps-1 > li {
  float: left;
  clear: none;
  width: 99.8%;
  margin-left: 0;
  margin-right: 0;
}
.vtp-form-steps.vtp-form-steps-1 > li:nth-of-type(n) {
  margin-right: 0;
  float: left;
  clear: none;
}
.vtp-form-steps.vtp-form-steps-1 > li:nth-of-type(1n) {
  margin-right: 0;
  float: right;
}
.vtp-form-steps.vtp-form-steps-1 > li:nth-of-type(1n + 1) {
  clear: both;
}
@media only screen and (max-width: 800px) {
  .vtp-form-steps.vtp-form-steps-1 > li {
    float: left;
    clear: none;
    width: 99.8%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-form-steps.vtp-form-steps-1 > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-form-steps.vtp-form-steps-1 > li:nth-of-type(1n) {
    margin-right: 0;
    float: right;
  }
  .vtp-form-steps.vtp-form-steps-1 > li:nth-of-type(1n + 1) {
    clear: both;
  }
}
.vtp-form-steps.vtp-form-steps-2 > li {
  float: left;
  clear: none;
  width: 49.9%;
  margin-left: 0;
  margin-right: 0;
}
.vtp-form-steps.vtp-form-steps-2 > li:nth-of-type(n) {
  margin-right: 0;
  float: left;
  clear: none;
}
.vtp-form-steps.vtp-form-steps-2 > li:nth-of-type(2n) {
  margin-right: 0;
  float: right;
}
.vtp-form-steps.vtp-form-steps-2 > li:nth-of-type(2n + 1) {
  clear: both;
}
@media only screen and (max-width: 800px) {
  .vtp-form-steps.vtp-form-steps-2 > li {
    float: left;
    clear: none;
    width: 49.9%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-form-steps.vtp-form-steps-2 > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-form-steps.vtp-form-steps-2 > li:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .vtp-form-steps.vtp-form-steps-2 > li:nth-of-type(2n + 1) {
    clear: both;
  }
}
.vtp-form-steps.vtp-form-steps-3 > li {
  float: left;
  clear: none;
  width: 33.2666666667%;
  margin-left: 0;
  margin-right: 0;
}
.vtp-form-steps.vtp-form-steps-3 > li:nth-of-type(n) {
  margin-right: 0;
  float: left;
  clear: none;
}
.vtp-form-steps.vtp-form-steps-3 > li:nth-of-type(3n) {
  margin-right: 0;
  float: right;
}
.vtp-form-steps.vtp-form-steps-3 > li:nth-of-type(3n + 1) {
  clear: both;
}
@media only screen and (max-width: 800px) {
  .vtp-form-steps.vtp-form-steps-3 > li {
    float: left;
    clear: none;
    width: 33.2666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-form-steps.vtp-form-steps-3 > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-form-steps.vtp-form-steps-3 > li:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .vtp-form-steps.vtp-form-steps-3 > li:nth-of-type(3n + 1) {
    clear: both;
  }
}
.vtp-form-steps.vtp-form-steps-4 > li {
  float: left;
  clear: none;
  width: 24.95%;
  margin-left: 0;
  margin-right: 0;
}
.vtp-form-steps.vtp-form-steps-4 > li:nth-of-type(n) {
  margin-right: 0;
  float: left;
  clear: none;
}
.vtp-form-steps.vtp-form-steps-4 > li:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.vtp-form-steps.vtp-form-steps-4 > li:nth-of-type(4n + 1) {
  clear: both;
}
@media only screen and (max-width: 800px) {
  .vtp-form-steps.vtp-form-steps-4 > li {
    float: left;
    clear: none;
    width: 24.95%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-form-steps.vtp-form-steps-4 > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-form-steps.vtp-form-steps-4 > li:nth-of-type(4n) {
    margin-right: 0;
    float: right;
  }
  .vtp-form-steps.vtp-form-steps-4 > li:nth-of-type(4n + 1) {
    clear: both;
  }
}
.vtp-form-steps.vtp-form-steps-5 > li {
  float: left;
  clear: none;
  width: 19.96%;
  margin-left: 0;
  margin-right: 0;
}
.vtp-form-steps.vtp-form-steps-5 > li:nth-of-type(n) {
  margin-right: 0;
  float: left;
  clear: none;
}
.vtp-form-steps.vtp-form-steps-5 > li:nth-of-type(5n) {
  margin-right: 0;
  float: right;
}
.vtp-form-steps.vtp-form-steps-5 > li:nth-of-type(5n + 1) {
  clear: both;
}
@media only screen and (max-width: 800px) {
  .vtp-form-steps.vtp-form-steps-5 > li {
    float: left;
    clear: none;
    width: 19.0095238095%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-form-steps.vtp-form-steps-5 > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-form-steps.vtp-form-steps-5 > li:nth-of-type(21n) {
    margin-right: 0;
    float: right;
  }
  .vtp-form-steps.vtp-form-steps-5 > li:nth-of-type(21n + 1) {
    clear: both;
  }
  .vtp-form-steps.vtp-form-steps-5 > li a span {
    display: none;
  }
  .vtp-form-steps.vtp-form-steps-5 > li.active {
    float: left;
    clear: none;
    width: 23.7619047619%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-form-steps.vtp-form-steps-5 > li.active:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-form-steps.vtp-form-steps-5 > li.active:nth-of-type(21n) {
    margin-right: 0;
    float: right;
  }
  .vtp-form-steps.vtp-form-steps-5 > li.active:nth-of-type(21n + 1) {
    clear: both;
  }
  .vtp-form-steps.vtp-form-steps-5 > li.active a span {
    display: table-cell;
  }
}
.vtp-form-steps > li {
  padding-left: 30px;
  padding-left: 2.5rem;
  background-color: #f2f4f3;
  position: relative;
  list-style-type: none;
}
@media only screen and (max-width: 940px) {
  .vtp-form-steps > li {
    padding-left: 25px;
    padding-left: 2.0833333333rem;
  }
}
.vtp-form-steps > li:nth-child(1) a:before {
  content: "1";
}
.vtp-form-steps > li:nth-child(2) a:before {
  content: "2";
}
.vtp-form-steps > li:nth-child(3) a:before {
  content: "3";
}
.vtp-form-steps > li:nth-child(4) a:before {
  content: "4";
}
.vtp-form-steps > li:nth-child(5) a:before {
  content: "5";
}
.vtp-form-steps > li a {
  color: #b0b6b8;
  display: table;
  width: 100%;
  height: 48px;
  height: 4rem;
  padding-left: 36px;
  padding-left: 3rem;
  padding-right: 12px;
  padding-right: 1rem;
  line-height: 15px;
  font-size: 12px;
  position: relative;
}
.vtp-form-steps > li a:before {
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  font-size: 36px;
  height: 48px;
  line-height: 48px;
  left: 0;
}
.vtp-form-steps > li a span {
  display: table-cell;
  vertical-align: middle;
}
.vtp-form-steps > li .arrow {
  display: block;
  z-index: 50;
  position: absolute;
  top: 0;
  right: 0;
}
.vtp-form-steps > li .arrow:before, .vtp-form-steps > li .arrow:after {
  content: "";
  z-index: 50;
  position: absolute;
  top: 0;
  border: 25px solid rgba(255, 255, 255, 0);
  border-right: none;
  border-left: 12px solid rgba(255, 255, 255, 0);
}
.lt-ie9 .vtp-form-steps > li .arrow:before, .lt-ie9 .vtp-form-steps > li .arrow:after {
  border: 25px solid transparent;
  border-right: none;
  border-left: 12px solid transparent;
}
.vtp-form-steps > li .arrow:before {
  right: -14px;
  border-left: 12px solid #fff;
}
.lt-ie9 .vtp-form-steps > li .arrow:before {
  border-left: 12px solid #fff;
}
.vtp-form-steps > li .arrow:after {
  right: -12px;
  border-left: 12px solid #f2f4f3;
}
.lt-ie9 .vtp-form-steps > li .arrow:after {
  border-left: 12px solid #f2f4f3;
}
.vtp-form-steps > li.active {
  background-color: #fff;
}
.vtp-form-steps > li.active a {
  color: #000;
}
.vtp-form-steps > li.active .arrow:before {
  right: -12px;
}
.vtp-form-steps > li.active .arrow:after {
  border-left: 12px solid #fff;
}
.lt-ie9 .vtp-form-steps > li.active .arrow:after {
  border-left: 12px solid #fff;
}
.vtp-form-steps > li.disabled a {
  color: #b0b6b8;
}
.vtp-form-steps > li:first-child {
  padding-left: 20px;
  padding-left: 1.6666666667rem;
}
@media only screen and (max-width: 940px) {
  .vtp-form-steps > li:first-child {
    padding-left: 15px;
    padding-left: 1.25rem;
  }
}
.vtp-form-steps > li:last-child .arrow:after, .vtp-form-steps > li:last-child .arrow:before {
  border-left: none;
}

.vtp-mini-select {
  margin-right: 22px;
  min-width: 220px;
}
@media only screen and (max-width: 1023px) {
  .vtp-mini-select {
    min-width: 46px;
  }
}
.vtp-mini-select label {
  font-family: Verdana, sans-serif !important;
  margin-bottom: 0px;
  font-weight: 400 !important;
  margin-right: 4px;
  display: block;
  cursor: default;
}
.vtp-mini-select label .vtp-long {
  display: block;
}
.vtp-mini-select label .vtp-short {
  display: none;
}
@media only screen and (max-width: 767px) {
  .vtp-mini-select label {
    float: none !important;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .vtp-mini-select label .vtp-long {
    display: none;
  }
  .vtp-mini-select label .vtp-short {
    display: block;
  }
}
@media only screen and (max-width: 320px) {
  .vtp-mini-select label .vtp-long {
    display: none;
  }
}
.vtp-mini-select .custom-select select {
  border: none;
  padding: 0;
  min-width: 0;
  width: 100%;
  height: 19px;
  position: absolute;
  right: 0;
  bottom: 0px;
  opacity: 0;
  cursor: pointer;
}
.vtp-mini-select .custom-select:after {
  display: none;
}
.vtp-mini-select .custom-select .select-value span {
  display: block;
  float: left;
  margin-right: 8px;
}
.vtp-mini-select .custom-select .select-value::after {
  content: "";
  width: 8px;
  height: 5px;
  display: block;
  float: left;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -154px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  z-index: 2;
  pointer-events: none;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-mini-select .custom-select .select-value::after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .vtp-mini-select .custom-select .select-value::after {
    float: none !important;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4px;
  }
}
@media only screen and (max-width: 1023px) {
  .vtp-mini-select .custom-select .select-value span {
    display: none;
  }
  .vtp-mini-select .custom-select .select-value:after {
    margin-top: 2px;
    background-image: url(../images/sprite-filterpage.png);
    background-position: 0px 0px;
    background-repeat: no-repeat;
    width: 26px;
    height: 13px;
  }
}
@media only screen and (max-width: 1023px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1023px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 1023px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 1023px) and (min-resolution: 144dpi), only screen and (max-width: 1023px) and (min-resolution: 1.5dppx) {
  .vtp-mini-select .custom-select .select-value:after {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .vtp-mini-select .custom-select {
    float: none !important;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-mini-select {
    height: 38px;
    width: 90px;
  }
}

.lt-ie9 .vtp-mini-select .custom-select select {
  filter: alpha(opacity=1);
}

.custom-select {
  display: block;
  padding: 0;
  position: relative;
}
.custom-select select {
  width: 100%;
  min-width: 250px;
  margin: 0;
  background: none;
  background-image: none;
  border: 1px solid transparent;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none; /* Firefox */
  appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  font-size: 1em;
  padding: 0.6em 1.9em 0.5em 0.8em;
  line-height: 1.3;
  height: 40px;
  border: 1px solid #cecece;
  border-radius: 0;
}
.lt-ie9 .custom-select select, .ie9 .custom-select select {
  padding-right: 0.6em;
}
.custom-select::after {
  content: "";
  background-image: url(../images/sprite-common.png);
  background-position: 0px -154px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -4px;
  margin-top: -4px;
  left: auto;
  right: 1em;
  z-index: 2;
  pointer-events: none;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .custom-select::after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.custom-select select:focus {
  outline: none;
  -webkit-box-shadow: 0 0 1px 3px rgb(180, 222, 250);
  box-shadow: 0 0 1px 3px rgb(180, 222, 250);
  background-color: transparent;
  color: #222;
  border: 1px solid #aaa;
}
.custom-select option {
  font-weight: 400;
  color: #000;
}

.lt-ie9 .vtp-mini-select .custom-select select, .ie9 .vtp-mini-select .custom-select select {
  padding-right: 0em;
}

.lt-ie9 .custom-select:after, .ie9 .custom-select:after {
  display: none;
}

x:-o-prefocus,
.custom-select:after {
  display: none;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .custom-select select::-ms-expand {
    display: none;
  }
  .custom-select select:focus::-ms-value {
    background: transparent;
    color: #222;
  }
}
@-moz-document url-prefix() {
  .custom-select {
    overflow: hidden;
  }
  .custom-select select {
    padding-top: 1em;
    width: 100%;
  }
}
@supports (-moz-appearance: none) and (mask-type: alpha) {
  #filter-area-search-map .custom-select:after {
    display: block !important;
  }
}
@supports (-moz-appearance: meterbar) and (background-blend-mode: difference, normal) {
  .custom-select:after {
    display: none;
  }
  .custom-select select {
    -moz-appearance: listbox; /* Firefox */
    -webkit-appearance: listbox;
    appearance: listbox;
    padding-top: 0.6em;
  }
}
.custom-select select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.has-info {
  position: relative;
  padding-right: 30px;
}
.no-js .has-info:hover ~ .vtp-info {
  display: block;
}
.has-info:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1536px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  content: "";
  position: absolute;
  display: inline-block;
  top: -4px;
  right: 0;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .has-info:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media print {
  .has-info:after {
    display: none;
  }
}
.has-info:hover:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1506px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .has-info:hover:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-tooltip {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 2%;
  font-family: Verdana, sans-serif;
  font-size: 12px;
  font-weight: 400;
  position: absolute;
  top: 0;
  max-width: 450px;
  z-index: 1000;
  text-align: left;
}
.vtp-tooltip.big {
  max-width: 600px;
}

.vtp-description-list {
  *zoom: 1;
  float: left;
  clear: none;
  width: 48.403%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-description-list:before, .vtp-description-list:after {
  content: "";
  display: table;
}
.vtp-description-list:after {
  clear: both;
}
.vtp-description-list:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 800px) {
  .vtp-description-list {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-description-list:first-child {
    margin-left: auto;
  }
  .vtp-description-list:last-child {
    margin-right: auto;
  }
}
.vtp-description-list:only-of-type {
  float: left;
  clear: none;
  width: 99.8%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-description-list:only-of-type:last-child {
  margin-right: 0;
}
@media print {
  .vtp-description-list {
    clear: both;
    width: 100%;
  }
}

.vtp-videoplayer {
  position: relative;
}
.touch .vtp-videoplayer {
  -webkit-user-select: false;
  -moz-user-select: false;
  -ms-user-select: false;
  user-select: false;
  -webkit-touch-callout: none;
}
.vtp-videoplayer video {
  width: auto;
  height: auto;
}
.vtp-modal .vtp-videoplayer video {
  width: 100%;
  height: 100%;
}
.vtp-videoplayer.fullscreen {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
  background: black !important;
  margin: 0 !important;
  padding: 0 !important;
}
.vtp-videoplayer.fullscreen > video {
  width: 100%;
  height: 100%;
}

video {
  max-width: 100%;
}

.vtp-visible, .vtp-tooltip,
.vtp-tab-pane {
  display: none;
}
.vtp-visible.active, .active.vtp-tooltip,
.vtp-tab-pane.active {
  display: block !important;
}

.vtp-tab-pane.transitionOut {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.mobile .has-played .vtp-mediacontrols {
  display: none;
}

.vtp-mediacontrols {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.vtp-mediacontrols .cf, .vtp-mediacontrols .vtp-filter-panel-engines .vtp-filter-campaigns, .vtp-filter-panel-engines .vtp-mediacontrols .vtp-filter-campaigns, .vtp-mediacontrols .vtp-filter-panel-engines .vtp-filter-engines, .vtp-filter-panel-engines .vtp-mediacontrols .vtp-filter-engines, .vtp-mediacontrols .vtp-filter-panel-engines .vtp-filter-fields-full-width, .vtp-filter-panel-engines .vtp-mediacontrols .vtp-filter-fields-full-width, .vtp-mediacontrols .car-teaser .product-extras, .vtp-mediacontrols .similar-car-item .product-extras, .car-teaser .vtp-mediacontrols .product-extras, .similar-car-item .vtp-mediacontrols .product-extras, .vtp-mediacontrols .vtp-similar-cars-list, .vtp-mediacontrols .vtp-suggested-cars-item, .vtp-mediacontrols .vtp-filter-panel-features .vtp-feature-list, .vtp-filter-panel-features .vtp-mediacontrols .vtp-feature-list, .vtp-mediacontrols .vtp-features .vtp-feature-teasers, .vtp-features .vtp-mediacontrols .vtp-feature-teasers, .vtp-mediacontrols .vtp-grid-view .vtp-results-view, .vtp-grid-view .vtp-mediacontrols .vtp-results-view, .vtp-mediacontrols .vtp-grid-view #suggested-cars, .vtp-grid-view .vtp-mediacontrols #suggested-cars, .vtp-mediacontrols .list-2-2-2-1, .vtp-mediacontrols .list-3-2-1, .vtp-mediacontrols .vtp-description-list-wrap, .vtp-mediacontrols .vtp-tab-pane {
  margin: 0;
}
.touch .vtp-mediacontrols {
  -webkit-user-select: false;
  -moz-user-select: false;
  -ms-user-select: false;
  user-select: false;
  -webkit-touch-callout: none;
}
.vtp-mediacontrols:hover .vtp-controls,
.vtp-mediacontrols .active .vtp-controls {
  opacity: 1;
}
.vtp-mediacontrols .btn-play-big {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -7382px;
  background-repeat: no-repeat;
  width: 90px;
  height: 90px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -45px;
  margin-top: -45px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-mediacontrols .btn-play-big {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-mediacontrols .btn-play-big:hover {
  opacity: 0.8;
}
.has-played .vtp-mediacontrols .btn-play-big, .playing .vtp-mediacontrols .btn-play-big {
  display: none;
}
.vtp-mediacontrols .vtp-controls {
  color: white;
  background: #000000;
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 10px;
  height: 80px;
  opacity: 0;
  -webkit-transition: opacity 200ms ease-out;
  -o-transition: opacity 200ms ease-out;
  transition: opacity 200ms ease-out;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.mobile .vtp-mediacontrols .vtp-controls {
  display: none;
}
.vtp-mediacontrols .vtp-controls.active {
  opacity: 1;
}
.vtp-mediacontrols .vtp-controls .progress-controls,
.vtp-mediacontrols .vtp-controls .loadprogress,
.vtp-mediacontrols .vtp-controls .playprogress {
  height: 8px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
  cursor: pointer;
}
.vtp-mediacontrols .vtp-controls .cf > div, .vtp-mediacontrols .vtp-controls .vtp-filter-panel-engines .vtp-filter-campaigns > div, .vtp-filter-panel-engines .vtp-mediacontrols .vtp-controls .vtp-filter-campaigns > div, .vtp-mediacontrols .vtp-controls .vtp-filter-panel-engines .vtp-filter-engines > div, .vtp-filter-panel-engines .vtp-mediacontrols .vtp-controls .vtp-filter-engines > div, .vtp-mediacontrols .vtp-controls .vtp-filter-panel-engines .vtp-filter-fields-full-width > div, .vtp-filter-panel-engines .vtp-mediacontrols .vtp-controls .vtp-filter-fields-full-width > div, .vtp-mediacontrols .vtp-controls .car-teaser .product-extras > div, .vtp-mediacontrols .vtp-controls .similar-car-item .product-extras > div, .car-teaser .vtp-mediacontrols .vtp-controls .product-extras > div, .similar-car-item .vtp-mediacontrols .vtp-controls .product-extras > div, .vtp-mediacontrols .vtp-controls .vtp-similar-cars-list > div, .vtp-mediacontrols .vtp-controls .vtp-suggested-cars-item > div, .vtp-mediacontrols .vtp-controls .vtp-filter-panel-features .vtp-feature-list > div, .vtp-filter-panel-features .vtp-mediacontrols .vtp-controls .vtp-feature-list > div, .vtp-mediacontrols .vtp-controls .vtp-features .vtp-feature-teasers > div, .vtp-features .vtp-mediacontrols .vtp-controls .vtp-feature-teasers > div, .vtp-mediacontrols .vtp-controls .vtp-grid-view .vtp-results-view > div, .vtp-grid-view .vtp-mediacontrols .vtp-controls .vtp-results-view > div, .vtp-mediacontrols .vtp-controls .vtp-grid-view #suggested-cars > div, .vtp-grid-view .vtp-mediacontrols .vtp-controls #suggested-cars > div, .vtp-mediacontrols .vtp-controls .list-2-2-2-1 > div, .vtp-mediacontrols .vtp-controls .list-3-2-1 > div, .vtp-mediacontrols .vtp-controls .vtp-description-list-wrap > div, .vtp-mediacontrols .vtp-controls .vtp-tab-pane > div {
  height: 72px;
  position: relative;
}
.vtp-mediacontrols .vtp-controls .progress-controls {
  background: #6d7579;
}
.vtp-mediacontrols .vtp-controls .progress-controls .loadprogress {
  background: #fff;
  z-index: 1;
}
.vtp-mediacontrols .vtp-controls .progress-controls .playprogress {
  background: #c03;
  z-index: 2;
}
.vtp-mediacontrols .vtp-controls .play-controls {
  float: left;
  clear: none;
  width: 12.475%;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
  padding-top: 17.5px;
}
.vtp-mediacontrols .vtp-controls .play-controls .btn-play {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2743px;
  background-repeat: no-repeat;
  width: 14px;
  height: 27px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-mediacontrols .vtp-controls .play-controls .btn-play {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-mediacontrols .vtp-controls .play-controls .btn-play:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2706px;
  background-repeat: no-repeat;
  width: 14px;
  height: 27px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-mediacontrols .vtp-controls .play-controls .btn-play:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.playing .vtp-mediacontrols .vtp-controls .play-controls .btn-play {
  display: none;
}
.vtp-mediacontrols .vtp-controls .play-controls .btn-pause {
  display: none;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2856px;
  background-repeat: no-repeat;
  width: 19px;
  height: 28px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-mediacontrols .vtp-controls .play-controls .btn-pause {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-mediacontrols .vtp-controls .play-controls .btn-pause:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2818px;
  background-repeat: no-repeat;
  width: 19px;
  height: 28px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-mediacontrols .vtp-controls .play-controls .btn-pause:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.playing .vtp-mediacontrols .vtp-controls .play-controls .btn-pause {
  display: inline-block;
}
.vtp-mediacontrols .vtp-controls .time-controls {
  float: left;
  clear: none;
  width: 74.85%;
  margin-left: 0;
  margin-right: 0;
  padding-top: 2px;
  text-align: left;
}
.vtp-mediacontrols .vtp-controls .time-controls .description {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 19px;
}
.vtp-mediacontrols .vtp-controls .time-controls .duration,
.vtp-mediacontrols .vtp-controls .time-controls .timeseperator {
  opacity: 0.5;
}
.vtp-mediacontrols .vtp-controls .volume-controls {
  *zoom: 1;
  float: left;
  clear: none;
  width: 12.475%;
  margin-left: 0;
  margin-right: 0;
  max-width: 100px;
  padding-top: 22px;
}
.vtp-mediacontrols .vtp-controls .volume-controls:before, .vtp-mediacontrols .vtp-controls .volume-controls:after {
  content: "";
  display: table;
}
.vtp-mediacontrols .vtp-controls .volume-controls:after {
  clear: both;
}
.ios .vtp-mediacontrols .vtp-controls .volume-controls {
  display: none;
}
.vtp-mediacontrols .vtp-controls .volume-controls > span {
  position: relative;
  float: left;
  clear: none;
  width: 49.9%;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}
.vtp-mediacontrols .vtp-controls .volume-controls .btn-mute {
  position: relative;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1363px;
  background-repeat: no-repeat;
  width: 24px;
  height: 18px;
  top: -2px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-mediacontrols .vtp-controls .volume-controls .btn-mute {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-mediacontrols .vtp-controls .volume-controls .btn-mute:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1391px;
  background-repeat: no-repeat;
  width: 24px;
  height: 18px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-mediacontrols .vtp-controls .volume-controls .btn-mute:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.muted .vtp-mediacontrols .vtp-controls .volume-controls .btn-mute {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -863px;
  background-repeat: no-repeat;
  width: 11px;
  height: 15px;
  width: 24px;
  height: 18px;
  top: 0;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .muted .vtp-mediacontrols .vtp-controls .volume-controls .btn-mute {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.muted .vtp-mediacontrols .vtp-controls .volume-controls .btn-mute:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -888px;
  background-repeat: no-repeat;
  width: 11px;
  height: 15px;
  width: 24px;
  height: 18px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .muted .vtp-mediacontrols .vtp-controls .volume-controls .btn-mute:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-mediacontrols .vtp-controls .volume-controls .btn-fullscreen {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -938px;
  background-repeat: no-repeat;
  width: 17px;
  height: 15px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-mediacontrols .vtp-controls .volume-controls .btn-fullscreen {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-mediacontrols .vtp-controls .volume-controls .btn-fullscreen:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -913px;
  background-repeat: no-repeat;
  width: 17px;
  height: 15px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-mediacontrols .vtp-controls .volume-controls .btn-fullscreen:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.fullscreen .vtp-mediacontrols .vtp-controls .volume-controls .btn-fullscreen {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -988px;
  background-repeat: no-repeat;
  width: 17px;
  height: 15px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .fullscreen .vtp-mediacontrols .vtp-controls .volume-controls .btn-fullscreen {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.fullscreen .vtp-mediacontrols .vtp-controls .volume-controls .btn-fullscreen:hover {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -963px;
  background-repeat: no-repeat;
  width: 17px;
  height: 15px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .fullscreen .vtp-mediacontrols .vtp-controls .volume-controls .btn-fullscreen:hover {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-nav-tabs {
  *zoom: 1;
  width: 100%;
  margin-bottom: 43.2px;
  margin-bottom: 3.6rem;
  padding-left: 0;
  padding-left: 0;
  border-bottom: 1px solid #d9d9d9;
}
.vtp-nav-tabs:before, .vtp-nav-tabs:after {
  content: "";
  display: table;
}
.vtp-nav-tabs:after {
  clear: both;
}
.vtp-nav-tabs > li {
  float: left;
  margin-bottom: -1px;
  border: 1px solid #d9d9d9;
  border-right: transparent;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
}
.vtp-nav-tabs > li:last-child {
  border-right: 1px solid #d9d9d9;
}
.vtp-nav-tabs > li a {
  display: inline-block;
  padding: 10px 15px;
  background-color: #fff;
}
.vtp-nav-tabs > li.active {
  border: 1px solid #d9d9d9;
  border-bottom-color: #d9d9d9;
  border-right: transparent;
}
.vtp-nav-tabs > li.active a {
  background-color: #d9d9d9;
}

.tab-content {
  position: relative;
}

.vtp-tab-accordion .collapse-toggle {
  position: relative;
  display: none;
  margin-bottom: 0 !important;
  font-family: "AudiTypeExtBold", Verdana, sans-serif !important;
  font-weight: 700;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  top: 0;
  left: 0;
  border-bottom: 1px solid #cdd0d2;
  cursor: pointer;
  margin-bottom: 0;
  margin-top: 0;
  width: 100%;
  background: #e7e9ea;
  padding-top: 24px;
  padding-top: 2rem;
  padding-bottom: 24px;
  padding-bottom: 2rem;
  padding-left: 4%;
  font-size: 12px;
  font-size: 1rem;
}
.vtp-tab-accordion .collapse-toggle:before {
  font-family: "AudiTypeExtNormal", Verdana, sans-serif !important;
}
.vtp-tab-accordion .collapse-toggle:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -172px;
  background-repeat: no-repeat;
  width: 12px;
  height: 8px;
  content: "";
  position: absolute;
  right: 4%;
  top: 50%;
  margin-top: -4px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-tab-accordion .collapse-toggle:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-tab-accordion .collapse-toggle.active:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -226px;
  background-repeat: no-repeat;
  width: 12px;
  height: 8px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-tab-accordion .collapse-toggle.active:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-tab-accordion .vtp-nav-tabs {
    display: none;
  }
  .vtp-tab-accordion .collapse-toggle {
    display: block;
    left: -4%;
    width: 108%;
  }
  .vtp-tab-accordion .vtp-tab-pane {
    display: block !important;
  }
  .vtp-tab-accordion .collapse-content {
    display: none;
    width: 100%;
    padding: 20px 0;
  }
  .vtp-tab-accordion .collapse-content.active {
    display: block;
  }
}

/* Ion.RangeSlider, Simple Skin
// css version 2.0.0
// © Denis Ineshin, 2014    https://github.com/IonDen
// © guybowden, 2014        https://github.com/guybowden
// ===================================================================================================================*/
/* =====================================================================================================================
// Skin details */
.irs {
  height: 65px;
}

.irs-with-grid {
  height: 85px;
}

.irs-line {
  height: 4px;
  top: 40px;
  background: #d9d9d9;
  background: rgb(217, 217, 217); /* W3C */
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  -moz-border-radius: 16px;
}

.irs-line-left {
  height: 4px;
}

.irs-line-mid {
  height: 4px;
}

.irs-line-right {
  height: 4px;
}

.irs-bar {
  height: 4px;
  top: 40px;
  border-top: 1px solid #ce052e;
  border-bottom: 1px solid #ce052e;
  background: #ce052e;
  background: rgb(206, 5, 46); /* W3C */
}

.irs-bar-edge {
  height: 4px;
  top: 40px;
  width: 20px;
  border: 1px solid #ce052e;
  border-right: 0;
  background: #ce052e;
  background: rgb(206, 5, 46); /* W3C */
  border-radius: 2px;
  -moz-border-radius: 2px;
}

.irs-shadow {
  height: 2px;
  top: 49px;
  background: #000;
  opacity: 0.3;
  border-radius: 2px;
  -moz-border-radius: 5px;
}

.lt-ie9 .irs-shadow {
  filter: alpha(opacity=30);
}

.irs-slider {
  top: 21px;
  width: 40px;
  height: 40px;
  border: 1px solid #d9d9d9;
  background: #d9d9d9 url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAPCAAAAADFBmC0AAAAAnRSTlMA/1uRIrUAAABbSURBVHgBdZAHAcAgDARj5hWhBCNIiRFE4IS9S/+gFLITSQVFWkDrWcUebosd/BAbs6XjJUM/mL5SfpouFD5JgE0fLIKU7ysulvIJMcIQaxKbVELqJl2SmZAJZi94HrCyu+grAAAAAElFTkSuQmCC") 50% 50% no-repeat;
  background-size: 22px 15px;
  border-radius: 20px;
  -moz-border-radius: 10px;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.irs-min, .irs-max {
  color: #333;
  font-size: 12px;
  line-height: 1.333;
  text-shadow: none;
  top: 0;
  padding: 1px 5px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  -moz-border-radius: 3px;
}

.irs-grid {
  height: 27px;
}

.irs-grid-pol {
  opacity: 0.5;
  background: #999;
}

.irs-grid-pol.small {
  background: #999;
}

.irs-grid-text {
  bottom: 5px;
  color: #99a4ac;
}

.irs-hidden-input,
.irs-hidden-input:hover,
.irs-hidden-input:active,
.irs-hidden-input:focus {
  outline: none !important;
  outline-width: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.irs-to,
.irs-from,
.irs-single,
.irs-slider,
.irs-bar,
.vtp-range-slider .range {
  -webkit-transition: left 0.3s cubic-bezier(0.19, 1, 0.22, 1), right 0.3s cubic-bezier(0.19, 1, 0.22, 1), width 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: left 0.3s cubic-bezier(0.19, 1, 0.22, 1), right 0.3s cubic-bezier(0.19, 1, 0.22, 1), width 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: left 0.3s cubic-bezier(0.19, 1, 0.22, 1), right 0.3s cubic-bezier(0.19, 1, 0.22, 1), width 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

@media only screen and (max-width: 1024px) {
  .irs-to,
  .irs-from,
  .irs-single,
  .irs-slider,
  .irs-bar,
  .vtp-range-slider .range {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.vtp-range-slider {
  max-width: 100%;
  overflow: hidden;
}
.vtp-range-slider .slider-label {
  cursor: default;
}
.vtp-range-slider .resultcount {
  display: none;
}

.vtp-range-sliders {
  *zoom: 1;
}
.vtp-range-sliders:before, .vtp-range-sliders:after {
  content: "";
  display: table;
}
.vtp-range-sliders:after {
  clear: both;
}
.vtp-range-sliders > .vtp-range-slider {
  float: left;
  clear: none;
  width: 99.8%;
  margin-left: 0;
  margin-right: 2.994%;
  margin-bottom: 54px;
  margin-bottom: 4.5rem;
  padding-right: 2px;
  padding-right: 0.1666666667rem;
}
.vtp-range-sliders > .vtp-range-slider:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 568px) {
  .vtp-range-sliders > .vtp-range-slider {
    margin-bottom: 48px;
    margin-bottom: 4rem;
    position: relative;
  }
}
.vtp-range-sliders.data-items-2 > .vtp-range-slider {
  float: left;
  clear: none;
  width: 48.403%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-range-sliders.data-items-2 > .vtp-range-slider:nth-of-type(n) {
  margin-right: 2.994%;
  float: left;
  clear: none;
}
.vtp-range-sliders.data-items-2 > .vtp-range-slider:nth-of-type(2n) {
  margin-right: 0;
  float: right;
}
.vtp-range-sliders.data-items-2 > .vtp-range-slider:nth-of-type(2n + 1) {
  clear: both;
}
@media only screen and (max-width: 568px) {
  .vtp-range-sliders.data-items-2 > .vtp-range-slider {
    float: left;
    clear: none;
    width: 99.8%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-range-sliders.data-items-2 > .vtp-range-slider:last-child {
    margin-right: 0;
  }
}
.vtp-range-sliders.data-items-3 > .vtp-range-slider {
  float: left;
  clear: none;
  width: 31.2706666667%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-range-sliders.data-items-3 > .vtp-range-slider:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 940px) {
  .vtp-range-sliders.data-items-3 > .vtp-range-slider {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-range-sliders.data-items-3 > .vtp-range-slider:nth-of-type(n) {
    margin-right: 2.994%;
    float: left;
    clear: none;
  }
  .vtp-range-sliders.data-items-3 > .vtp-range-slider:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .vtp-range-sliders.data-items-3 > .vtp-range-slider:nth-of-type(2n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 660px) {
  .vtp-range-sliders.data-items-3 > .vtp-range-slider {
    float: left;
    clear: none;
    width: 99.8%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-range-sliders.data-items-3 > .vtp-range-slider:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 940px) {
  .vtp-range-sliders.data-items-3 > div:last-child {
    margin-bottom: 36px;
    margin-bottom: 3rem;
  }
}
.vtp-range-sliders .range-triangle {
  background-color: #b0b6b8;
  position: relative;
  width: 96%;
  margin: 0 2%;
  margin-bottom: 50.00004px;
  margin-bottom: 4.16667rem;
  overflow: hidden;
}
.vtp-range-sliders .range-triangle .range {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: #c03;
  border-width: 0 2px;
  border-color: #ffffff;
  border-style: solid;
  min-width: 2%;
  margin-left: -2px;
  margin-right: -2px;
  margin-bottom: -1px;
  left: 0;
  right: 0;
}
.vtp-range-sliders .range-triangle .cover {
  width: 100%;
  padding-bottom: 21.23%;
  /* = width / 1.41 */
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 568px) {
  .vtp-range-sliders .range-triangle .cover {
    padding-bottom: 33.25%;
  }
}
.lt-ie9 .vtp-range-sliders .range-triangle .cover {
  padding-bottom: 0;
}
.vtp-range-sliders .range-triangle .cover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 102.3%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  -o-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: rotate(-12deg);
  -ms-transform: rotate(-12deg);
  -o-transform: rotate(-12deg);
  transform: rotate(-12deg);
}
@media only screen and (max-width: 568px) {
  .vtp-range-sliders .range-triangle .cover:before {
    width: 105.4%;
    -webkit-transform: rotate(-18deg);
    -ms-transform: rotate(-18deg);
    -o-transform: rotate(-18deg);
    transform: rotate(-18deg);
  }
}
.lt-ie9 .vtp-range-sliders .range-triangle .cover:before {
  display: none;
}
.vtp-range-sliders .range-triangle .cover img {
  /*only for IE < 9*/
  height: 100%;
  weight: 100%;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panels-container .vtp-range-sliders.vtp-module-seperator:after {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 320px) {
  .vtp-range-sliders .irs-single {
    font-size: 11px;
  }
}

[class*=off-dom], [class*=in-dom] {
  display: none;
}
[class*=off-dom].in, [class*=in-dom].in {
  display: block;
}

#area h3 {
  position: absolute;
  left: 8%;
  top: 35px;
  z-index: 100;
  margin-top: 0;
}

#filter-area-map {
  display: block;
  height: 520px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#filter-area-map .gm-style-cc > div {
  word-wrap: normal;
}

/* https://acsptaskmgmt.audi.com/jira/browse/ELVIS-1349 */
.ie9 #filter-area-map .gmnoprint {
  width: 50%;
}

/**
 * Car Teaser
 */
.car-teaser, .similar-car-item {
  *zoom: 1;
  margin-bottom: 20px;
  margin-bottom: 1.6666666667rem;
  padding-bottom: 12px;
  padding-bottom: 1rem;
  position: relative;
}
.car-teaser:before, .similar-car-item:before, .car-teaser:after, .similar-car-item:after {
  content: "";
  display: table;
}
.car-teaser:after, .similar-car-item:after {
  clear: both;
}
.car-teaser > div:first-child, .similar-car-item > div:first-child {
  position: relative;
}
.car-teaser h3, .similar-car-item h3 {
  margin-bottom: 1.2px;
  margin-bottom: 0.1rem;
  float: left;
  max-width: 90%;
  color: inherit;
  line-height: inherit;
}
@media only screen and (max-width: 768px) {
  .car-teaser h3, .similar-car-item h3 {
    max-width: 100%;
  }
}
.car-teaser img.vtp-icon, .similar-car-item img.vtp-icon {
  text-indent: 0 !important;
  margin-bottom: 0 !important;
  top: 45px;
  right: -15px;
  left: auto;
}
.car-teaser .envkv img.vtp-icon, .similar-car-item .envkv img.vtp-icon {
  height: 30px;
  width: 30px;
}
.car-teaser .envkv-link, .similar-car-item .envkv-link {
  cursor: hand;
}
.car-teaser .left-icons, .similar-car-item .left-icons {
  margin-bottom: 24px;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1024px) {
  .car-teaser .left-icons, .similar-car-item .left-icons {
    margin-bottom: 0;
    margin-bottom: 0;
  }
}
.car-teaser .left-icons.margin-bottom15px, .similar-car-item .left-icons.margin-bottom15px {
  margin-bottom: 15px;
}
.car-teaser .left-icons img, .similar-car-item .left-icons img {
  width: 60px;
}
.car-teaser .left-icons .textonly, .similar-car-item .left-icons .textonly {
  display: none;
}
.car-teaser .image-container, .similar-car-item .image-container {
  margin-bottom: 12px;
  margin-bottom: 1rem;
  background-color: #d0d3d4;
  cursor: pointer;
  padding-bottom: 75%;
  position: relative;
  height: 0;
  overflow: hidden;
}
.car-teaser .image-container img, .similar-car-item .image-container img {
  image-rendering: auto;
  -ms-interpolation-mode: nearest-neighbor;
}
.car-teaser .image-container.vtp-image-ratio_4x3, .similar-car-item .image-container.vtp-image-ratio_4x3 {
  padding-bottom: 75%;
}
.car-teaser .image-container.vtp-image-ratio_3x2, .similar-car-item .image-container.vtp-image-ratio_3x2 {
  padding-bottom: 66.666%;
}
.car-teaser .image-container.vtp-image-ratio_16x9, .similar-car-item .image-container.vtp-image-ratio_16x9 {
  padding-bottom: 56%;
}
.car-teaser .image-container.vtp-image-ratio_2_135x1, .similar-car-item .image-container.vtp-image-ratio_2_135x1 {
  padding-bottom: 64.5%;
}
.car-teaser .available, .similar-car-item .available {
  background-color: #e7e9ea;
  display: none;
  font-family: Verdana, sans-serif;
  font-size: 12px;
  left: 0;
  line-height: 1.2rem;
  padding: 4px;
  text-align: center;
  width: 100%;
}
.car-teaser .available a, .similar-car-item .available a {
  font-family: Verdana, sans-serif;
}
.car-teaser .media, .similar-car-item .media {
  position: relative;
}
.car-teaser .media .available, .similar-car-item .media .available {
  bottom: 0;
  display: block;
  position: absolute;
  z-index: 1;
}
@media only screen and (max-width: 568px) {
  .car-teaser .available, .similar-car-item .available {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .car-teaser .media, .similar-car-item .media {
    position: relative !important;
    z-index: 2;
  }
  .car-teaser .media .available, .similar-car-item .media .available {
    display: none;
  }
  #suggested-cars .car-teaser .media .available, #suggested-cars .similar-car-item .media .available {
    display: block;
    margin-bottom: 0px;
  }
  .car-teaser:first-child .available, .similar-car-item:first-child .available {
    margin-top: 0;
  }
}
.car-teaser .title-link, .similar-car-item .title-link {
  -webkit-transition: color 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 400ms cubic-bezier(0.19, 1, 0.22, 1);
  display: block;
  line-height: 22px;
}
.car-teaser .title-link:hover, .similar-car-item .title-link:hover {
  color: #c03;
  cursor: pointer;
}
.car-teaser .title-link.vtp-link-active, .similar-car-item .title-link.vtp-link-active {
  color: #c03;
}
.car-teaser .title-link .icon, .similar-car-item .title-link .icon {
  position: absolute;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -543px;
  background-repeat: no-repeat;
  width: 14px;
  height: 11px;
  display: inline-block;
  margin-left: 5px;
  margin-left: 0.4166666667rem;
  margin-top: 6.6px;
  margin-top: 0.55rem;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .car-teaser .title-link .icon, .similar-car-item .title-link .icon {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .car-teaser footer, .similar-car-item footer {
    margin-top: 2px !important;
  }
  .car-teaser .favorites-link i:last-child, .similar-car-item .favorites-link i:last-child {
    margin-top: 10px;
  }
  .car-teaser .left-icons, .similar-car-item .left-icons {
    margin-bottom: 14.4px;
    margin-bottom: 1.2rem;
  }
  .car-teaser .overview, .similar-car-item .overview {
    margin-bottom: 0;
  }
  .car-teaser .product-extras, .similar-car-item .product-extras {
    padding-top: 0 !important;
  }
}
.car-teaser .favorites-link, .similar-car-item .favorites-link {
  position: absolute;
  z-index: 100;
  right: 0;
  top: 0;
}
.car-teaser .description, .similar-car-item .description {
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: block;
  /* autoprefixer: off */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 3em;
}
@media only screen and (max-width: 568px) {
  .car-teaser .description, .similar-car-item .description {
    line-height: 1.35;
  }
}
.car-teaser .price, .similar-car-item .price {
  letter-spacing: 0;
  display: block;
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
  /*@include bp($bp-ll) {
    display: inline;
  }
  */
}
.car-teaser .price .printRate-icon, .similar-car-item .price .printRate-icon {
  display: none;
}
@media print {
  .car-teaser .price .has-info, .similar-car-item .price .has-info {
    display: none !important;
  }
}
.car-teaser .price small, .similar-car-item .price small, .car-teaser .price .small, .similar-car-item .price .small {
  font: inherit;
  font-weight: 400;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
}
@media only screen and (max-width: 568px) {
  .car-teaser .price, .similar-car-item .price {
    display: block;
  }
}
.car-teaser .dealer-link, .similar-car-item .dealer-link {
  font-family: Verdana, sans-serif;
}
@media only screen and (max-width: 940px) {
  .car-teaser .dealer-link, .similar-car-item .dealer-link {
    padding-left: 7px;
  }
  .car-teaser .dealer-link:before, .similar-car-item .dealer-link:before {
    content: "·";
    position: relative;
    left: -5px;
    top: 0;
  }
}
@media only screen and (max-width: 568px) {
  .car-teaser .dealer-link, .similar-car-item .dealer-link {
    padding-left: 0;
  }
  .car-teaser .dealer-link:before, .similar-car-item .dealer-link:before {
    content: "";
  }
}
.car-teaser footer, .similar-car-item footer {
  margin-top: 12px;
  margin-top: 1rem;
  line-height: 16.8px;
  line-height: 1.4rem;
  color: #6d7579;
  font-family: Verdana, sans-serif;
  padding-right: 2%;
}
.car-teaser footer p .rwd-br, .similar-car-item footer p .rwd-br {
  display: none;
}
@media only screen and (max-width: 940px) {
  .car-teaser footer p .rwd-br, .similar-car-item footer p .rwd-br {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .car-teaser footer p .rwd-br, .similar-car-item footer p .rwd-br {
    display: none;
  }
}
@media only screen and (max-width: 568px) {
  .car-teaser footer p .rwd-br, .similar-car-item footer p .rwd-br {
    display: block;
  }
}
@media only screen and (max-width: 568px) {
  .car-teaser footer .envkv-info.emission .rwd-br, .similar-car-item footer .envkv-info.emission .rwd-br {
    display: none;
  }
}
.car-teaser footer .tags li, .similar-car-item footer .tags li {
  display: inline-block;
  padding: 1px 3px;
  font-size: 10px;
  color: #fff;
  background-color: #b3bac0;
}
.car-teaser footer .car-teaser-options, .similar-car-item footer .car-teaser-options {
  width: 100%;
  clear: left;
}
.car-teaser footer .car-teaser-options .emission, .similar-car-item footer .car-teaser-options .emission {
  clear: left;
}
.car-teaser footer .car-teaser-options .vtp-link, .car-teaser footer .car-teaser-options .vtp-breadcrumb-item, .similar-car-item footer .car-teaser-options .vtp-link, .similar-car-item footer .car-teaser-options .vtp-breadcrumb-item {
  margin-top: 15px;
  margin-top: 1.25rem;
  margin-left: 20px;
  margin-left: 1.6666666667rem;
  min-height: 30px;
}
.car-teaser footer .car-teaser-options .compare-checkbox, .similar-car-item footer .car-teaser-options .compare-checkbox {
  float: left;
}
@media only screen and (max-width: 768px) {
  .car-teaser footer .car-teaser-options .compare-checkbox, .similar-car-item footer .car-teaser-options .compare-checkbox {
    display: block;
    width: 100%;
    float: none;
    margin-left: 0;
  }
}
.car-teaser footer .car-teaser-options .disabled, .similar-car-item footer .car-teaser-options .disabled {
  display: none;
  padding-left: 40px;
  font-family: Verdana, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4rem;
  margin: 10px 0;
  margin: 0.8333333333rem 0;
  height: 30px;
  color: #b0b6b8;
  pointer-events: none;
}
.car-teaser footer .car-teaser-options .disabled:before, .similar-car-item footer .car-teaser-options .disabled:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3212px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  content: "";
  display: block;
  position: absolute;
  left: 0;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .car-teaser footer .car-teaser-options .disabled:before, .similar-car-item footer .car-teaser-options .disabled:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .car-teaser footer .car-teaser-options .disabled:before, .similar-car-item footer .car-teaser-options .disabled:before {
    right: 0;
    left: auto;
  }
}
@media only screen and (max-width: 568px) {
  .car-teaser footer .car-teaser-options .disabled, .similar-car-item footer .car-teaser-options .disabled {
    padding-left: 0;
    width: 100%;
  }
}
.no-more-compares .car-teaser footer .car-teaser-options .disabled, .no-more-compares .similar-car-item footer .car-teaser-options .disabled {
  display: table;
  position: relative;
}
.no-more-compares .car-teaser footer .car-teaser-options .disabled span, .no-more-compares .similar-car-item footer .car-teaser-options .disabled span {
  display: table-cell;
  vertical-align: middle;
}
.car-teaser footer .car-teaser-options.no-more-compares, .similar-car-item footer .car-teaser-options.no-more-compares {
  display: none;
}
.car-teaser footer .car-teaser-options.no-more-compares .checkbox-primary + label.disabled:before, .similar-car-item footer .car-teaser-options.no-more-compares .checkbox-primary + label.disabled:before, .car-teaser footer .car-teaser-options.no-more-compares .checkbox-primary + .label.disabled:before, .similar-car-item footer .car-teaser-options.no-more-compares .checkbox-primary + .label.disabled:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3212px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .car-teaser footer .car-teaser-options.no-more-compares .checkbox-primary + label.disabled:before, .similar-car-item footer .car-teaser-options.no-more-compares .checkbox-primary + label.disabled:before, .car-teaser footer .car-teaser-options.no-more-compares .checkbox-primary + .label.disabled:before, .similar-car-item footer .car-teaser-options.no-more-compares .checkbox-primary + .label.disabled:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.car-teaser footer .car-teaser-options label, .similar-car-item footer .car-teaser-options label {
  font-family: Verdana, sans-serif;
  font-weight: 700;
  line-height: 21.6px;
  line-height: 1.8rem;
}
.car-teaser footer .car-teaser-options .checkbox-primary + label.add, .similar-car-item footer .car-teaser-options .checkbox-primary + label.add, .car-teaser footer .car-teaser-options .checkbox-primary + .label.add, .similar-car-item footer .car-teaser-options .checkbox-primary + .label.add, .car-teaser footer .car-teaser-options .checkbox-primary + label.added, .similar-car-item footer .car-teaser-options .checkbox-primary + label.added, .car-teaser footer .car-teaser-options .checkbox-primary + .label.added, .similar-car-item footer .car-teaser-options .checkbox-primary + .label.added {
  padding-left: 40px;
}
.car-teaser footer .car-teaser-options .checkbox-primary + label.add:before, .similar-car-item footer .car-teaser-options .checkbox-primary + label.add:before, .car-teaser footer .car-teaser-options .checkbox-primary + .label.add:before, .similar-car-item footer .car-teaser-options .checkbox-primary + .label.add:before, .car-teaser footer .car-teaser-options .checkbox-primary + label.added:before, .similar-car-item footer .car-teaser-options .checkbox-primary + label.added:before, .car-teaser footer .car-teaser-options .checkbox-primary + .label.added:before, .similar-car-item footer .car-teaser-options .checkbox-primary + .label.added:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3212px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  display: block !important;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .car-teaser footer .car-teaser-options .checkbox-primary + label.add:before, .similar-car-item footer .car-teaser-options .checkbox-primary + label.add:before, .car-teaser footer .car-teaser-options .checkbox-primary + .label.add:before, .similar-car-item footer .car-teaser-options .checkbox-primary + .label.add:before, .car-teaser footer .car-teaser-options .checkbox-primary + label.added:before, .similar-car-item footer .car-teaser-options .checkbox-primary + label.added:before, .car-teaser footer .car-teaser-options .checkbox-primary + .label.added:before, .similar-car-item footer .car-teaser-options .checkbox-primary + .label.added:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.car-teaser footer .car-teaser-options .checkbox-primary + label.add + label.remove, .similar-car-item footer .car-teaser-options .checkbox-primary + label.add + label.remove, .car-teaser footer .car-teaser-options .checkbox-primary + label.add + .label.remove, .similar-car-item footer .car-teaser-options .checkbox-primary + label.add + .label.remove, .car-teaser footer .car-teaser-options .checkbox-primary + .label.add + label.remove, .similar-car-item footer .car-teaser-options .checkbox-primary + .label.add + label.remove, .car-teaser footer .car-teaser-options .checkbox-primary + .label.add + .label.remove, .similar-car-item footer .car-teaser-options .checkbox-primary + .label.add + .label.remove, .car-teaser footer .car-teaser-options .checkbox-primary + label.added + label.remove, .similar-car-item footer .car-teaser-options .checkbox-primary + label.added + label.remove, .car-teaser footer .car-teaser-options .checkbox-primary + label.added + .label.remove, .similar-car-item footer .car-teaser-options .checkbox-primary + label.added + .label.remove, .car-teaser footer .car-teaser-options .checkbox-primary + .label.added + label.remove, .similar-car-item footer .car-teaser-options .checkbox-primary + .label.added + label.remove, .car-teaser footer .car-teaser-options .checkbox-primary + .label.added + .label.remove, .similar-car-item footer .car-teaser-options .checkbox-primary + .label.added + .label.remove {
  display: none;
}
.car-teaser footer .car-teaser-options .checkbox-primary + label.add + label.remove + label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary + label.add + label.remove + label.disabled, .car-teaser footer .car-teaser-options .checkbox-primary + label.add + label.remove + .label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary + label.add + label.remove + .label.disabled, .car-teaser footer .car-teaser-options .checkbox-primary + label.add + .label.remove + label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary + label.add + .label.remove + label.disabled, .car-teaser footer .car-teaser-options .checkbox-primary + label.add + .label.remove + .label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary + label.add + .label.remove + .label.disabled, .car-teaser footer .car-teaser-options .checkbox-primary + .label.add + label.remove + label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary + .label.add + label.remove + label.disabled, .car-teaser footer .car-teaser-options .checkbox-primary + .label.add + label.remove + .label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary + .label.add + label.remove + .label.disabled, .car-teaser footer .car-teaser-options .checkbox-primary + .label.add + .label.remove + label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary + .label.add + .label.remove + label.disabled, .car-teaser footer .car-teaser-options .checkbox-primary + .label.add + .label.remove + .label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary + .label.add + .label.remove + .label.disabled, .car-teaser footer .car-teaser-options .checkbox-primary + label.added + label.remove + label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary + label.added + label.remove + label.disabled, .car-teaser footer .car-teaser-options .checkbox-primary + label.added + label.remove + .label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary + label.added + label.remove + .label.disabled, .car-teaser footer .car-teaser-options .checkbox-primary + label.added + .label.remove + label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary + label.added + .label.remove + label.disabled, .car-teaser footer .car-teaser-options .checkbox-primary + label.added + .label.remove + .label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary + label.added + .label.remove + .label.disabled, .car-teaser footer .car-teaser-options .checkbox-primary + .label.added + label.remove + label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary + .label.added + label.remove + label.disabled, .car-teaser footer .car-teaser-options .checkbox-primary + .label.added + label.remove + .label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary + .label.added + label.remove + .label.disabled, .car-teaser footer .car-teaser-options .checkbox-primary + .label.added + .label.remove + label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary + .label.added + .label.remove + label.disabled, .car-teaser footer .car-teaser-options .checkbox-primary + .label.added + .label.remove + .label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary + .label.added + .label.remove + .label.disabled {
  display: none;
}
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.add, .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.add,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.add,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.add,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.added,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.added,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.added,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.added {
  display: none;
}
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.add + label.remove, .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.add + label.remove, .car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.add + .label.remove, .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.add + .label.remove,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.add + label.remove,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.add + label.remove,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.add + .label.remove,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.add + .label.remove,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.added + label.remove,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.added + label.remove,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.added + .label.remove,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.added + .label.remove,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.added + label.remove,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.added + label.remove,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.added + .label.remove,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.added + .label.remove {
  display: none;
}
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.add + label.remove + label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.add + label.remove + label.disabled, .car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.add + label.remove + .label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.add + label.remove + .label.disabled, .car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.add + .label.remove + label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.add + .label.remove + label.disabled, .car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.add + .label.remove + .label.disabled, .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.add + .label.remove + .label.disabled,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.add + label.remove + label.disabled,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.add + label.remove + label.disabled,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.add + label.remove + .label.disabled,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.add + label.remove + .label.disabled,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.add + .label.remove + label.disabled,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.add + .label.remove + label.disabled,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.add + .label.remove + .label.disabled,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.add + .label.remove + .label.disabled,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.added + label.remove + label.disabled,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.added + label.remove + label.disabled,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.added + label.remove + .label.disabled,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.added + label.remove + .label.disabled,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.added + .label.remove + label.disabled,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.added + .label.remove + label.disabled,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.added + .label.remove + .label.disabled,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.added + .label.remove + .label.disabled,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.added + label.remove + label.disabled,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.added + label.remove + label.disabled,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.added + label.remove + .label.disabled,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.added + label.remove + .label.disabled,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.added + .label.remove + label.disabled,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.added + .label.remove + label.disabled,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.added + .label.remove + .label.disabled,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.added + .label.remove + .label.disabled {
  display: block;
  cursor: default;
}
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.add + label.remove + label.disabled:before, .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.add + label.remove + label.disabled:before, .car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.add + label.remove + .label.disabled:before, .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.add + label.remove + .label.disabled:before, .car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.add + .label.remove + label.disabled:before, .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.add + .label.remove + label.disabled:before, .car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.add + .label.remove + .label.disabled:before, .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.add + .label.remove + .label.disabled:before,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.add + label.remove + label.disabled:before,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.add + label.remove + label.disabled:before,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.add + label.remove + .label.disabled:before,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.add + label.remove + .label.disabled:before,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.add + .label.remove + label.disabled:before,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.add + .label.remove + label.disabled:before,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.add + .label.remove + .label.disabled:before,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.add + .label.remove + .label.disabled:before,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.added + label.remove + label.disabled:before,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.added + label.remove + label.disabled:before,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.added + label.remove + .label.disabled:before,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.added + label.remove + .label.disabled:before,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.added + .label.remove + label.disabled:before,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.added + .label.remove + label.disabled:before,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.added + .label.remove + .label.disabled:before,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.added + .label.remove + .label.disabled:before,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.added + label.remove + label.disabled:before,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.added + label.remove + label.disabled:before,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.added + label.remove + .label.disabled:before,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.added + label.remove + .label.disabled:before,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.added + .label.remove + label.disabled:before,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.added + .label.remove + label.disabled:before,
.car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.added + .label.remove + .label.disabled:before,
.similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.added + .label.remove + .label.disabled:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3212px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  content: " ";
  display: block;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.add + label.remove + label.disabled:before, .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.add + label.remove + label.disabled:before, .car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.add + label.remove + .label.disabled:before, .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.add + label.remove + .label.disabled:before, .car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.add + .label.remove + label.disabled:before, .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.add + .label.remove + label.disabled:before, .car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.add + .label.remove + .label.disabled:before, .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.add + .label.remove + .label.disabled:before,
  .car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.add + label.remove + label.disabled:before,
  .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.add + label.remove + label.disabled:before,
  .car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.add + label.remove + .label.disabled:before,
  .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.add + label.remove + .label.disabled:before,
  .car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.add + .label.remove + label.disabled:before,
  .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.add + .label.remove + label.disabled:before,
  .car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.add + .label.remove + .label.disabled:before,
  .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.add + .label.remove + .label.disabled:before,
  .car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.added + label.remove + label.disabled:before,
  .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.added + label.remove + label.disabled:before,
  .car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.added + label.remove + .label.disabled:before,
  .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.added + label.remove + .label.disabled:before,
  .car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.added + .label.remove + label.disabled:before,
  .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.added + .label.remove + label.disabled:before,
  .car-teaser footer .car-teaser-options .checkbox-primary:disabled + label.added + .label.remove + .label.disabled:before,
  .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + label.added + .label.remove + .label.disabled:before,
  .car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.added + label.remove + label.disabled:before,
  .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.added + label.remove + label.disabled:before,
  .car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.added + label.remove + .label.disabled:before,
  .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.added + label.remove + .label.disabled:before,
  .car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.added + .label.remove + label.disabled:before,
  .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.added + .label.remove + label.disabled:before,
  .car-teaser footer .car-teaser-options .checkbox-primary:disabled + .label.added + .label.remove + .label.disabled:before,
  .similar-car-item footer .car-teaser-options .checkbox-primary:disabled + .label.added + .label.remove + .label.disabled:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.car-teaser footer .car-teaser-options .checkbox-primary:checked + label.add, .similar-car-item footer .car-teaser-options .checkbox-primary:checked + label.add,
.car-teaser footer .car-teaser-options .checkbox-primary:checked + .label.add,
.similar-car-item footer .car-teaser-options .checkbox-primary:checked + .label.add,
.car-teaser footer .car-teaser-options .checkbox-primary:checked + label.added,
.similar-car-item footer .car-teaser-options .checkbox-primary:checked + label.added,
.car-teaser footer .car-teaser-options .checkbox-primary:checked + .label.added,
.similar-car-item footer .car-teaser-options .checkbox-primary:checked + .label.added {
  display: none;
}
.car-teaser footer .car-teaser-options .checkbox-primary:checked + label.add + label.remove, .similar-car-item footer .car-teaser-options .checkbox-primary:checked + label.add + label.remove, .car-teaser footer .car-teaser-options .checkbox-primary:checked + label.add + .label.remove, .similar-car-item footer .car-teaser-options .checkbox-primary:checked + label.add + .label.remove,
.car-teaser footer .car-teaser-options .checkbox-primary:checked + .label.add + label.remove,
.similar-car-item footer .car-teaser-options .checkbox-primary:checked + .label.add + label.remove,
.car-teaser footer .car-teaser-options .checkbox-primary:checked + .label.add + .label.remove,
.similar-car-item footer .car-teaser-options .checkbox-primary:checked + .label.add + .label.remove,
.car-teaser footer .car-teaser-options .checkbox-primary:checked + label.added + label.remove,
.similar-car-item footer .car-teaser-options .checkbox-primary:checked + label.added + label.remove,
.car-teaser footer .car-teaser-options .checkbox-primary:checked + label.added + .label.remove,
.similar-car-item footer .car-teaser-options .checkbox-primary:checked + label.added + .label.remove,
.car-teaser footer .car-teaser-options .checkbox-primary:checked + .label.added + label.remove,
.similar-car-item footer .car-teaser-options .checkbox-primary:checked + .label.added + label.remove,
.car-teaser footer .car-teaser-options .checkbox-primary:checked + .label.added + .label.remove,
.similar-car-item footer .car-teaser-options .checkbox-primary:checked + .label.added + .label.remove {
  display: block;
}
.car-teaser footer .car-teaser-options .checkbox-primary:checked + label.add + label.remove:before, .similar-car-item footer .car-teaser-options .checkbox-primary:checked + label.add + label.remove:before, .car-teaser footer .car-teaser-options .checkbox-primary:checked + label.add + .label.remove:before, .similar-car-item footer .car-teaser-options .checkbox-primary:checked + label.add + .label.remove:before,
.car-teaser footer .car-teaser-options .checkbox-primary:checked + .label.add + label.remove:before,
.similar-car-item footer .car-teaser-options .checkbox-primary:checked + .label.add + label.remove:before,
.car-teaser footer .car-teaser-options .checkbox-primary:checked + .label.add + .label.remove:before,
.similar-car-item footer .car-teaser-options .checkbox-primary:checked + .label.add + .label.remove:before,
.car-teaser footer .car-teaser-options .checkbox-primary:checked + label.added + label.remove:before,
.similar-car-item footer .car-teaser-options .checkbox-primary:checked + label.added + label.remove:before,
.car-teaser footer .car-teaser-options .checkbox-primary:checked + label.added + .label.remove:before,
.similar-car-item footer .car-teaser-options .checkbox-primary:checked + label.added + .label.remove:before,
.car-teaser footer .car-teaser-options .checkbox-primary:checked + .label.added + label.remove:before,
.similar-car-item footer .car-teaser-options .checkbox-primary:checked + .label.added + label.remove:before,
.car-teaser footer .car-teaser-options .checkbox-primary:checked + .label.added + .label.remove:before,
.similar-car-item footer .car-teaser-options .checkbox-primary:checked + .label.added + .label.remove:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3452px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  content: " ";
  display: block;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .car-teaser footer .car-teaser-options .checkbox-primary:checked + label.add + label.remove:before, .similar-car-item footer .car-teaser-options .checkbox-primary:checked + label.add + label.remove:before, .car-teaser footer .car-teaser-options .checkbox-primary:checked + label.add + .label.remove:before, .similar-car-item footer .car-teaser-options .checkbox-primary:checked + label.add + .label.remove:before,
  .car-teaser footer .car-teaser-options .checkbox-primary:checked + .label.add + label.remove:before,
  .similar-car-item footer .car-teaser-options .checkbox-primary:checked + .label.add + label.remove:before,
  .car-teaser footer .car-teaser-options .checkbox-primary:checked + .label.add + .label.remove:before,
  .similar-car-item footer .car-teaser-options .checkbox-primary:checked + .label.add + .label.remove:before,
  .car-teaser footer .car-teaser-options .checkbox-primary:checked + label.added + label.remove:before,
  .similar-car-item footer .car-teaser-options .checkbox-primary:checked + label.added + label.remove:before,
  .car-teaser footer .car-teaser-options .checkbox-primary:checked + label.added + .label.remove:before,
  .similar-car-item footer .car-teaser-options .checkbox-primary:checked + label.added + .label.remove:before,
  .car-teaser footer .car-teaser-options .checkbox-primary:checked + .label.added + label.remove:before,
  .similar-car-item footer .car-teaser-options .checkbox-primary:checked + .label.added + label.remove:before,
  .car-teaser footer .car-teaser-options .checkbox-primary:checked + .label.added + .label.remove:before,
  .similar-car-item footer .car-teaser-options .checkbox-primary:checked + .label.added + .label.remove:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .car-teaser footer .car-teaser-options label, .similar-car-item footer .car-teaser-options label {
    text-align: left;
  }
  .car-teaser footer .car-teaser-options label:after, .similar-car-item footer .car-teaser-options label:after {
    display: none;
  }
}
@media only screen and (max-width: 568px) {
  .car-teaser, .similar-car-item {
    border-bottom: 0;
  }
  .car-teaser > div:first-child, .similar-car-item > div:first-child {
    position: static;
  }
  .car-teaser .favorites-link, .similar-car-item .favorites-link {
    position: static;
  }
  #suggested-cars .car-teaser .favorites-link, #suggested-cars .similar-car-item .favorites-link {
    position: absolute;
  }
  #suggested-cars .car-teaser .favorites-link i, #suggested-cars .similar-car-item .favorites-link i {
    margin-top: 0px;
  }
  .car-teaser h3, .similar-car-item h3 {
    margin-top: 0;
    font-size: 14px;
  }
  .car-teaser .title-link .icon, .similar-car-item .title-link .icon {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -316px;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .car-teaser .title-link .icon, .similar-car-item .title-link .icon {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.car-teaser .picture, .similar-car-item .picture {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}
.car-teaser .picture.portrait img, .similar-car-item .picture.portrait img {
  width: auto !important;
  height: 100%;
  max-height: 100%;
}
@media only screen and (max-width: 768px) {
  .car-teaser .envkv, .similar-car-item .envkv {
    position: inherit;
    right: 0;
    display: inline-block;
  }
  .car-teaser .envkv img, .similar-car-item .envkv img {
    display: inline;
  }
  .car-teaser .product-extras .left-icons, .similar-car-item .product-extras .left-icons {
    position: relative;
  }
  .car-teaser .left-icons img.vtp-icon, .similar-car-item .left-icons img.vtp-icon {
    display: none !important;
  }
  .car-teaser .left-icons .textonly, .similar-car-item .left-icons .textonly {
    display: inline-block !important;
    font-size: 12px;
    margin: 0 !important;
  }
  .car-teaser .envkv, .similar-car-item .envkv {
    position: relative !important;
    left: 0;
    top: 0 !important;
    margin-bottom: 0;
    width: 100%;
  }
  .car-teaser .envkv.notext, .similar-car-item .envkv.notext {
    display: none;
  }
  .car-teaser .vtp-grid-view .envkv.noicon, .similar-car-item .vtp-grid-view .envkv.noicon {
    padding-left: 0;
    padding-right: 12px;
  }
  .car-teaser .vtp-icon-envkv, .similar-car-item .vtp-icon-envkv {
    display: block;
    height: 30px;
    margin-top: 10px;
    width: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .car-teaser .left-icons img.vtp-icon, .similar-car-item .left-icons img.vtp-icon {
    display: none !important;
  }
  .car-teaser .left-icons .textonly, .similar-car-item .left-icons .textonly {
    display: inline-block !important;
    font-size: 12px;
    margin: 0 !important;
  }
}
.car-teaser .printRate, .similar-car-item .printRate {
  display: none;
}

/**
 * Grid View
 */
.vtp-grid-view .car-teaser .vtp-buyOnline-avail, .vtp-grid-view .similar-car-item .vtp-buyOnline-avail, .vtp-grid-view .car-teaser .vtp-reserve-avail, .vtp-grid-view .similar-car-item .vtp-reserve-avail {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .vtp-grid-view .car-teaser .product-extras, .vtp-grid-view .similar-car-item .product-extras {
    float: none;
  }
}
.vtp-grid-view .car-teaser .image-container.vtp-image-ratio_4x3, .vtp-grid-view .similar-car-item .image-container.vtp-image-ratio_4x3 {
  padding-bottom: 75%;
}
.vtp-grid-view .car-teaser .image-container.vtp-image-ratio_3x2, .vtp-grid-view .similar-car-item .image-container.vtp-image-ratio_3x2 {
  padding-bottom: 66.666%;
}
.vtp-grid-view .car-teaser .image-container.vtp-image-ratio_16x9, .vtp-grid-view .similar-car-item .image-container.vtp-image-ratio_16x9 {
  padding-bottom: 56%;
}
.vtp-grid-view .car-teaser .image-container.vtp-image-ratio_2_135x1, .vtp-grid-view .similar-car-item .image-container.vtp-image-ratio_2_135x1 {
  padding-bottom: 64.5%;
}
.vtp-grid-view .car-teaser-options {
  top: 12px;
  top: 1rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .vtp-grid-view .car-teaser-options {
    border-top: 0;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-grid-view .car-teaser-options {
    margin-top: 12px;
    margin-top: 1rem;
    border-top: 1px solid #cdd0d2;
    top: 0;
  }
}

/**
 * List View
 */
.vtp-list-view .car-teaser .vtp-buyOnline-avail, .vtp-list-view .similar-car-item .vtp-buyOnline-avail, .vtp-list-view .car-teaser .vtp-reserve-avail, .vtp-list-view .similar-car-item .vtp-reserve-avail {
  margin: 20px 0;
  margin: 1.66667rem 0;
}
@media only screen and (max-width: 568px) {
  .vtp-list-view .car-teaser-options {
    margin-top: 12px;
    margin-top: 1rem;
    border-top: 1px solid #cdd0d2;
    top: 0;
  }
}
.vtp-list-view .car-teaser .image-container.vtp-image-ratio_4x3, .vtp-list-view .similar-car-item .image-container.vtp-image-ratio_4x3 {
  padding-bottom: 37.5%;
}
.vtp-list-view .car-teaser .image-container.vtp-image-ratio_3x2, .vtp-list-view .similar-car-item .image-container.vtp-image-ratio_3x2 {
  padding-bottom: 33.333%;
}
.vtp-list-view .car-teaser .image-container.vtp-image-ratio_16x9, .vtp-list-view .similar-car-item .image-container.vtp-image-ratio_16x9 {
  padding-bottom: 28%;
}
.vtp-list-view .car-teaser .image-container.vtp-image-ratio_2_135x1, .vtp-list-view .similar-car-item .image-container.vtp-image-ratio_2_135x1 {
  padding-bottom: 32.25%;
}
@media only screen and (max-width: 1024px) {
  .vtp-list-view .car-teaser .image-container.vtp-image-ratio_4x3, .vtp-list-view .similar-car-item .image-container.vtp-image-ratio_4x3 {
    padding-bottom: 75%;
  }
  .vtp-list-view .car-teaser .image-container.vtp-image-ratio_3x2, .vtp-list-view .similar-car-item .image-container.vtp-image-ratio_3x2 {
    padding-bottom: 66.666%;
  }
  .vtp-list-view .car-teaser .image-container.vtp-image-ratio_16x9, .vtp-list-view .similar-car-item .image-container.vtp-image-ratio_16x9 {
    padding-bottom: 56%;
  }
  .vtp-list-view .car-teaser .image-container.vtp-image-ratio_2_135x1, .vtp-list-view .similar-car-item .image-container.vtp-image-ratio_2_135x1 {
    padding-bottom: 64.5%;
  }
}

/**
 * IE specific
 */
.lt-ie9 .car-teaser .picture.portrait, .lt-ie9 .similar-car-item .picture.portrait {
  text-align: center;
}

.no-more-compares .car-teaser footer .car-teaser-options .add, .no-more-compares .similar-car-item footer .car-teaser-options .add, .no-more-compares .car-teaser footer .car-teaser-options .added, .no-more-compares .similar-car-item footer .car-teaser-options .added,
.no-more-compares .car-teaser footer .car-teaser-options .remove,
.no-more-compares .similar-car-item footer .car-teaser-options .remove {
  display: none;
}
.no-more-compares .car-teaser footer .no-more-compares, .no-more-compares .similar-car-item footer .no-more-compares {
  display: block;
}
.no-more-compares .car-teaser.comparing footer .car-teaser-options .add, .no-more-compares .comparing.similar-car-item footer .car-teaser-options .add,
.no-more-compares .car-teaser.comparing footer .car-teaser-options .added,
.no-more-compares .comparing.similar-car-item footer .car-teaser-options .added,
.no-more-compares .car-teaser.comparing footer .car-teaser-options .remove,
.no-more-compares .comparing.similar-car-item footer .car-teaser-options .remove {
  display: block;
}
.no-more-compares .car-teaser.comparing footer .no-more-compares, .no-more-compares .comparing.similar-car-item footer .no-more-compares {
  display: none;
}

/**
 * Flyout
 */
.vtp-flyout .favorites-list {
  padding-top: 1.5em;
}
.vtp-flyout .car-teaser img, .vtp-flyout .similar-car-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
}
.vtp-flyout .car-teaser .media, .vtp-flyout .similar-car-item .media {
  float: left;
  clear: none;
  width: 31.2706666667%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-flyout .car-teaser .media:last-child, .vtp-flyout .similar-car-item .media:last-child {
  margin-right: 0;
}
.vtp-flyout .car-teaser .details, .vtp-flyout .similar-car-item .details {
  float: left;
  clear: none;
  width: 65.5353333333%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-flyout .car-teaser .details:last-child, .vtp-flyout .similar-car-item .details:last-child {
  margin-right: 0;
}
.vtp-flyout .car-teaser .description, .vtp-flyout .similar-car-item .description {
  overflow: visible !important;
  text-overflow: initial !important;
  display: block !important;
  -webkit-line-clamp: initial !important;
  -webkit-box-orient: initial !important;
  max-height: none !important;
  margin-bottom: 0.5em;
}
.vtp-flyout .car-teaser .title-link:before, .vtp-flyout .similar-car-item .title-link:before {
  display: none;
}
.vtp-flyout .car-teaser .title-link h3, .vtp-flyout .similar-car-item .title-link h3 {
  font-size: 15px;
}

.vtp-modal.rate-popup ul {
  margin-bottom: 0;
  padding-bottom: 5px;
}
.vtp-modal.rate-popup li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 11px;
}
@media only screen and (max-width: 568px) {
  .vtp-modal.rate-popup li {
    display: block;
  }
}
.vtp-modal.rate-popup li .rate-data-description {
  width: 305px;
  margin: 0;
  font-weight: 700;
}
@media only screen and (max-width: 568px) {
  .vtp-modal.rate-popup li .rate-data-description {
    width: 100%;
    display: block;
  }
}
.vtp-modal.rate-popup li .rate-data-value {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.vtp-modal.rate-popup footer {
  margin-top: 0;
  border: 0;
}
.vtp-modal.rate-popup.active {
  max-width: 700px;
}
.vtp-modal.rate-popup .container {
  padding: 25px 0 35px 0;
}
.vtp-modal.rate-popup .h3, .vtp-modal.rate-popup .vtp-dealer-info-box .name, .vtp-dealer-info-box .vtp-modal.rate-popup .name, .vtp-modal.rate-popup .lead, .vtp-modal.rate-popup .vtp-modals dt, .vtp-modals .vtp-modal.rate-popup dt, .vtp-modal.rate-popup .vtp-range-slider .slider-label, .vtp-range-slider .vtp-modal.rate-popup .slider-label {
  font-size: 26px;
  margin-bottom: 9px;
}
@media only screen and (max-width: 568px) {
  .vtp-modal.rate-popup .h3, .vtp-modal.rate-popup .vtp-dealer-info-box .name, .vtp-dealer-info-box .vtp-modal.rate-popup .name, .vtp-modal.rate-popup .lead, .vtp-modal.rate-popup .vtp-modals dt, .vtp-modals .vtp-modal.rate-popup dt, .vtp-modal.rate-popup .vtp-range-slider .slider-label, .vtp-range-slider .vtp-modal.rate-popup .slider-label {
    font-size: 21px;
  }
}
.vtp-modal.rate-popup .subheadline {
  font-size: 18px;
  margin-bottom: 40px;
}

/**
 * MIXIN - Car Teaser List
 */
/**
 * Car Teaser
 */
.car-teaser .printonly, .similar-car-item .printonly {
  display: none;
}
@media only screen and (max-width: 568px) {
  .car-teaser .printonly, .similar-car-item .printonly {
    display: none;
  }
}
@media print {
  .car-teaser .printonly, .similar-car-item .printonly {
    display: block !important;
  }
}
.car-teaser .product-extras, .similar-car-item .product-extras {
  float: left;
  margin-right: 5px;
}
.car-teaser .product-extras .left-icons, .similar-car-item .product-extras .left-icons,
.car-teaser .product-extras .right-icons,
.similar-car-item .product-extras .right-icons {
  float: left;
}
.car-teaser .product-extras .right-icons, .similar-car-item .product-extras .right-icons {
  padding-left: 5px;
}
.car-teaser .product-extras .vtp-icon, .similar-car-item .product-extras .vtp-icon {
  display: block;
  overflow: hidden;
  margin-bottom: 15px;
  text-indent: -300px;
}

@media only screen and (max-width: 1024px) {
  .favorites-panel.resultstyle-caapproach .vtp-results-view .car-teaser .picture:nth-of-type(2), .favorites-panel.resultstyle-caapproach .vtp-results-view .similar-car-item .picture:nth-of-type(2) {
    display: none;
  }
}

/**
 * VTP Results View
 */
.vtp-results-view .car-teaser footer, .vtp-results-view .similar-car-item footer, #suggested-cars .car-teaser footer, #suggested-cars .similar-car-item footer {
  color: #000;
  margin: 0;
}
.vtp-results-view .car-teaser .picture:nth-of-type(2), .vtp-results-view .similar-car-item .picture:nth-of-type(2), #suggested-cars .car-teaser .picture:nth-of-type(2), #suggested-cars .similar-car-item .picture:nth-of-type(2) {
  display: none;
}
.vtp-results-view .car-teaser .details, .vtp-results-view .similar-car-item .details, #suggested-cars .car-teaser .details, #suggested-cars .similar-car-item .details {
  padding-left: 0;
}
.vtp-results-view .car-teaser .dealer-link, .vtp-results-view .similar-car-item .dealer-link, #suggested-cars .car-teaser .dealer-link, #suggested-cars .similar-car-item .dealer-link {
  display: block;
  padding-left: 0;
}
.vtp-results-view .car-teaser .dealer-link a, .vtp-results-view .similar-car-item .dealer-link a, #suggested-cars .car-teaser .dealer-link a, #suggested-cars .similar-car-item .dealer-link a {
  text-decoration: none;
}
.vtp-results-view .car-teaser .dealer-link:before, .vtp-results-view .similar-car-item .dealer-link:before, #suggested-cars .car-teaser .dealer-link:before, #suggested-cars .similar-car-item .dealer-link:before {
  display: none !important;
}
.vtp-results-view .car-teaser .aoz-data, .vtp-results-view .similar-car-item .aoz-data,
.vtp-results-view .car-teaser .summary-data,
.vtp-results-view .similar-car-item .summary-data, #suggested-cars .car-teaser .aoz-data, #suggested-cars .similar-car-item .aoz-data,
#suggested-cars .car-teaser .summary-data,
#suggested-cars .similar-car-item .summary-data {
  display: block;
}
.vtp-results-view .car-teaser .aoz-data, .vtp-results-view .similar-car-item .aoz-data, #suggested-cars .car-teaser .aoz-data, #suggested-cars .similar-car-item .aoz-data {
  margin-bottom: 12px;
  margin-bottom: 1rem;
}
.vtp-results-view .vtp-suggested-cars-item .car-teaser .price, .vtp-results-view .vtp-suggested-cars-item .similar-car-item .price, #suggested-cars .vtp-suggested-cars-item .car-teaser .price, #suggested-cars .vtp-suggested-cars-item .similar-car-item .price {
  display: block;
  position: relative;
  padding-right: 30px;
}
.vtp-results-view .vtp-suggested-cars-item .car-teaser .price.pricemargin, .vtp-results-view .vtp-suggested-cars-item .similar-car-item .price.pricemargin, #suggested-cars .vtp-suggested-cars-item .car-teaser .price.pricemargin, #suggested-cars .vtp-suggested-cars-item .similar-car-item .price.pricemargin {
  margin-bottom: 20px;
}
.vtp-results-view .vtp-suggested-cars-item .car-teaser .has-info, .vtp-results-view .vtp-suggested-cars-item .similar-car-item .has-info, #suggested-cars .vtp-suggested-cars-item .car-teaser .has-info, #suggested-cars .vtp-suggested-cars-item .similar-car-item .has-info {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 0;
}
.vtp-results-view .vtp-suggested-cars-item .car-teaser .dealer-link, .vtp-results-view .vtp-suggested-cars-item .similar-car-item .dealer-link, #suggested-cars .vtp-suggested-cars-item .car-teaser .dealer-link, #suggested-cars .vtp-suggested-cars-item .similar-car-item .dealer-link {
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  .vtp-results-view .vtp-suggested-cars-item .car-teaser, .vtp-results-view .vtp-suggested-cars-item .similar-car-item, #suggested-cars .vtp-suggested-cars-item .car-teaser, #suggested-cars .vtp-suggested-cars-item .similar-car-item {
    clear: none !important;
    float: left !important;
  }
  .vtp-results-view .vtp-suggested-cars-item .car-teaser .vtp-tooltip, .vtp-results-view .vtp-suggested-cars-item .similar-car-item .vtp-tooltip, #suggested-cars .vtp-suggested-cars-item .car-teaser .vtp-tooltip, #suggested-cars .vtp-suggested-cars-item .similar-car-item .vtp-tooltip {
    max-width: 190px;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-results-view .vtp-suggested-cars-item .car-teaser, .vtp-results-view .vtp-suggested-cars-item .similar-car-item, #suggested-cars .vtp-suggested-cars-item .car-teaser, #suggested-cars .vtp-suggested-cars-item .similar-car-item {
    margin-right: 0 !important;
  }
}
@media only screen and (min-width: 768px) {
  .vtp-results-view .vtp-suggested-cars-item .car-teaser .vtp-tooltip, .vtp-results-view .vtp-suggested-cars-item .similar-car-item .vtp-tooltip, #suggested-cars .vtp-suggested-cars-item .car-teaser .vtp-tooltip, #suggested-cars .vtp-suggested-cars-item .similar-car-item .vtp-tooltip {
    max-width: 100%;
  }
}
.vtp-grid-view .vtp-results-view .car-teaser .price, .vtp-grid-view .vtp-results-view .similar-car-item .price, .vtp-grid-view #suggested-cars .car-teaser .price, .vtp-grid-view #suggested-cars .similar-car-item .price {
  display: block;
  position: relative;
  padding-right: 30px;
}
.vtp-grid-view .vtp-results-view .car-teaser .price.pricemargin, .vtp-grid-view .vtp-results-view .similar-car-item .price.pricemargin, .vtp-grid-view #suggested-cars .car-teaser .price.pricemargin, .vtp-grid-view #suggested-cars .similar-car-item .price.pricemargin {
  margin-bottom: 20px;
}
.vtp-grid-view .vtp-results-view .car-teaser .has-info, .vtp-grid-view .vtp-results-view .similar-car-item .has-info, .vtp-grid-view #suggested-cars .car-teaser .has-info, .vtp-grid-view #suggested-cars .similar-car-item .has-info {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 0;
}
.vtp-grid-view .vtp-results-view .car-teaser .dealer-link, .vtp-grid-view .vtp-results-view .similar-car-item .dealer-link, .vtp-grid-view #suggested-cars .car-teaser .dealer-link, .vtp-grid-view #suggested-cars .similar-car-item .dealer-link {
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  .vtp-grid-view .vtp-results-view .car-teaser, .vtp-grid-view .vtp-results-view .similar-car-item, .vtp-grid-view #suggested-cars .car-teaser, .vtp-grid-view #suggested-cars .similar-car-item {
    clear: none !important;
    float: left !important;
  }
  .vtp-grid-view .vtp-results-view .car-teaser .vtp-tooltip, .vtp-grid-view .vtp-results-view .similar-car-item .vtp-tooltip, .vtp-grid-view #suggested-cars .car-teaser .vtp-tooltip, .vtp-grid-view #suggested-cars .similar-car-item .vtp-tooltip {
    max-width: 190px;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-grid-view .vtp-results-view .car-teaser, .vtp-grid-view .vtp-results-view .similar-car-item, .vtp-grid-view #suggested-cars .car-teaser, .vtp-grid-view #suggested-cars .similar-car-item {
    margin-right: 0 !important;
  }
}
@media only screen and (min-width: 768px) {
  .vtp-grid-view .vtp-results-view .car-teaser .vtp-tooltip, .vtp-grid-view .vtp-results-view .similar-car-item .vtp-tooltip, .vtp-grid-view #suggested-cars .car-teaser .vtp-tooltip, .vtp-grid-view #suggested-cars .similar-car-item .vtp-tooltip {
    max-width: 100%;
  }
}
.flexbox .resultstyle-ukapproach .vtp-grid-view .vtp-results-view, .flexbox .resultstyle-caapproach .vtp-grid-view .vtp-results-view, .flexbox .resultstyle-jpapproach .vtp-grid-view .vtp-results-view, .flexbox .resultstyle-ukapproach .vtp-grid-view #suggested-cars, .flexbox .resultstyle-caapproach .vtp-grid-view #suggested-cars, .flexbox .resultstyle-jpapproach .vtp-grid-view #suggested-cars {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}
.flexbox .resultstyle-ukapproach .vtp-grid-view .vtp-results-view fieldset, .flexbox .resultstyle-caapproach .vtp-grid-view .vtp-results-view fieldset, .flexbox .resultstyle-jpapproach .vtp-grid-view .vtp-results-view fieldset, .flexbox .resultstyle-ukapproach .vtp-grid-view #suggested-cars fieldset, .flexbox .resultstyle-caapproach .vtp-grid-view #suggested-cars fieldset, .flexbox .resultstyle-jpapproach .vtp-grid-view #suggested-cars fieldset {
  margin-top: auto;
}
.flexbox .resultstyle-ukapproach .vtp-grid-view .vtp-results-view footer,
.flexbox .resultstyle-ukapproach .vtp-grid-view .vtp-results-view .result-listview-right-column, .flexbox .resultstyle-caapproach .vtp-grid-view .vtp-results-view footer,
.flexbox .resultstyle-caapproach .vtp-grid-view .vtp-results-view .result-listview-right-column, .flexbox .resultstyle-jpapproach .vtp-grid-view .vtp-results-view footer,
.flexbox .resultstyle-jpapproach .vtp-grid-view .vtp-results-view .result-listview-right-column, .flexbox .resultstyle-ukapproach .vtp-grid-view #suggested-cars footer,
.flexbox .resultstyle-ukapproach .vtp-grid-view #suggested-cars .result-listview-right-column, .flexbox .resultstyle-caapproach .vtp-grid-view #suggested-cars footer,
.flexbox .resultstyle-caapproach .vtp-grid-view #suggested-cars .result-listview-right-column, .flexbox .resultstyle-jpapproach .vtp-grid-view #suggested-cars footer,
.flexbox .resultstyle-jpapproach .vtp-grid-view #suggested-cars .result-listview-right-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.flexbox .resultstyle-ukapproach .vtp-grid-view .vtp-results-view .car-teaser, .flexbox .resultstyle-ukapproach .vtp-grid-view .vtp-results-view .similar-car-item, .flexbox .resultstyle-caapproach .vtp-grid-view .vtp-results-view .car-teaser, .flexbox .resultstyle-caapproach .vtp-grid-view .vtp-results-view .similar-car-item, .flexbox .resultstyle-jpapproach .vtp-grid-view .vtp-results-view .car-teaser, .flexbox .resultstyle-jpapproach .vtp-grid-view .vtp-results-view .similar-car-item, .flexbox .resultstyle-ukapproach .vtp-grid-view #suggested-cars .car-teaser, .flexbox .resultstyle-ukapproach .vtp-grid-view #suggested-cars .similar-car-item, .flexbox .resultstyle-caapproach .vtp-grid-view #suggested-cars .car-teaser, .flexbox .resultstyle-caapproach .vtp-grid-view #suggested-cars .similar-car-item, .flexbox .resultstyle-jpapproach .vtp-grid-view #suggested-cars .car-teaser, .flexbox .resultstyle-jpapproach .vtp-grid-view #suggested-cars .similar-car-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flexbox .resultstyle-ukapproach .vtp-grid-view .vtp-results-view .details, .flexbox .resultstyle-caapproach .vtp-grid-view .vtp-results-view .details, .flexbox .resultstyle-jpapproach .vtp-grid-view .vtp-results-view .details, .flexbox .resultstyle-ukapproach .vtp-grid-view #suggested-cars .details, .flexbox .resultstyle-caapproach .vtp-grid-view #suggested-cars .details, .flexbox .resultstyle-jpapproach .vtp-grid-view #suggested-cars .details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media only screen and (min-width: 768px) {
  .flexbox .vtp-grid-view .vtp-results-view, .flexbox .vtp-grid-view #suggested-cars {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flexbox .vtp-grid-view .vtp-results-view fieldset, .flexbox .vtp-grid-view #suggested-cars fieldset {
    margin-top: auto;
  }
  .flexbox .vtp-grid-view .vtp-results-view footer,
  .flexbox .vtp-grid-view .vtp-results-view .result-listview-right-column, .flexbox .vtp-grid-view #suggested-cars footer,
  .flexbox .vtp-grid-view #suggested-cars .result-listview-right-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
  }
  .flexbox .vtp-grid-view .vtp-results-view footer .dealer-link,
  .flexbox .vtp-grid-view .vtp-results-view .result-listview-right-column .dealer-link, .flexbox .vtp-grid-view #suggested-cars footer .dealer-link,
  .flexbox .vtp-grid-view #suggested-cars .result-listview-right-column .dealer-link {
    width: 100%;
  }
  .flexbox .vtp-grid-view .vtp-results-view .car-teaser, .flexbox .vtp-grid-view .vtp-results-view .similar-car-item, .flexbox .vtp-grid-view #suggested-cars .car-teaser, .flexbox .vtp-grid-view #suggested-cars .similar-car-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flexbox .vtp-grid-view .vtp-results-view .details, .flexbox .vtp-grid-view #suggested-cars .details {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.vtp-list-view .vtp-results-view .car-teaser, .vtp-list-view .vtp-results-view .similar-car-item, .vtp-list-view #suggested-cars .car-teaser, .vtp-list-view #suggested-cars .similar-car-item {
  border-bottom: 1px solid #d7dadb;
}
.vtp-list-view .vtp-results-view .car-teaser > div.media, .vtp-list-view .vtp-results-view .similar-car-item > div.media, .vtp-list-view #suggested-cars .car-teaser > div.media, .vtp-list-view #suggested-cars .similar-car-item > div.media {
  float: left;
  clear: none;
  width: 31.2706666667%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-list-view .vtp-results-view .car-teaser > div.media:last-child, .vtp-list-view .vtp-results-view .similar-car-item > div.media:last-child, .vtp-list-view #suggested-cars .car-teaser > div.media:last-child, .vtp-list-view #suggested-cars .similar-car-item > div.media:last-child {
  margin-right: 0;
}
.vtp-list-view .vtp-results-view .car-teaser > div.details, .vtp-list-view .vtp-results-view .similar-car-item > div.details, .vtp-list-view #suggested-cars .car-teaser > div.details, .vtp-list-view #suggested-cars .similar-car-item > div.details {
  float: left;
  clear: none;
  width: 65.5353333333%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-list-view .vtp-results-view .car-teaser > div.details:last-child, .vtp-list-view .vtp-results-view .similar-car-item > div.details:last-child, .vtp-list-view #suggested-cars .car-teaser > div.details:last-child, .vtp-list-view #suggested-cars .similar-car-item > div.details:last-child {
  margin-right: 0;
}
.vtp-list-view .vtp-results-view .car-teaser .right-icons, .vtp-list-view .vtp-results-view .similar-car-item .right-icons, .vtp-list-view #suggested-cars .car-teaser .right-icons, .vtp-list-view #suggested-cars .similar-car-item .right-icons {
  padding-left: 0;
}
.vtp-list-view .vtp-results-view .car-teaser .image-container, .vtp-list-view .vtp-results-view .similar-car-item .image-container, .vtp-list-view #suggested-cars .car-teaser .image-container, .vtp-list-view #suggested-cars .similar-car-item .image-container {
  margin-bottom: 0;
}
@media only screen and (max-width: 568px) {
  .vtp-list-view .vtp-results-view .car-teaser .image-container, .vtp-list-view .vtp-results-view .similar-car-item .image-container, .vtp-list-view #suggested-cars .car-teaser .image-container, .vtp-list-view #suggested-cars .similar-car-item .image-container {
    margin-bottom: 12px;
    margin-bottom: 1rem;
  }
}
.vtp-list-view .vtp-results-view .car-teaser.has-product-extras > div.details, .vtp-list-view .vtp-results-view .has-product-extras.similar-car-item > div.details, .vtp-list-view #suggested-cars .car-teaser.has-product-extras > div.details, .vtp-list-view #suggested-cars .has-product-extras.similar-car-item > div.details {
  padding-right: 80px;
}
.vtp-list-view .vtp-results-view .car-teaser .product-extras .left-icons i, .vtp-list-view .vtp-results-view .similar-car-item .product-extras .left-icons i, .vtp-list-view #suggested-cars .car-teaser .product-extras .left-icons i, .vtp-list-view #suggested-cars .similar-car-item .product-extras .left-icons i {
  font-style: normal !important;
}
.vtp-list-view .vtp-results-view .car-teaser .product-extras .left-icons .vtp-brand, .vtp-list-view .vtp-results-view .similar-car-item .product-extras .left-icons .vtp-brand, .vtp-list-view #suggested-cars .car-teaser .product-extras .left-icons .vtp-brand, .vtp-list-view #suggested-cars .similar-car-item .product-extras .left-icons .vtp-brand {
  font-weight: 700;
}
.vtp-list-view .vtp-results-view .car-teaser .product-extras .left-icons .vtp-icon-audi-plus + .vtp-icon-5fj-warranty, .vtp-list-view .vtp-results-view .similar-car-item .product-extras .left-icons .vtp-icon-audi-plus + .vtp-icon-5fj-warranty, .vtp-list-view #suggested-cars .car-teaser .product-extras .left-icons .vtp-icon-audi-plus + .vtp-icon-5fj-warranty, .vtp-list-view #suggested-cars .similar-car-item .product-extras .left-icons .vtp-icon-audi-plus + .vtp-icon-5fj-warranty {
  position: relative;
  right: -12px;
}
.vtp-list-view .vtp-results-view .car-teaser > div.details, .vtp-list-view .vtp-results-view .similar-car-item > div.details, .vtp-list-view #suggested-cars .car-teaser > div.details, .vtp-list-view #suggested-cars .similar-car-item > div.details {
  float: left;
  margin-right: 0;
  padding-right: 80px;
  width: 65.66667%;
}
@media only screen and (max-width: 568px) {
  .vtp-list-view .vtp-results-view .car-teaser, .vtp-list-view .vtp-results-view .similar-car-item, .vtp-list-view #suggested-cars .car-teaser, .vtp-list-view #suggested-cars .similar-car-item {
    margin-bottom: 24px;
    margin-bottom: 2rem;
    padding-bottom: 0;
  }
  .vtp-list-view .vtp-results-view .car-teaser p.emission, .vtp-list-view .vtp-results-view .similar-car-item p.emission, .vtp-list-view #suggested-cars .car-teaser p.emission, .vtp-list-view #suggested-cars .similar-car-item p.emission {
    margin-bottom: 15px;
  }
  .vtp-list-view .vtp-results-view .car-teaser p.correctTop, .vtp-list-view .vtp-results-view .similar-car-item p.correctTop, .vtp-list-view #suggested-cars .car-teaser p.correctTop, .vtp-list-view #suggested-cars .similar-car-item p.correctTop {
    margin-top: -45px;
    padding-left: 38px;
  }
  .ios .vtp-list-view .vtp-results-view .car-teaser p.correctTop, .ios .vtp-list-view .vtp-results-view .similar-car-item p.correctTop, .ios .vtp-list-view #suggested-cars .car-teaser p.correctTop, .ios .vtp-list-view #suggested-cars .similar-car-item p.correctTop {
    margin-top: 0;
  }
  .vtp-list-view .vtp-results-view .car-teaser footer, .vtp-list-view .vtp-results-view .similar-car-item footer, .vtp-list-view #suggested-cars .car-teaser footer, .vtp-list-view #suggested-cars .similar-car-item footer {
    padding-right: 0;
    position: relative;
    left: -34.3333%;
  }
  .vtp-list-view .vtp-results-view .car-teaser .title-link, .vtp-list-view .vtp-results-view .similar-car-item .title-link, .vtp-list-view #suggested-cars .car-teaser .title-link, .vtp-list-view #suggested-cars .similar-car-item .title-link {
    display: inline-block;
  }
  .vtp-list-view .vtp-results-view .car-teaser.has-product-extras > div.details, .vtp-list-view .vtp-results-view .has-product-extras.similar-car-item > div.details, .vtp-list-view #suggested-cars .car-teaser.has-product-extras > div.details, .vtp-list-view #suggested-cars .has-product-extras.similar-car-item > div.details {
    padding-right: 0;
  }
  .vtp-list-view .vtp-results-view .car-teaser > div.details, .vtp-list-view .vtp-results-view .similar-car-item > div.details, .vtp-list-view #suggested-cars .car-teaser > div.details, .vtp-list-view #suggested-cars .similar-car-item > div.details {
    float: none;
    padding-left: 34.3333%;
    padding-right: 0;
    width: 100%;
  }
  .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .vtp-list-view #suggested-cars .car-teaser > div.details footer, .vtp-list-view #suggested-cars .similar-car-item > div.details footer {
    width: 152.2%;
    left: -52.2%;
  }
  .vtp-list-view .vtp-results-view .car-teaser > div.details > p, .vtp-list-view .vtp-results-view .similar-car-item > div.details > p,
  .vtp-list-view .vtp-results-view .car-teaser > div.details .title-link,
  .vtp-list-view .vtp-results-view .similar-car-item > div.details .title-link, .vtp-list-view #suggested-cars .car-teaser > div.details > p, .vtp-list-view #suggested-cars .similar-car-item > div.details > p,
  .vtp-list-view #suggested-cars .car-teaser > div.details .title-link,
  .vtp-list-view #suggested-cars .similar-car-item > div.details .title-link {
    width: auto;
  }
  .vtp-list-view .vtp-results-view .car-teaser > div.details .title-link, .vtp-list-view .vtp-results-view .similar-car-item > div.details .title-link, .vtp-list-view #suggested-cars .car-teaser > div.details .title-link, .vtp-list-view #suggested-cars .similar-car-item > div.details .title-link {
    width: 65.6667%;
  }
  .vtp-list-view .vtp-results-view .car-teaser .product-extras, .vtp-list-view .vtp-results-view .similar-car-item .product-extras, .vtp-list-view #suggested-cars .car-teaser .product-extras, .vtp-list-view #suggested-cars .similar-car-item .product-extras {
    width: 100%;
    float: none;
    padding-top: 10px;
  }
  .vtp-list-view .vtp-results-view .car-teaser .product-extras .right-icons, .vtp-list-view .vtp-results-view .similar-car-item .product-extras .right-icons, .vtp-list-view #suggested-cars .car-teaser .product-extras .right-icons, .vtp-list-view #suggested-cars .similar-car-item .product-extras .right-icons {
    min-height: 35px;
    padding-top: 6px;
  }
  .vtp-list-view .vtp-results-view .car-teaser .product-extras .left-icons, .vtp-list-view .vtp-results-view .similar-car-item .product-extras .left-icons, .vtp-list-view #suggested-cars .car-teaser .product-extras .left-icons, .vtp-list-view #suggested-cars .similar-car-item .product-extras .left-icons {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }
  .vtp-list-view .vtp-results-view .car-teaser .product-extras .left-icons .vtp-icon, .vtp-list-view .vtp-results-view .similar-car-item .product-extras .left-icons .vtp-icon, .vtp-list-view #suggested-cars .car-teaser .product-extras .left-icons .vtp-icon, .vtp-list-view #suggested-cars .similar-car-item .product-extras .left-icons .vtp-icon {
    background: none;
    width: auto;
    display: inline;
    text-indent: 0;
  }
  .vtp-list-view .vtp-results-view .car-teaser .product-extras .left-icons .vtp-icon .vtp-brand, .vtp-list-view .vtp-results-view .similar-car-item .product-extras .left-icons .vtp-icon .vtp-brand,
  .vtp-list-view .vtp-results-view .car-teaser .product-extras .left-icons .vtp-icon .vtp-brand.italic, .vtp-list-view #suggested-cars .car-teaser .product-extras .left-icons .vtp-icon .vtp-brand, .vtp-list-view #suggested-cars .similar-car-item .product-extras .left-icons .vtp-icon .vtp-brand,
  .vtp-list-view #suggested-cars .car-teaser .product-extras .left-icons .vtp-icon .vtp-brand.italic {
    font-family: "AudiTypeExtBold", Verdana, sans-serif;
    font-weight: 700;
  }
}
@media only screen and (max-width: 400px) {
  .vtp-list-view .vtp-results-view .car-teaser .product-extras, .vtp-list-view .vtp-results-view .similar-car-item .product-extras, .vtp-list-view #suggested-cars .car-teaser .product-extras, .vtp-list-view #suggested-cars .similar-car-item .product-extras {
    padding-top: 20px;
  }
  .vtp-list-view .vtp-results-view .car-teaser > div.media, .vtp-list-view .vtp-results-view .similar-car-item > div.media, .vtp-list-view #suggested-cars .car-teaser > div.media, .vtp-list-view #suggested-cars .similar-car-item > div.media {
    padding-bottom: 20px;
  }
  .vtp-list-view .vtp-results-view .car-teaser .right-icons, .vtp-list-view .vtp-results-view .similar-car-item .right-icons, .vtp-list-view #suggested-cars .car-teaser .right-icons, .vtp-list-view #suggested-cars .similar-car-item .right-icons {
    padding-top: 0;
  }
}
.vtp-list-view .vtp-results-view .car-teaser .rwd-br, .vtp-list-view .vtp-results-view .similar-car-item .rwd-br,
.vtp-list-view .vtp-results-view .car-teaser .price br,
.vtp-list-view .vtp-results-view .similar-car-item .price br, .vtp-list-view #suggested-cars .car-teaser .rwd-br, .vtp-list-view #suggested-cars .similar-car-item .rwd-br,
.vtp-list-view #suggested-cars .car-teaser .price br,
.vtp-list-view #suggested-cars .similar-car-item .price br {
  display: none !important;
}
.vtp-list-view .vtp-results-view .car-teaser .picture, .vtp-list-view .vtp-results-view .similar-car-item .picture, .vtp-list-view #suggested-cars .car-teaser .picture, .vtp-list-view #suggested-cars .similar-car-item .picture {
  right: 50%;
}
.vtp-list-view .vtp-results-view .car-teaser .picture:nth-of-type(2), .vtp-list-view .vtp-results-view .similar-car-item .picture:nth-of-type(2), .vtp-list-view #suggested-cars .car-teaser .picture:nth-of-type(2), .vtp-list-view #suggested-cars .similar-car-item .picture:nth-of-type(2) {
  display: block;
  left: 50%;
  right: 0;
}
.vtp-list-view .vtp-results-view .car-teaser .picture > img, .vtp-list-view .vtp-results-view .similar-car-item .picture > img, .vtp-list-view #suggested-cars .car-teaser .picture > img, .vtp-list-view #suggested-cars .similar-car-item .picture > img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
.vtp-list-view .vtp-results-view .car-teaser .price.pricemargin, .vtp-list-view .vtp-results-view .similar-car-item .price.pricemargin, .vtp-list-view #suggested-cars .car-teaser .price.pricemargin, .vtp-list-view #suggested-cars .similar-car-item .price.pricemargin {
  margin-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .vtp-list-view .vtp-results-view .car-teaser .picture, .vtp-list-view .vtp-results-view .similar-car-item .picture, .vtp-list-view #suggested-cars .car-teaser .picture, .vtp-list-view #suggested-cars .similar-car-item .picture {
    display: block;
    float: none;
    clear: none;
    width: 100%;
  }
  .vtp-list-view .vtp-results-view .car-teaser .picture img, .vtp-list-view .vtp-results-view .similar-car-item .picture img, .vtp-list-view #suggested-cars .car-teaser .picture img, .vtp-list-view #suggested-cars .similar-car-item .picture img {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .vtp-list-view .vtp-results-view .car-teaser .picture:last-child, .vtp-list-view .vtp-results-view .similar-car-item .picture:last-child, .vtp-list-view #suggested-cars .car-teaser .picture:last-child, .vtp-list-view #suggested-cars .similar-car-item .picture:last-child {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-list-view .vtp-results-view .car-teaser .price br, .vtp-list-view .vtp-results-view .similar-car-item .price br, .vtp-list-view #suggested-cars .car-teaser .price br, .vtp-list-view #suggested-cars .similar-car-item .price br {
    display: block;
  }
}

.flexbox .vtp-list-view .vtp-results-view {
  display: block;
}

.vtp-results-page .resultstyle-jpapproach .car-teaser .car-teaser-aaa, .vtp-results-page .resultstyle-jpapproach .similar-car-item .car-teaser-aaa {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1566px;
  background-repeat: no-repeat;
  width: 49px;
  height: 20px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-results-page .resultstyle-jpapproach .car-teaser .car-teaser-aaa, .vtp-results-page .resultstyle-jpapproach .similar-car-item .car-teaser-aaa {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-results-page .resultstyle-jpapproach .car-teaser-aaa {
  float: right;
}
.vtp-results-page .resultstyle-jpapproach.vtp-grid-view {
  /*
      @include bp($bp-m) {
        .result-listview-left-column,
        .result-listview-right-column {
          min-height: 260px;
        }
        .result-listview-footer {
          width: 100%;

          label {
            display: block;
          }
        }
      }

      @include bp($bp-m, true) {
        fieldset {
          @include rem(top, 1);
        }

        .result-listview-right-column {
          min-height: 100px;
        }
      }
  */
}
.vtp-results-page .resultstyle-jpapproach.vtp-grid-view .details {
  position: relative;
}
.vtp-results-page .resultstyle-jpapproach.vtp-grid-view .result-listview-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.vtp-results-page .resultstyle-jpapproach.vtp-grid-view .car-teaser-aaa {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 2rem;
}

.vtp-favorites .resultstyle-jpapproach .car-teaser .details, .vtp-favorites .resultstyle-jpapproach .similar-car-item .details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 0 !important;
}
.vtp-favorites .resultstyle-jpapproach .car-teaser .result-listview-left-column, .vtp-favorites .resultstyle-jpapproach .similar-car-item .result-listview-left-column {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.vtp-favorites .resultstyle-jpapproach .car-teaser .result-listview-right-column, .vtp-favorites .resultstyle-jpapproach .similar-car-item .result-listview-right-column {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: right;
}
.vtp-favorites .resultstyle-jpapproach .car-teaser .result-listview-footer, .vtp-favorites .resultstyle-jpapproach .similar-car-item .result-listview-footer {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0;
}
.vtp-favorites .resultstyle-jpapproach .car-teaser .price.pricemargin, .vtp-favorites .resultstyle-jpapproach .similar-car-item .price.pricemargin {
  line-height: 24px;
  margin-bottom: 10px;
}
.vtp-favorites .resultstyle-jpapproach .car-teaser .special-offer, .vtp-favorites .resultstyle-jpapproach .similar-car-item .special-offer, .vtp-favorites .resultstyle-jpapproach .car-teaser .contact-dealer, .vtp-favorites .resultstyle-jpapproach .similar-car-item .contact-dealer, .vtp-favorites .resultstyle-jpapproach .car-teaser .dealer-link, .vtp-favorites .resultstyle-jpapproach .similar-car-item .dealer-link {
  margin-bottom: 6px;
}
.vtp-favorites .resultstyle-jpapproach .car-teaser .car-teaser-aaa, .vtp-favorites .resultstyle-jpapproach .similar-car-item .car-teaser-aaa {
  margin-bottom: 6px;
  float: right;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1566px;
  background-repeat: no-repeat;
  width: 49px;
  height: 20px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-favorites .resultstyle-jpapproach .car-teaser .car-teaser-aaa, .vtp-favorites .resultstyle-jpapproach .similar-car-item .car-teaser-aaa {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (min-width: 568px) {
  .vtp-favorites .resultstyle-jpapproach .car-teaser .result-listview-left-column, .vtp-favorites .resultstyle-jpapproach .similar-car-item .result-listview-left-column {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .vtp-favorites .resultstyle-jpapproach .car-teaser .result-listview-right-column, .vtp-favorites .resultstyle-jpapproach .similar-car-item .result-listview-right-column {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: right;
  }
}
.vtp-favorites .resultstyle-jpapproach .result-listview-container {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
}
.vtp-favorites .resultstyle-jpapproach .car-teaser-aaa {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .vtp-favorites .resultstyle-jpapproach .result-listview-left-column,
  .vtp-favorites .resultstyle-jpapproach .result-listview-right-column {
    min-height: 120px;
  }
  .vtp-favorites .resultstyle-jpapproach .result-listview-footer {
    width: 100%;
  }
  .vtp-favorites .resultstyle-jpapproach .result-listview-footer label {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .vtp-favorites .resultstyle-jpapproach fieldset {
    top: 12px;
    top: 1rem;
  }
  .vtp-favorites .resultstyle-jpapproach .result-listview-right-column {
    min-height: 100px;
  }
}
.vtp-favorites .resultstyle-jpapproach.vtp-list-view .result-listview-left-column {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .vtp-favorites .resultstyle-jpapproach.vtp-list-view {
    /*
          .result-listview-right-column {
            margin-top: 55px;
          }
    */
  }
  .vtp-favorites .resultstyle-jpapproach.vtp-list-view .car-teaser-aaa {
    top: 0;
    right: 0;
    position: absolute;
  }
  .vtp-favorites .resultstyle-jpapproach.vtp-list-view .details {
    min-height: 170px;
  }
}
@media only screen and (min-width: 568px) {
  .vtp-favorites .resultstyle-jpapproach.vtp-list-view .details {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .vtp-favorites .resultstyle-jpapproach.vtp-list-view .car-teaser-aaa {
    float: right;
    margin-top: 16px;
    margin-bottom: 6px;
  }
  .vtp-favorites .resultstyle-jpapproach.vtp-list-view .special-offer, .vtp-favorites .resultstyle-jpapproach.vtp-list-view .contact-dealer, .vtp-favorites .resultstyle-jpapproach.vtp-list-view .dealer-link {
    float: right;
    clear: both;
  }
}
@media only screen and (min-width: 768px) {
  .vtp-favorites .resultstyle-jpapproach.vtp-list-view .result-listview-right-column {
    margin-top: 55px;
  }
  .vtp-favorites .resultstyle-jpapproach.vtp-list-view .details {
    min-height: 170px;
  }
}
.ie9 .vtp-favorites .resultstyle-jpapproach .vtp-list-view footer {
  position: relative !important;
  margin-top: 30px;
}
.ie9 .vtp-favorites .resultstyle-jpapproach .vtp-list-view footer .compare-checkbox {
  float: right;
}
.ie9 .vtp-favorites .resultstyle-jpapproach .vtp-list-view .car-teaser-aaa {
  top: 0;
  right: 0;
  position: absolute;
}
.ie9 .vtp-favorites .resultstyle-jpapproach .vtp-list-view .special-offer {
  margin-top: 50px;
}
.ie9 .vtp-favorites .resultstyle-jpapproach .vtp-list-view .details {
  min-height: 170px;
}
@media only screen and (min-width: 568px) {
  .vtp-favorites .resultstyle-jpapproach footer fieldset {
    top: 0;
  }
}
@media only screen and (min-width: 768px) {
  .vtp-favorites .resultstyle-jpapproach footer {
    margin-left: 0;
    margin-top: 0;
  }
}

@media only screen and (max-width: 567px) {
  .vtp-results-page .vtp-results-view .car-teaser, .vtp-results-page .vtp-results-view .similar-car-item,
  .vtp-favorites .vtp-results-view .car-teaser,
  .vtp-favorites .vtp-results-view .similar-car-item,
  .vtp-online-reservation .vtp-results-view .car-teaser,
  .vtp-online-reservation .vtp-results-view .similar-car-item {
    border-bottom: none;
  }
  .vtp-results-page .vtp-results-view .car-teaser > div.media, .vtp-results-page .vtp-results-view .similar-car-item > div.media,
  .vtp-favorites .vtp-results-view .car-teaser > div.media,
  .vtp-favorites .vtp-results-view .similar-car-item > div.media,
  .vtp-online-reservation .vtp-results-view .car-teaser > div.media,
  .vtp-online-reservation .vtp-results-view .similar-car-item > div.media {
    float: none;
    margin: 0;
    width: auto;
    position: relative;
  }
  .vtp-results-page .vtp-results-view .car-teaser > div.media .available, .vtp-results-page .vtp-results-view .similar-car-item > div.media .available,
  .vtp-favorites .vtp-results-view .car-teaser > div.media .available,
  .vtp-favorites .vtp-results-view .similar-car-item > div.media .available,
  .vtp-online-reservation .vtp-results-view .car-teaser > div.media .available,
  .vtp-online-reservation .vtp-results-view .similar-car-item > div.media .available {
    display: block;
  }
  .vtp-results-page.vtp-list-view .car-teaser-options, .vtp-results-page .vtp-list-view .car-teaser-options,
  .vtp-favorites.vtp-list-view .car-teaser-options,
  .vtp-favorites .vtp-list-view .car-teaser-options,
  .vtp-online-reservation.vtp-list-view .car-teaser-options,
  .vtp-online-reservation .vtp-list-view .car-teaser-options {
    position: relative;
  }
  .vtp-results-page.vtp-list-view .car-teaser .price-grid, .vtp-results-page.vtp-list-view .similar-car-item .price-grid, .vtp-results-page .vtp-list-view .car-teaser .price-grid, .vtp-results-page .vtp-list-view .similar-car-item .price-grid,
  .vtp-favorites.vtp-list-view .car-teaser .price-grid,
  .vtp-favorites.vtp-list-view .similar-car-item .price-grid,
  .vtp-favorites .vtp-list-view .car-teaser .price-grid,
  .vtp-favorites .vtp-list-view .similar-car-item .price-grid,
  .vtp-online-reservation.vtp-list-view .car-teaser .price-grid,
  .vtp-online-reservation.vtp-list-view .similar-car-item .price-grid,
  .vtp-online-reservation .vtp-list-view .car-teaser .price-grid,
  .vtp-online-reservation .vtp-list-view .similar-car-item .price-grid {
    display: block;
  }
  .vtp-results-page.vtp-grid-view .vtp-results-view .car-teaser > div.details, .vtp-results-page.vtp-grid-view .vtp-results-view .similar-car-item > div.details,
  .vtp-results-page .vtp-grid-view .vtp-results-view .car-teaser > div.details,
  .vtp-results-page .vtp-grid-view .vtp-results-view .similar-car-item > div.details, .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details, .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details,
  .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details,
  .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details,
  .vtp-favorites.vtp-grid-view .vtp-results-view .car-teaser > div.details,
  .vtp-favorites.vtp-grid-view .vtp-results-view .similar-car-item > div.details,
  .vtp-favorites .vtp-grid-view .vtp-results-view .car-teaser > div.details,
  .vtp-favorites .vtp-grid-view .vtp-results-view .similar-car-item > div.details,
  .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details,
  .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details,
  .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details,
  .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details,
  .vtp-online-reservation.vtp-grid-view .vtp-results-view .car-teaser > div.details,
  .vtp-online-reservation.vtp-grid-view .vtp-results-view .similar-car-item > div.details,
  .vtp-online-reservation .vtp-grid-view .vtp-results-view .car-teaser > div.details,
  .vtp-online-reservation .vtp-grid-view .vtp-results-view .similar-car-item > div.details,
  .vtp-online-reservation.vtp-list-view .vtp-results-view .car-teaser > div.details,
  .vtp-online-reservation.vtp-list-view .vtp-results-view .similar-car-item > div.details,
  .vtp-online-reservation .vtp-list-view .vtp-results-view .car-teaser > div.details,
  .vtp-online-reservation .vtp-list-view .vtp-results-view .similar-car-item > div.details {
    padding-left: 0;
    margin-bottom: 60px;
    padding-right: 0;
    width: 100%;
    margin-top: 10px;
  }
  .vtp-results-page.vtp-grid-view .vtp-results-view .car-teaser > div.details footer, .vtp-results-page.vtp-grid-view .vtp-results-view .similar-car-item > div.details footer,
  .vtp-results-page .vtp-grid-view .vtp-results-view .car-teaser > div.details footer,
  .vtp-results-page .vtp-grid-view .vtp-results-view .similar-car-item > div.details footer, .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details footer,
  .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details footer,
  .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details footer,
  .vtp-favorites.vtp-grid-view .vtp-results-view .car-teaser > div.details footer,
  .vtp-favorites.vtp-grid-view .vtp-results-view .similar-car-item > div.details footer,
  .vtp-favorites .vtp-grid-view .vtp-results-view .car-teaser > div.details footer,
  .vtp-favorites .vtp-grid-view .vtp-results-view .similar-car-item > div.details footer,
  .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details footer,
  .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details footer,
  .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details footer,
  .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details footer,
  .vtp-online-reservation.vtp-grid-view .vtp-results-view .car-teaser > div.details footer,
  .vtp-online-reservation.vtp-grid-view .vtp-results-view .similar-car-item > div.details footer,
  .vtp-online-reservation .vtp-grid-view .vtp-results-view .car-teaser > div.details footer,
  .vtp-online-reservation .vtp-grid-view .vtp-results-view .similar-car-item > div.details footer,
  .vtp-online-reservation.vtp-list-view .vtp-results-view .car-teaser > div.details footer,
  .vtp-online-reservation.vtp-list-view .vtp-results-view .similar-car-item > div.details footer,
  .vtp-online-reservation .vtp-list-view .vtp-results-view .car-teaser > div.details footer,
  .vtp-online-reservation .vtp-list-view .vtp-results-view .similar-car-item > div.details footer {
    width: 100%;
    left: 0;
  }
  .vtp-results-page.vtp-grid-view .vtp-results-view .car-teaser > div.details footer .car-teaser-options, .vtp-results-page.vtp-grid-view .vtp-results-view .similar-car-item > div.details footer .car-teaser-options,
  .vtp-results-page .vtp-grid-view .vtp-results-view .car-teaser > div.details footer .car-teaser-options,
  .vtp-results-page .vtp-grid-view .vtp-results-view .similar-car-item > div.details footer .car-teaser-options, .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details footer .car-teaser-options, .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details footer .car-teaser-options,
  .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details footer .car-teaser-options,
  .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details footer .car-teaser-options,
  .vtp-favorites.vtp-grid-view .vtp-results-view .car-teaser > div.details footer .car-teaser-options,
  .vtp-favorites.vtp-grid-view .vtp-results-view .similar-car-item > div.details footer .car-teaser-options,
  .vtp-favorites .vtp-grid-view .vtp-results-view .car-teaser > div.details footer .car-teaser-options,
  .vtp-favorites .vtp-grid-view .vtp-results-view .similar-car-item > div.details footer .car-teaser-options,
  .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details footer .car-teaser-options,
  .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details footer .car-teaser-options,
  .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details footer .car-teaser-options,
  .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details footer .car-teaser-options,
  .vtp-online-reservation.vtp-grid-view .vtp-results-view .car-teaser > div.details footer .car-teaser-options,
  .vtp-online-reservation.vtp-grid-view .vtp-results-view .similar-car-item > div.details footer .car-teaser-options,
  .vtp-online-reservation .vtp-grid-view .vtp-results-view .car-teaser > div.details footer .car-teaser-options,
  .vtp-online-reservation .vtp-grid-view .vtp-results-view .similar-car-item > div.details footer .car-teaser-options,
  .vtp-online-reservation.vtp-list-view .vtp-results-view .car-teaser > div.details footer .car-teaser-options,
  .vtp-online-reservation.vtp-list-view .vtp-results-view .similar-car-item > div.details footer .car-teaser-options,
  .vtp-online-reservation .vtp-list-view .vtp-results-view .car-teaser > div.details footer .car-teaser-options,
  .vtp-online-reservation .vtp-list-view .vtp-results-view .similar-car-item > div.details footer .car-teaser-options {
    border-bottom: 1px solid #cdd0d2;
  }
  .vtp-results-page.vtp-grid-view .vtp-results-view .car-teaser > div.details .price-list, .vtp-results-page.vtp-grid-view .vtp-results-view .similar-car-item > div.details .price-list,
  .vtp-results-page .vtp-grid-view .vtp-results-view .car-teaser > div.details .price-list,
  .vtp-results-page .vtp-grid-view .vtp-results-view .similar-car-item > div.details .price-list, .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details .price-list, .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details .price-list,
  .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details .price-list,
  .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details .price-list,
  .vtp-favorites.vtp-grid-view .vtp-results-view .car-teaser > div.details .price-list,
  .vtp-favorites.vtp-grid-view .vtp-results-view .similar-car-item > div.details .price-list,
  .vtp-favorites .vtp-grid-view .vtp-results-view .car-teaser > div.details .price-list,
  .vtp-favorites .vtp-grid-view .vtp-results-view .similar-car-item > div.details .price-list,
  .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details .price-list,
  .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details .price-list,
  .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details .price-list,
  .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details .price-list,
  .vtp-online-reservation.vtp-grid-view .vtp-results-view .car-teaser > div.details .price-list,
  .vtp-online-reservation.vtp-grid-view .vtp-results-view .similar-car-item > div.details .price-list,
  .vtp-online-reservation .vtp-grid-view .vtp-results-view .car-teaser > div.details .price-list,
  .vtp-online-reservation .vtp-grid-view .vtp-results-view .similar-car-item > div.details .price-list,
  .vtp-online-reservation.vtp-list-view .vtp-results-view .car-teaser > div.details .price-list,
  .vtp-online-reservation.vtp-list-view .vtp-results-view .similar-car-item > div.details .price-list,
  .vtp-online-reservation .vtp-list-view .vtp-results-view .car-teaser > div.details .price-list,
  .vtp-online-reservation .vtp-list-view .vtp-results-view .similar-car-item > div.details .price-list {
    display: none;
  }
  .vtp-results-page.vtp-grid-view .vtp-results-view .car-teaser > div.details .price-grid, .vtp-results-page.vtp-grid-view .vtp-results-view .similar-car-item > div.details .price-grid,
  .vtp-results-page .vtp-grid-view .vtp-results-view .car-teaser > div.details .price-grid,
  .vtp-results-page .vtp-grid-view .vtp-results-view .similar-car-item > div.details .price-grid, .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details .price-grid, .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details .price-grid,
  .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details .price-grid,
  .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details .price-grid,
  .vtp-favorites.vtp-grid-view .vtp-results-view .car-teaser > div.details .price-grid,
  .vtp-favorites.vtp-grid-view .vtp-results-view .similar-car-item > div.details .price-grid,
  .vtp-favorites .vtp-grid-view .vtp-results-view .car-teaser > div.details .price-grid,
  .vtp-favorites .vtp-grid-view .vtp-results-view .similar-car-item > div.details .price-grid,
  .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details .price-grid,
  .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details .price-grid,
  .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details .price-grid,
  .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details .price-grid,
  .vtp-online-reservation.vtp-grid-view .vtp-results-view .car-teaser > div.details .price-grid,
  .vtp-online-reservation.vtp-grid-view .vtp-results-view .similar-car-item > div.details .price-grid,
  .vtp-online-reservation .vtp-grid-view .vtp-results-view .car-teaser > div.details .price-grid,
  .vtp-online-reservation .vtp-grid-view .vtp-results-view .similar-car-item > div.details .price-grid,
  .vtp-online-reservation.vtp-list-view .vtp-results-view .car-teaser > div.details .price-grid,
  .vtp-online-reservation.vtp-list-view .vtp-results-view .similar-car-item > div.details .price-grid,
  .vtp-online-reservation .vtp-list-view .vtp-results-view .car-teaser > div.details .price-grid,
  .vtp-online-reservation .vtp-list-view .vtp-results-view .similar-car-item > div.details .price-grid {
    margin-bottom: 11px;
  }
  .vtp-results-page.vtp-grid-view .vtp-results-view .car-teaser > div.details .summary-data .summary-data-description, .vtp-results-page.vtp-grid-view .vtp-results-view .similar-car-item > div.details .summary-data .summary-data-description,
  .vtp-results-page .vtp-grid-view .vtp-results-view .car-teaser > div.details .summary-data .summary-data-description,
  .vtp-results-page .vtp-grid-view .vtp-results-view .similar-car-item > div.details .summary-data .summary-data-description, .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details .summary-data .summary-data-description, .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details .summary-data .summary-data-description,
  .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details .summary-data .summary-data-description,
  .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details .summary-data .summary-data-description,
  .vtp-favorites.vtp-grid-view .vtp-results-view .car-teaser > div.details .summary-data .summary-data-description,
  .vtp-favorites.vtp-grid-view .vtp-results-view .similar-car-item > div.details .summary-data .summary-data-description,
  .vtp-favorites .vtp-grid-view .vtp-results-view .car-teaser > div.details .summary-data .summary-data-description,
  .vtp-favorites .vtp-grid-view .vtp-results-view .similar-car-item > div.details .summary-data .summary-data-description,
  .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details .summary-data .summary-data-description,
  .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details .summary-data .summary-data-description,
  .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details .summary-data .summary-data-description,
  .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details .summary-data .summary-data-description,
  .vtp-online-reservation.vtp-grid-view .vtp-results-view .car-teaser > div.details .summary-data .summary-data-description,
  .vtp-online-reservation.vtp-grid-view .vtp-results-view .similar-car-item > div.details .summary-data .summary-data-description,
  .vtp-online-reservation .vtp-grid-view .vtp-results-view .car-teaser > div.details .summary-data .summary-data-description,
  .vtp-online-reservation .vtp-grid-view .vtp-results-view .similar-car-item > div.details .summary-data .summary-data-description,
  .vtp-online-reservation.vtp-list-view .vtp-results-view .car-teaser > div.details .summary-data .summary-data-description,
  .vtp-online-reservation.vtp-list-view .vtp-results-view .similar-car-item > div.details .summary-data .summary-data-description,
  .vtp-online-reservation .vtp-list-view .vtp-results-view .car-teaser > div.details .summary-data .summary-data-description,
  .vtp-online-reservation .vtp-list-view .vtp-results-view .similar-car-item > div.details .summary-data .summary-data-description {
    width: 120px;
  }
  .vtp-results-page.vtp-grid-view .vtp-results-view .car-teaser > div.details, .vtp-results-page.vtp-grid-view .vtp-results-view .similar-car-item > div.details,
  .vtp-results-page .vtp-grid-view .vtp-results-view .car-teaser > div.details,
  .vtp-results-page .vtp-grid-view .vtp-results-view .similar-car-item > div.details,
  .vtp-favorites.vtp-grid-view .vtp-results-view .car-teaser > div.details,
  .vtp-favorites.vtp-grid-view .vtp-results-view .similar-car-item > div.details,
  .vtp-favorites .vtp-grid-view .vtp-results-view .car-teaser > div.details,
  .vtp-favorites .vtp-grid-view .vtp-results-view .similar-car-item > div.details,
  .vtp-online-reservation.vtp-grid-view .vtp-results-view .car-teaser > div.details,
  .vtp-online-reservation.vtp-grid-view .vtp-results-view .similar-car-item > div.details,
  .vtp-online-reservation .vtp-grid-view .vtp-results-view .car-teaser > div.details,
  .vtp-online-reservation .vtp-grid-view .vtp-results-view .similar-car-item > div.details {
    margin-bottom: 20px;
  }
  .vtp-results-page .car-teaser .favorites-link, .vtp-results-page .similar-car-item .favorites-link,
  .vtp-favorites .car-teaser .favorites-link,
  .vtp-favorites .similar-car-item .favorites-link,
  .vtp-online-reservation .car-teaser .favorites-link,
  .vtp-online-reservation .similar-car-item .favorites-link {
    position: absolute;
  }
  .vtp-results-page .car-teaser .favorites-link i, .vtp-results-page .similar-car-item .favorites-link i,
  .vtp-favorites .car-teaser .favorites-link i,
  .vtp-favorites .similar-car-item .favorites-link i,
  .vtp-online-reservation .car-teaser .favorites-link i,
  .vtp-online-reservation .similar-car-item .favorites-link i {
    margin-top: 0;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-results-page .car-teaser-options,
  .vtp-favorites .car-teaser-options,
  .vtp-online-reservation .car-teaser-options {
    border-top: 1px solid #cdd0d2;
  }
}

.vtp-results-page .vtp-results-view .media, .vtp-favorites .vtp-results-view .media, #suggested-cars .vtp-results-view .media {
  padding-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .vtp-results-page.vtp-list-view .media, .vtp-results-page .vtp-list-view .media, .vtp-favorites.vtp-list-view .media, .vtp-favorites .vtp-list-view .media, #suggested-cars.vtp-list-view .media, #suggested-cars .vtp-list-view .media {
    margin-bottom: 10px;
  }
  .resultstyle-ukapproach .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details, .resultstyle-ukapproach .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details, .resultstyle-caapproach .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details, .resultstyle-caapproach .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details, .vtp-results-page.vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details, .vtp-results-page.vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details, .resultstyle-caapproach .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details, .resultstyle-caapproach .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details, .vtp-results-page .vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details, .vtp-results-page .vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details, .resultstyle-caapproach .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details, .resultstyle-caapproach .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details, .vtp-favorites.vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details, .vtp-favorites.vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details, .resultstyle-caapproach .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details, .resultstyle-caapproach .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details, .vtp-favorites .vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details, .vtp-favorites .vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details, .resultstyle-ukapproach #suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details, .resultstyle-ukapproach #suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details, .resultstyle-caapproach #suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details, .resultstyle-caapproach #suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details, .resultstyle-jpapproach #suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details, .resultstyle-jpapproach #suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details, #suggested-cars.vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details, #suggested-cars.vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details, #suggested-cars.vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details, #suggested-cars.vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details, #suggested-cars.vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details, #suggested-cars.vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details, .resultstyle-ukapproach #suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details, .resultstyle-ukapproach #suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details, .resultstyle-caapproach #suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details, .resultstyle-caapproach #suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details, .resultstyle-jpapproach #suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details, .resultstyle-jpapproach #suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details, #suggested-cars .vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details, #suggested-cars .vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details, #suggested-cars .vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details, #suggested-cars .vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details, #suggested-cars .vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details, #suggested-cars .vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details {
    padding-right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .resultstyle-ukapproach .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .resultstyle-ukapproach .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .resultstyle-caapproach .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .resultstyle-caapproach .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details footer, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details footer, .vtp-results-page.vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details footer, .vtp-results-page.vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details footer, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details footer, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details footer, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .resultstyle-caapproach .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .resultstyle-caapproach .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details footer, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details footer, .vtp-results-page .vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details footer, .vtp-results-page .vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details footer, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details footer, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details footer, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .resultstyle-caapproach .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .resultstyle-caapproach .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details footer, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details footer, .vtp-favorites.vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details footer, .vtp-favorites.vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details footer, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details footer, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details footer, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .resultstyle-caapproach .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .resultstyle-caapproach .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details footer, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details footer, .vtp-favorites .vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details footer, .vtp-favorites .vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details footer, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details footer, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details footer, .resultstyle-ukapproach #suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .resultstyle-ukapproach #suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .resultstyle-caapproach #suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .resultstyle-caapproach #suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .resultstyle-jpapproach #suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .resultstyle-jpapproach #suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, #suggested-cars.vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details footer, #suggested-cars.vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details footer, #suggested-cars.vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details footer, #suggested-cars.vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details footer, #suggested-cars.vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details footer, #suggested-cars.vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details footer, .resultstyle-ukapproach #suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .resultstyle-ukapproach #suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .resultstyle-caapproach #suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .resultstyle-caapproach #suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .resultstyle-jpapproach #suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .resultstyle-jpapproach #suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, #suggested-cars .vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details footer, #suggested-cars .vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details footer, #suggested-cars .vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details footer, #suggested-cars .vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details footer, #suggested-cars .vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details footer, #suggested-cars .vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details footer {
    position: absolute;
    bottom: 0;
    right: 0;
    padding-right: 0;
  }
  .resultstyle-ukapproach .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .resultstyle-ukapproach .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .resultstyle-caapproach .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .resultstyle-caapproach .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details footer label, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details footer label, .vtp-results-page.vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details footer label, .vtp-results-page.vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details footer label, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details footer label, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details footer label, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .resultstyle-caapproach .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .resultstyle-caapproach .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details footer label, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details footer label, .vtp-results-page .vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details footer label, .vtp-results-page .vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details footer label, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details footer label, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details footer label, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .resultstyle-caapproach .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .resultstyle-caapproach .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details footer label, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details footer label, .vtp-favorites.vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details footer label, .vtp-favorites.vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details footer label, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details footer label, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details footer label, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .resultstyle-caapproach .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .resultstyle-caapproach .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details footer label, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details footer label, .vtp-favorites .vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details footer label, .vtp-favorites .vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details footer label, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details footer label, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details footer label, .resultstyle-ukapproach #suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .resultstyle-ukapproach #suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .resultstyle-caapproach #suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .resultstyle-caapproach #suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .resultstyle-jpapproach #suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .resultstyle-jpapproach #suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, #suggested-cars.vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details footer label, #suggested-cars.vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details footer label, #suggested-cars.vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details footer label, #suggested-cars.vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details footer label, #suggested-cars.vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details footer label, #suggested-cars.vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details footer label, .resultstyle-ukapproach #suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .resultstyle-ukapproach #suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .resultstyle-caapproach #suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .resultstyle-caapproach #suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .resultstyle-jpapproach #suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .resultstyle-jpapproach #suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, #suggested-cars .vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details footer label, #suggested-cars .vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details footer label, #suggested-cars .vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details footer label, #suggested-cars .vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details footer label, #suggested-cars .vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details footer label, #suggested-cars .vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details footer label {
    white-space: nowrap;
  }
  .resultstyle-ukapproach .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-ukapproach .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .resultstyle-caapproach .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-caapproach .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .special-offer, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .special-offer, .vtp-results-page.vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details .special-offer, .vtp-results-page.vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .special-offer, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .special-offer, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .special-offer, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .resultstyle-caapproach .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-caapproach .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .special-offer, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .special-offer, .vtp-results-page .vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details .special-offer, .vtp-results-page .vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .special-offer, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .special-offer, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .special-offer, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .resultstyle-caapproach .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-caapproach .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .special-offer, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .special-offer, .vtp-favorites.vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details .special-offer, .vtp-favorites.vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .special-offer, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .special-offer, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .special-offer, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .resultstyle-caapproach .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-caapproach .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .special-offer, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .special-offer, .vtp-favorites .vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details .special-offer, .vtp-favorites .vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .special-offer, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .special-offer, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .special-offer, .resultstyle-ukapproach #suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-ukapproach #suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .resultstyle-caapproach #suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-caapproach #suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .resultstyle-jpapproach #suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-jpapproach #suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, #suggested-cars.vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .special-offer, #suggested-cars.vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .special-offer, #suggested-cars.vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details .special-offer, #suggested-cars.vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .special-offer, #suggested-cars.vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .special-offer, #suggested-cars.vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .special-offer, .resultstyle-ukapproach #suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-ukapproach #suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .resultstyle-caapproach #suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-caapproach #suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .resultstyle-jpapproach #suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-jpapproach #suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, #suggested-cars .vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .special-offer, #suggested-cars .vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .special-offer, #suggested-cars .vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details .special-offer, #suggested-cars .vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .special-offer, #suggested-cars .vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .special-offer, #suggested-cars .vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .special-offer {
    float: right;
  }
  .resultstyle-ukapproach .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .resultstyle-ukapproach .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .resultstyle-caapproach .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .resultstyle-caapproach .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .contact-dealer, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .contact-dealer, .vtp-results-page.vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details .contact-dealer, .vtp-results-page.vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .contact-dealer, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .contact-dealer, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .contact-dealer, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .resultstyle-caapproach .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .resultstyle-caapproach .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .contact-dealer, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .contact-dealer, .vtp-results-page .vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details .contact-dealer, .vtp-results-page .vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .contact-dealer, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .contact-dealer, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .contact-dealer, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .resultstyle-caapproach .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .resultstyle-caapproach .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .contact-dealer, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .contact-dealer, .vtp-favorites.vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details .contact-dealer, .vtp-favorites.vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .contact-dealer, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .contact-dealer, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .contact-dealer, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .resultstyle-caapproach .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .resultstyle-caapproach .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .contact-dealer, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .contact-dealer, .vtp-favorites .vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details .contact-dealer, .vtp-favorites .vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .contact-dealer, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .contact-dealer, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .contact-dealer, .resultstyle-ukapproach #suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .resultstyle-ukapproach #suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .resultstyle-caapproach #suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .resultstyle-caapproach #suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .resultstyle-jpapproach #suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .resultstyle-jpapproach #suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, #suggested-cars.vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .contact-dealer, #suggested-cars.vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .contact-dealer, #suggested-cars.vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details .contact-dealer, #suggested-cars.vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .contact-dealer, #suggested-cars.vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .contact-dealer, #suggested-cars.vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .contact-dealer, .resultstyle-ukapproach #suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .resultstyle-ukapproach #suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .resultstyle-caapproach #suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .resultstyle-caapproach #suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .resultstyle-jpapproach #suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .resultstyle-jpapproach #suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, #suggested-cars .vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .contact-dealer, #suggested-cars .vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .contact-dealer, #suggested-cars .vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details .contact-dealer, #suggested-cars .vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .contact-dealer, #suggested-cars .vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .contact-dealer, #suggested-cars .vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .contact-dealer {
    float: right;
    clear: both;
    margin-bottom: 6px;
  }
  .resultstyle-ukapproach .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-ukapproach .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .resultstyle-caapproach .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-caapproach .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .dealer-link, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .dealer-link, .vtp-results-page.vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details .dealer-link, .vtp-results-page.vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .dealer-link, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .dealer-link, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .dealer-link, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .resultstyle-caapproach .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-caapproach .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .dealer-link, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .dealer-link, .vtp-results-page .vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details .dealer-link, .vtp-results-page .vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .dealer-link, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .dealer-link, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .dealer-link, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .resultstyle-caapproach .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-caapproach .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .dealer-link, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .dealer-link, .vtp-favorites.vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details .dealer-link, .vtp-favorites.vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .dealer-link, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .dealer-link, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .dealer-link, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .resultstyle-caapproach .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-caapproach .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .dealer-link, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .dealer-link, .vtp-favorites .vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details .dealer-link, .vtp-favorites .vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .dealer-link, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .dealer-link, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .dealer-link, .resultstyle-ukapproach #suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-ukapproach #suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .resultstyle-caapproach #suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-caapproach #suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .resultstyle-jpapproach #suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-jpapproach #suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, #suggested-cars.vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .dealer-link, #suggested-cars.vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .dealer-link, #suggested-cars.vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details .dealer-link, #suggested-cars.vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .dealer-link, #suggested-cars.vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .dealer-link, #suggested-cars.vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .dealer-link, .resultstyle-ukapproach #suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-ukapproach #suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .resultstyle-caapproach #suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-caapproach #suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .resultstyle-jpapproach #suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-jpapproach #suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, #suggested-cars .vtp-list-view.resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .dealer-link, #suggested-cars .vtp-list-view.resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .dealer-link, #suggested-cars .vtp-list-view.resultstyle-caapproach .vtp-results-view .car-teaser > div.details .dealer-link, #suggested-cars .vtp-list-view.resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .dealer-link, #suggested-cars .vtp-list-view.resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .dealer-link, #suggested-cars .vtp-list-view.resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .dealer-link {
    text-align: right;
    clear: both;
  }
  .resultstyle-ukapproach .vtp-results-page.vtp-list-view .result-listview-left-column, .resultstyle-caapproach .vtp-results-page.vtp-list-view .result-listview-left-column, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .result-listview-left-column, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .result-listview-left-column, .vtp-results-page.vtp-list-view.resultstyle-caapproach .result-listview-left-column, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .result-listview-left-column, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .result-listview-left-column, .resultstyle-caapproach .vtp-results-page .vtp-list-view .result-listview-left-column, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .result-listview-left-column, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .result-listview-left-column, .vtp-results-page .vtp-list-view.resultstyle-caapproach .result-listview-left-column, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .result-listview-left-column, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .result-listview-left-column, .resultstyle-caapproach .vtp-favorites.vtp-list-view .result-listview-left-column, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .result-listview-left-column, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .result-listview-left-column, .vtp-favorites.vtp-list-view.resultstyle-caapproach .result-listview-left-column, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .result-listview-left-column, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .result-listview-left-column, .resultstyle-caapproach .vtp-favorites .vtp-list-view .result-listview-left-column, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .result-listview-left-column, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .result-listview-left-column, .vtp-favorites .vtp-list-view.resultstyle-caapproach .result-listview-left-column, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .result-listview-left-column, .resultstyle-ukapproach #suggested-cars.vtp-list-view .result-listview-left-column, .resultstyle-caapproach #suggested-cars.vtp-list-view .result-listview-left-column, .resultstyle-jpapproach #suggested-cars.vtp-list-view .result-listview-left-column, #suggested-cars.vtp-list-view.resultstyle-ukapproach .result-listview-left-column, #suggested-cars.vtp-list-view.resultstyle-caapproach .result-listview-left-column, #suggested-cars.vtp-list-view.resultstyle-jpapproach .result-listview-left-column, .resultstyle-ukapproach #suggested-cars .vtp-list-view .result-listview-left-column, .resultstyle-caapproach #suggested-cars .vtp-list-view .result-listview-left-column, .resultstyle-jpapproach #suggested-cars .vtp-list-view .result-listview-left-column, #suggested-cars .vtp-list-view.resultstyle-ukapproach .result-listview-left-column, #suggested-cars .vtp-list-view.resultstyle-caapproach .result-listview-left-column, #suggested-cars .vtp-list-view.resultstyle-jpapproach .result-listview-left-column {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .resultstyle-ukapproach .vtp-results-page.vtp-list-view .result-listview-right-column, .resultstyle-caapproach .vtp-results-page.vtp-list-view .result-listview-right-column, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .result-listview-right-column, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .result-listview-right-column, .vtp-results-page.vtp-list-view.resultstyle-caapproach .result-listview-right-column, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .result-listview-right-column, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .result-listview-right-column, .resultstyle-caapproach .vtp-results-page .vtp-list-view .result-listview-right-column, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .result-listview-right-column, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .result-listview-right-column, .vtp-results-page .vtp-list-view.resultstyle-caapproach .result-listview-right-column, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .result-listview-right-column, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .result-listview-right-column, .resultstyle-caapproach .vtp-favorites.vtp-list-view .result-listview-right-column, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .result-listview-right-column, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .result-listview-right-column, .vtp-favorites.vtp-list-view.resultstyle-caapproach .result-listview-right-column, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .result-listview-right-column, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .result-listview-right-column, .resultstyle-caapproach .vtp-favorites .vtp-list-view .result-listview-right-column, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .result-listview-right-column, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .result-listview-right-column, .vtp-favorites .vtp-list-view.resultstyle-caapproach .result-listview-right-column, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .result-listview-right-column, .resultstyle-ukapproach #suggested-cars.vtp-list-view .result-listview-right-column, .resultstyle-caapproach #suggested-cars.vtp-list-view .result-listview-right-column, .resultstyle-jpapproach #suggested-cars.vtp-list-view .result-listview-right-column, #suggested-cars.vtp-list-view.resultstyle-ukapproach .result-listview-right-column, #suggested-cars.vtp-list-view.resultstyle-caapproach .result-listview-right-column, #suggested-cars.vtp-list-view.resultstyle-jpapproach .result-listview-right-column, .resultstyle-ukapproach #suggested-cars .vtp-list-view .result-listview-right-column, .resultstyle-caapproach #suggested-cars .vtp-list-view .result-listview-right-column, .resultstyle-jpapproach #suggested-cars .vtp-list-view .result-listview-right-column, #suggested-cars .vtp-list-view.resultstyle-ukapproach .result-listview-right-column, #suggested-cars .vtp-list-view.resultstyle-caapproach .result-listview-right-column, #suggested-cars .vtp-list-view.resultstyle-jpapproach .result-listview-right-column {
    width: 50%;
  }
  .resultstyle-ukapproach .vtp-results-page.vtp-list-view .car-teaser .price-grid, .resultstyle-ukapproach .vtp-results-page.vtp-list-view .similar-car-item .price-grid, .resultstyle-caapproach .vtp-results-page.vtp-list-view .car-teaser .price-grid, .resultstyle-caapproach .vtp-results-page.vtp-list-view .similar-car-item .price-grid, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .car-teaser .price-grid, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .similar-car-item .price-grid, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .car-teaser .price-grid, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .similar-car-item .price-grid, .vtp-results-page.vtp-list-view.resultstyle-caapproach .car-teaser .price-grid, .vtp-results-page.vtp-list-view.resultstyle-caapproach .similar-car-item .price-grid, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .car-teaser .price-grid, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .similar-car-item .price-grid, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .car-teaser .price-grid, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .similar-car-item .price-grid, .resultstyle-caapproach .vtp-results-page .vtp-list-view .car-teaser .price-grid, .resultstyle-caapproach .vtp-results-page .vtp-list-view .similar-car-item .price-grid, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .car-teaser .price-grid, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .similar-car-item .price-grid, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .car-teaser .price-grid, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .similar-car-item .price-grid, .vtp-results-page .vtp-list-view.resultstyle-caapproach .car-teaser .price-grid, .vtp-results-page .vtp-list-view.resultstyle-caapproach .similar-car-item .price-grid, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .car-teaser .price-grid, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .similar-car-item .price-grid, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .car-teaser .price-grid, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .similar-car-item .price-grid, .resultstyle-caapproach .vtp-favorites.vtp-list-view .car-teaser .price-grid, .resultstyle-caapproach .vtp-favorites.vtp-list-view .similar-car-item .price-grid, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .car-teaser .price-grid, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .similar-car-item .price-grid, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .car-teaser .price-grid, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .similar-car-item .price-grid, .vtp-favorites.vtp-list-view.resultstyle-caapproach .car-teaser .price-grid, .vtp-favorites.vtp-list-view.resultstyle-caapproach .similar-car-item .price-grid, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .car-teaser .price-grid, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .similar-car-item .price-grid, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .car-teaser .price-grid, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .similar-car-item .price-grid, .resultstyle-caapproach .vtp-favorites .vtp-list-view .car-teaser .price-grid, .resultstyle-caapproach .vtp-favorites .vtp-list-view .similar-car-item .price-grid, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .car-teaser .price-grid, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .similar-car-item .price-grid, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .car-teaser .price-grid, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .similar-car-item .price-grid, .vtp-favorites .vtp-list-view.resultstyle-caapproach .car-teaser .price-grid, .vtp-favorites .vtp-list-view.resultstyle-caapproach .similar-car-item .price-grid, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .car-teaser .price-grid, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .similar-car-item .price-grid, .resultstyle-ukapproach #suggested-cars.vtp-list-view .car-teaser .price-grid, .resultstyle-ukapproach #suggested-cars.vtp-list-view .similar-car-item .price-grid, .resultstyle-caapproach #suggested-cars.vtp-list-view .car-teaser .price-grid, .resultstyle-caapproach #suggested-cars.vtp-list-view .similar-car-item .price-grid, .resultstyle-jpapproach #suggested-cars.vtp-list-view .car-teaser .price-grid, .resultstyle-jpapproach #suggested-cars.vtp-list-view .similar-car-item .price-grid, #suggested-cars.vtp-list-view.resultstyle-ukapproach .car-teaser .price-grid, #suggested-cars.vtp-list-view.resultstyle-ukapproach .similar-car-item .price-grid, #suggested-cars.vtp-list-view.resultstyle-caapproach .car-teaser .price-grid, #suggested-cars.vtp-list-view.resultstyle-caapproach .similar-car-item .price-grid, #suggested-cars.vtp-list-view.resultstyle-jpapproach .car-teaser .price-grid, #suggested-cars.vtp-list-view.resultstyle-jpapproach .similar-car-item .price-grid, .resultstyle-ukapproach #suggested-cars .vtp-list-view .car-teaser .price-grid, .resultstyle-ukapproach #suggested-cars .vtp-list-view .similar-car-item .price-grid, .resultstyle-caapproach #suggested-cars .vtp-list-view .car-teaser .price-grid, .resultstyle-caapproach #suggested-cars .vtp-list-view .similar-car-item .price-grid, .resultstyle-jpapproach #suggested-cars .vtp-list-view .car-teaser .price-grid, .resultstyle-jpapproach #suggested-cars .vtp-list-view .similar-car-item .price-grid, #suggested-cars .vtp-list-view.resultstyle-ukapproach .car-teaser .price-grid, #suggested-cars .vtp-list-view.resultstyle-ukapproach .similar-car-item .price-grid, #suggested-cars .vtp-list-view.resultstyle-caapproach .car-teaser .price-grid, #suggested-cars .vtp-list-view.resultstyle-caapproach .similar-car-item .price-grid, #suggested-cars .vtp-list-view.resultstyle-jpapproach .car-teaser .price-grid, #suggested-cars .vtp-list-view.resultstyle-jpapproach .similar-car-item .price-grid {
    display: none;
  }
  .resultstyle-ukapproach .vtp-results-page.vtp-list-view .car-teaser .price-list, .resultstyle-ukapproach .vtp-results-page.vtp-list-view .similar-car-item .price-list, .resultstyle-caapproach .vtp-results-page.vtp-list-view .car-teaser .price-list, .resultstyle-caapproach .vtp-results-page.vtp-list-view .similar-car-item .price-list, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .car-teaser .price-list, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .similar-car-item .price-list, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .car-teaser .price-list, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .similar-car-item .price-list, .vtp-results-page.vtp-list-view.resultstyle-caapproach .car-teaser .price-list, .vtp-results-page.vtp-list-view.resultstyle-caapproach .similar-car-item .price-list, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .car-teaser .price-list, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .similar-car-item .price-list, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .car-teaser .price-list, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .similar-car-item .price-list, .resultstyle-caapproach .vtp-results-page .vtp-list-view .car-teaser .price-list, .resultstyle-caapproach .vtp-results-page .vtp-list-view .similar-car-item .price-list, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .car-teaser .price-list, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .similar-car-item .price-list, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .car-teaser .price-list, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .similar-car-item .price-list, .vtp-results-page .vtp-list-view.resultstyle-caapproach .car-teaser .price-list, .vtp-results-page .vtp-list-view.resultstyle-caapproach .similar-car-item .price-list, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .car-teaser .price-list, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .similar-car-item .price-list, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .car-teaser .price-list, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .similar-car-item .price-list, .resultstyle-caapproach .vtp-favorites.vtp-list-view .car-teaser .price-list, .resultstyle-caapproach .vtp-favorites.vtp-list-view .similar-car-item .price-list, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .car-teaser .price-list, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .similar-car-item .price-list, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .car-teaser .price-list, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .similar-car-item .price-list, .vtp-favorites.vtp-list-view.resultstyle-caapproach .car-teaser .price-list, .vtp-favorites.vtp-list-view.resultstyle-caapproach .similar-car-item .price-list, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .car-teaser .price-list, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .similar-car-item .price-list, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .car-teaser .price-list, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .similar-car-item .price-list, .resultstyle-caapproach .vtp-favorites .vtp-list-view .car-teaser .price-list, .resultstyle-caapproach .vtp-favorites .vtp-list-view .similar-car-item .price-list, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .car-teaser .price-list, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .similar-car-item .price-list, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .car-teaser .price-list, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .similar-car-item .price-list, .vtp-favorites .vtp-list-view.resultstyle-caapproach .car-teaser .price-list, .vtp-favorites .vtp-list-view.resultstyle-caapproach .similar-car-item .price-list, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .car-teaser .price-list, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .similar-car-item .price-list, .resultstyle-ukapproach #suggested-cars.vtp-list-view .car-teaser .price-list, .resultstyle-ukapproach #suggested-cars.vtp-list-view .similar-car-item .price-list, .resultstyle-caapproach #suggested-cars.vtp-list-view .car-teaser .price-list, .resultstyle-caapproach #suggested-cars.vtp-list-view .similar-car-item .price-list, .resultstyle-jpapproach #suggested-cars.vtp-list-view .car-teaser .price-list, .resultstyle-jpapproach #suggested-cars.vtp-list-view .similar-car-item .price-list, #suggested-cars.vtp-list-view.resultstyle-ukapproach .car-teaser .price-list, #suggested-cars.vtp-list-view.resultstyle-ukapproach .similar-car-item .price-list, #suggested-cars.vtp-list-view.resultstyle-caapproach .car-teaser .price-list, #suggested-cars.vtp-list-view.resultstyle-caapproach .similar-car-item .price-list, #suggested-cars.vtp-list-view.resultstyle-jpapproach .car-teaser .price-list, #suggested-cars.vtp-list-view.resultstyle-jpapproach .similar-car-item .price-list, .resultstyle-ukapproach #suggested-cars .vtp-list-view .car-teaser .price-list, .resultstyle-ukapproach #suggested-cars .vtp-list-view .similar-car-item .price-list, .resultstyle-caapproach #suggested-cars .vtp-list-view .car-teaser .price-list, .resultstyle-caapproach #suggested-cars .vtp-list-view .similar-car-item .price-list, .resultstyle-jpapproach #suggested-cars .vtp-list-view .car-teaser .price-list, .resultstyle-jpapproach #suggested-cars .vtp-list-view .similar-car-item .price-list, #suggested-cars .vtp-list-view.resultstyle-ukapproach .car-teaser .price-list, #suggested-cars .vtp-list-view.resultstyle-ukapproach .similar-car-item .price-list, #suggested-cars .vtp-list-view.resultstyle-caapproach .car-teaser .price-list, #suggested-cars .vtp-list-view.resultstyle-caapproach .similar-car-item .price-list, #suggested-cars .vtp-list-view.resultstyle-jpapproach .car-teaser .price-list, #suggested-cars .vtp-list-view.resultstyle-jpapproach .similar-car-item .price-list {
    text-align: right;
    font-size: 15px;
    margin-bottom: 2.4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 940px) {
  .resultstyle-ukapproach .vtp-results-page.vtp-list-view .car-teaser .price-list, .resultstyle-ukapproach .vtp-results-page.vtp-list-view .similar-car-item .price-list, .resultstyle-caapproach .vtp-results-page.vtp-list-view .car-teaser .price-list, .resultstyle-caapproach .vtp-results-page.vtp-list-view .similar-car-item .price-list, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .car-teaser .price-list, .resultstyle-jpapproach .vtp-results-page.vtp-list-view .similar-car-item .price-list, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .car-teaser .price-list, .vtp-results-page.vtp-list-view.resultstyle-ukapproach .similar-car-item .price-list, .vtp-results-page.vtp-list-view.resultstyle-caapproach .car-teaser .price-list, .vtp-results-page.vtp-list-view.resultstyle-caapproach .similar-car-item .price-list, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .car-teaser .price-list, .vtp-results-page.vtp-list-view.resultstyle-jpapproach .similar-car-item .price-list, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .car-teaser .price-list, .resultstyle-ukapproach .vtp-results-page .vtp-list-view .similar-car-item .price-list, .resultstyle-caapproach .vtp-results-page .vtp-list-view .car-teaser .price-list, .resultstyle-caapproach .vtp-results-page .vtp-list-view .similar-car-item .price-list, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .car-teaser .price-list, .resultstyle-jpapproach .vtp-results-page .vtp-list-view .similar-car-item .price-list, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .car-teaser .price-list, .vtp-results-page .vtp-list-view.resultstyle-ukapproach .similar-car-item .price-list, .vtp-results-page .vtp-list-view.resultstyle-caapproach .car-teaser .price-list, .vtp-results-page .vtp-list-view.resultstyle-caapproach .similar-car-item .price-list, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .car-teaser .price-list, .vtp-results-page .vtp-list-view.resultstyle-jpapproach .similar-car-item .price-list, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .car-teaser .price-list, .resultstyle-ukapproach .vtp-favorites.vtp-list-view .similar-car-item .price-list, .resultstyle-caapproach .vtp-favorites.vtp-list-view .car-teaser .price-list, .resultstyle-caapproach .vtp-favorites.vtp-list-view .similar-car-item .price-list, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .car-teaser .price-list, .resultstyle-jpapproach .vtp-favorites.vtp-list-view .similar-car-item .price-list, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .car-teaser .price-list, .vtp-favorites.vtp-list-view.resultstyle-ukapproach .similar-car-item .price-list, .vtp-favorites.vtp-list-view.resultstyle-caapproach .car-teaser .price-list, .vtp-favorites.vtp-list-view.resultstyle-caapproach .similar-car-item .price-list, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .car-teaser .price-list, .vtp-favorites.vtp-list-view.resultstyle-jpapproach .similar-car-item .price-list, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .car-teaser .price-list, .resultstyle-ukapproach .vtp-favorites .vtp-list-view .similar-car-item .price-list, .resultstyle-caapproach .vtp-favorites .vtp-list-view .car-teaser .price-list, .resultstyle-caapproach .vtp-favorites .vtp-list-view .similar-car-item .price-list, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .car-teaser .price-list, .resultstyle-jpapproach .vtp-favorites .vtp-list-view .similar-car-item .price-list, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .car-teaser .price-list, .vtp-favorites .vtp-list-view.resultstyle-ukapproach .similar-car-item .price-list, .vtp-favorites .vtp-list-view.resultstyle-caapproach .car-teaser .price-list, .vtp-favorites .vtp-list-view.resultstyle-caapproach .similar-car-item .price-list, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .car-teaser .price-list, .vtp-favorites .vtp-list-view.resultstyle-jpapproach .similar-car-item .price-list, .resultstyle-ukapproach #suggested-cars.vtp-list-view .car-teaser .price-list, .resultstyle-ukapproach #suggested-cars.vtp-list-view .similar-car-item .price-list, .resultstyle-caapproach #suggested-cars.vtp-list-view .car-teaser .price-list, .resultstyle-caapproach #suggested-cars.vtp-list-view .similar-car-item .price-list, .resultstyle-jpapproach #suggested-cars.vtp-list-view .car-teaser .price-list, .resultstyle-jpapproach #suggested-cars.vtp-list-view .similar-car-item .price-list, #suggested-cars.vtp-list-view.resultstyle-ukapproach .car-teaser .price-list, #suggested-cars.vtp-list-view.resultstyle-ukapproach .similar-car-item .price-list, #suggested-cars.vtp-list-view.resultstyle-caapproach .car-teaser .price-list, #suggested-cars.vtp-list-view.resultstyle-caapproach .similar-car-item .price-list, #suggested-cars.vtp-list-view.resultstyle-jpapproach .car-teaser .price-list, #suggested-cars.vtp-list-view.resultstyle-jpapproach .similar-car-item .price-list, .resultstyle-ukapproach #suggested-cars .vtp-list-view .car-teaser .price-list, .resultstyle-ukapproach #suggested-cars .vtp-list-view .similar-car-item .price-list, .resultstyle-caapproach #suggested-cars .vtp-list-view .car-teaser .price-list, .resultstyle-caapproach #suggested-cars .vtp-list-view .similar-car-item .price-list, .resultstyle-jpapproach #suggested-cars .vtp-list-view .car-teaser .price-list, .resultstyle-jpapproach #suggested-cars .vtp-list-view .similar-car-item .price-list, #suggested-cars .vtp-list-view.resultstyle-ukapproach .car-teaser .price-list, #suggested-cars .vtp-list-view.resultstyle-ukapproach .similar-car-item .price-list, #suggested-cars .vtp-list-view.resultstyle-caapproach .car-teaser .price-list, #suggested-cars .vtp-list-view.resultstyle-caapproach .similar-car-item .price-list, #suggested-cars .vtp-list-view.resultstyle-jpapproach .car-teaser .price-list, #suggested-cars .vtp-list-view.resultstyle-jpapproach .similar-car-item .price-list {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .vtp-results-page.vtp-grid-view .details, .vtp-results-page .vtp-grid-view .details, .vtp-favorites.vtp-grid-view .details, .vtp-favorites .vtp-grid-view .details, #suggested-cars.vtp-grid-view .details, #suggested-cars .vtp-grid-view .details {
    margin-top: 10px;
  }
  .vtp-results-page.vtp-grid-view .car-teaser .price-grid, .vtp-results-page.vtp-grid-view .similar-car-item .price-grid, .vtp-results-page .vtp-grid-view .car-teaser .price-grid, .vtp-results-page .vtp-grid-view .similar-car-item .price-grid, .vtp-favorites.vtp-grid-view .car-teaser .price-grid, .vtp-favorites.vtp-grid-view .similar-car-item .price-grid, .vtp-favorites .vtp-grid-view .car-teaser .price-grid, .vtp-favorites .vtp-grid-view .similar-car-item .price-grid, #suggested-cars.vtp-grid-view .car-teaser .price-grid, #suggested-cars.vtp-grid-view .similar-car-item .price-grid, #suggested-cars .vtp-grid-view .car-teaser .price-grid, #suggested-cars .vtp-grid-view .similar-car-item .price-grid {
    margin-bottom: 11px;
    font-size: 15px;
  }
  .vtp-results-page.vtp-grid-view .car-teaser .price-list, .vtp-results-page.vtp-grid-view .similar-car-item .price-list, .vtp-results-page .vtp-grid-view .car-teaser .price-list, .vtp-results-page .vtp-grid-view .similar-car-item .price-list, .vtp-favorites.vtp-grid-view .car-teaser .price-list, .vtp-favorites.vtp-grid-view .similar-car-item .price-list, .vtp-favorites .vtp-grid-view .car-teaser .price-list, .vtp-favorites .vtp-grid-view .similar-car-item .price-list, #suggested-cars.vtp-grid-view .car-teaser .price-list, #suggested-cars.vtp-grid-view .similar-car-item .price-list, #suggested-cars .vtp-grid-view .car-teaser .price-list, #suggested-cars .vtp-grid-view .similar-car-item .price-list {
    display: none !important;
  }
}
.vtp-results-page.vtp-results-panel .vtp-results-view .summary-data, .vtp-results-page.vtp-results-panel .vtp-suggested-cars-carousel .summary-data, .vtp-results-page.favorites-panel .vtp-results-view .summary-data, .vtp-results-page.favorites-panel .vtp-suggested-cars-carousel .summary-data, .vtp-results-page .vtp-results-panel .vtp-results-view .summary-data, .vtp-results-page .vtp-results-panel .vtp-suggested-cars-carousel .summary-data,
.vtp-results-page .favorites-panel .vtp-results-view .summary-data,
.vtp-results-page .favorites-panel .vtp-suggested-cars-carousel .summary-data, .vtp-results-page.vtp-suggested-cars .vtp-results-view .summary-data, .vtp-results-page.vtp-suggested-cars .vtp-suggested-cars-carousel .summary-data, .vtp-favorites.vtp-results-panel .vtp-results-view .summary-data, .vtp-favorites.vtp-results-panel .vtp-suggested-cars-carousel .summary-data, .vtp-favorites.favorites-panel .vtp-results-view .summary-data, .vtp-favorites.favorites-panel .vtp-suggested-cars-carousel .summary-data, .vtp-favorites .vtp-results-panel .vtp-results-view .summary-data, .vtp-favorites .vtp-results-panel .vtp-suggested-cars-carousel .summary-data,
.vtp-favorites .favorites-panel .vtp-results-view .summary-data,
.vtp-favorites .favorites-panel .vtp-suggested-cars-carousel .summary-data, .vtp-favorites.vtp-suggested-cars .vtp-results-view .summary-data, .vtp-favorites.vtp-suggested-cars .vtp-suggested-cars-carousel .summary-data, #suggested-cars.vtp-results-panel .vtp-results-view .summary-data, #suggested-cars.vtp-results-panel .vtp-suggested-cars-carousel .summary-data, #suggested-cars.favorites-panel .vtp-results-view .summary-data, #suggested-cars.favorites-panel .vtp-suggested-cars-carousel .summary-data, #suggested-cars .vtp-results-panel .vtp-results-view .summary-data, #suggested-cars .vtp-results-panel .vtp-suggested-cars-carousel .summary-data,
#suggested-cars .favorites-panel .vtp-results-view .summary-data,
#suggested-cars .favorites-panel .vtp-suggested-cars-carousel .summary-data, #suggested-cars.vtp-suggested-cars .vtp-results-view .summary-data, #suggested-cars.vtp-suggested-cars .vtp-suggested-cars-carousel .summary-data {
  margin: 0 0 1rem;
}
.vtp-results-page.vtp-results-panel .vtp-results-view .summary-data li, .vtp-results-page.vtp-results-panel .vtp-suggested-cars-carousel .summary-data li, .vtp-results-page.favorites-panel .vtp-results-view .summary-data li, .vtp-results-page.favorites-panel .vtp-suggested-cars-carousel .summary-data li, .vtp-results-page .vtp-results-panel .vtp-results-view .summary-data li, .vtp-results-page .vtp-results-panel .vtp-suggested-cars-carousel .summary-data li,
.vtp-results-page .favorites-panel .vtp-results-view .summary-data li,
.vtp-results-page .favorites-panel .vtp-suggested-cars-carousel .summary-data li, .vtp-results-page.vtp-suggested-cars .vtp-results-view .summary-data li, .vtp-results-page.vtp-suggested-cars .vtp-suggested-cars-carousel .summary-data li, .vtp-favorites.vtp-results-panel .vtp-results-view .summary-data li, .vtp-favorites.vtp-results-panel .vtp-suggested-cars-carousel .summary-data li, .vtp-favorites.favorites-panel .vtp-results-view .summary-data li, .vtp-favorites.favorites-panel .vtp-suggested-cars-carousel .summary-data li, .vtp-favorites .vtp-results-panel .vtp-results-view .summary-data li, .vtp-favorites .vtp-results-panel .vtp-suggested-cars-carousel .summary-data li,
.vtp-favorites .favorites-panel .vtp-results-view .summary-data li,
.vtp-favorites .favorites-panel .vtp-suggested-cars-carousel .summary-data li, .vtp-favorites.vtp-suggested-cars .vtp-results-view .summary-data li, .vtp-favorites.vtp-suggested-cars .vtp-suggested-cars-carousel .summary-data li, #suggested-cars.vtp-results-panel .vtp-results-view .summary-data li, #suggested-cars.vtp-results-panel .vtp-suggested-cars-carousel .summary-data li, #suggested-cars.favorites-panel .vtp-results-view .summary-data li, #suggested-cars.favorites-panel .vtp-suggested-cars-carousel .summary-data li, #suggested-cars .vtp-results-panel .vtp-results-view .summary-data li, #suggested-cars .vtp-results-panel .vtp-suggested-cars-carousel .summary-data li,
#suggested-cars .favorites-panel .vtp-results-view .summary-data li,
#suggested-cars .favorites-panel .vtp-suggested-cars-carousel .summary-data li, #suggested-cars.vtp-suggested-cars .vtp-results-view .summary-data li, #suggested-cars.vtp-suggested-cars .vtp-suggested-cars-carousel .summary-data li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.vtp-results-page.vtp-results-panel .vtp-results-view .summary-data li p.summary-data-description, .vtp-results-page.vtp-results-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-description, .vtp-results-page.favorites-panel .vtp-results-view .summary-data li p.summary-data-description, .vtp-results-page.favorites-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-description, .vtp-results-page .vtp-results-panel .vtp-results-view .summary-data li p.summary-data-description, .vtp-results-page .vtp-results-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-description,
.vtp-results-page .favorites-panel .vtp-results-view .summary-data li p.summary-data-description,
.vtp-results-page .favorites-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-description, .vtp-results-page.vtp-suggested-cars .vtp-results-view .summary-data li p.summary-data-description, .vtp-results-page.vtp-suggested-cars .vtp-suggested-cars-carousel .summary-data li p.summary-data-description, .vtp-favorites.vtp-results-panel .vtp-results-view .summary-data li p.summary-data-description, .vtp-favorites.vtp-results-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-description, .vtp-favorites.favorites-panel .vtp-results-view .summary-data li p.summary-data-description, .vtp-favorites.favorites-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-description, .vtp-favorites .vtp-results-panel .vtp-results-view .summary-data li p.summary-data-description, .vtp-favorites .vtp-results-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-description,
.vtp-favorites .favorites-panel .vtp-results-view .summary-data li p.summary-data-description,
.vtp-favorites .favorites-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-description, .vtp-favorites.vtp-suggested-cars .vtp-results-view .summary-data li p.summary-data-description, .vtp-favorites.vtp-suggested-cars .vtp-suggested-cars-carousel .summary-data li p.summary-data-description, #suggested-cars.vtp-results-panel .vtp-results-view .summary-data li p.summary-data-description, #suggested-cars.vtp-results-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-description, #suggested-cars.favorites-panel .vtp-results-view .summary-data li p.summary-data-description, #suggested-cars.favorites-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-description, #suggested-cars .vtp-results-panel .vtp-results-view .summary-data li p.summary-data-description, #suggested-cars .vtp-results-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-description,
#suggested-cars .favorites-panel .vtp-results-view .summary-data li p.summary-data-description,
#suggested-cars .favorites-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-description, #suggested-cars.vtp-suggested-cars .vtp-results-view .summary-data li p.summary-data-description, #suggested-cars.vtp-suggested-cars .vtp-suggested-cars-carousel .summary-data li p.summary-data-description {
  width: 118px;
  margin: 0;
  font-weight: 700;
}
.vtp-results-page.vtp-results-panel .vtp-results-view .summary-data li p.summary-data-value, .vtp-results-page.vtp-results-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-value, .vtp-results-page.favorites-panel .vtp-results-view .summary-data li p.summary-data-value, .vtp-results-page.favorites-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-value, .vtp-results-page .vtp-results-panel .vtp-results-view .summary-data li p.summary-data-value, .vtp-results-page .vtp-results-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-value,
.vtp-results-page .favorites-panel .vtp-results-view .summary-data li p.summary-data-value,
.vtp-results-page .favorites-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-value, .vtp-results-page.vtp-suggested-cars .vtp-results-view .summary-data li p.summary-data-value, .vtp-results-page.vtp-suggested-cars .vtp-suggested-cars-carousel .summary-data li p.summary-data-value, .vtp-favorites.vtp-results-panel .vtp-results-view .summary-data li p.summary-data-value, .vtp-favorites.vtp-results-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-value, .vtp-favorites.favorites-panel .vtp-results-view .summary-data li p.summary-data-value, .vtp-favorites.favorites-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-value, .vtp-favorites .vtp-results-panel .vtp-results-view .summary-data li p.summary-data-value, .vtp-favorites .vtp-results-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-value,
.vtp-favorites .favorites-panel .vtp-results-view .summary-data li p.summary-data-value,
.vtp-favorites .favorites-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-value, .vtp-favorites.vtp-suggested-cars .vtp-results-view .summary-data li p.summary-data-value, .vtp-favorites.vtp-suggested-cars .vtp-suggested-cars-carousel .summary-data li p.summary-data-value, #suggested-cars.vtp-results-panel .vtp-results-view .summary-data li p.summary-data-value, #suggested-cars.vtp-results-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-value, #suggested-cars.favorites-panel .vtp-results-view .summary-data li p.summary-data-value, #suggested-cars.favorites-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-value, #suggested-cars .vtp-results-panel .vtp-results-view .summary-data li p.summary-data-value, #suggested-cars .vtp-results-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-value,
#suggested-cars .favorites-panel .vtp-results-view .summary-data li p.summary-data-value,
#suggested-cars .favorites-panel .vtp-suggested-cars-carousel .summary-data li p.summary-data-value, #suggested-cars.vtp-suggested-cars .vtp-results-view .summary-data li p.summary-data-value, #suggested-cars.vtp-suggested-cars .vtp-suggested-cars-carousel .summary-data li p.summary-data-value {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.ie9 .vtp-results-page.vtp-results-panel .summary-data li, .ie9 .vtp-results-page.favorites-panel .summary-data li, .ie9 .vtp-results-page .vtp-results-panel .summary-data li,
.ie9 .vtp-results-page .favorites-panel .summary-data li, .ie9 .vtp-results-page.vtp-suggested-cars .summary-data li, .ie9 .vtp-favorites.vtp-results-panel .summary-data li, .ie9 .vtp-favorites.favorites-panel .summary-data li, .ie9 .vtp-favorites .vtp-results-panel .summary-data li,
.ie9 .vtp-favorites .favorites-panel .summary-data li, .ie9 .vtp-favorites.vtp-suggested-cars .summary-data li, .ie9 #suggested-cars.vtp-results-panel .summary-data li, .ie9 #suggested-cars.favorites-panel .summary-data li, .ie9 #suggested-cars .vtp-results-panel .summary-data li,
.ie9 #suggested-cars .favorites-panel .summary-data li, .ie9 #suggested-cars.vtp-suggested-cars .summary-data li {
  clear: both;
}
.ie9 .vtp-results-page.vtp-results-panel .summary-data li p, .ie9 .vtp-results-page.favorites-panel .summary-data li p, .ie9 .vtp-results-page .vtp-results-panel .summary-data li p,
.ie9 .vtp-results-page .favorites-panel .summary-data li p, .ie9 .vtp-results-page.vtp-suggested-cars .summary-data li p, .ie9 .vtp-favorites.vtp-results-panel .summary-data li p, .ie9 .vtp-favorites.favorites-panel .summary-data li p, .ie9 .vtp-favorites .vtp-results-panel .summary-data li p,
.ie9 .vtp-favorites .favorites-panel .summary-data li p, .ie9 .vtp-favorites.vtp-suggested-cars .summary-data li p, .ie9 #suggested-cars.vtp-results-panel .summary-data li p, .ie9 #suggested-cars.favorites-panel .summary-data li p, .ie9 #suggested-cars .vtp-results-panel .summary-data li p,
.ie9 #suggested-cars .favorites-panel .summary-data li p, .ie9 #suggested-cars.vtp-suggested-cars .summary-data li p {
  float: left;
}
.ie9 .vtp-results-page.vtp-results-panel .summary-data li p.summary-data-description, .ie9 .vtp-results-page.favorites-panel .summary-data li p.summary-data-description, .ie9 .vtp-results-page .vtp-results-panel .summary-data li p.summary-data-description,
.ie9 .vtp-results-page .favorites-panel .summary-data li p.summary-data-description, .ie9 .vtp-results-page.vtp-suggested-cars .summary-data li p.summary-data-description, .ie9 .vtp-favorites.vtp-results-panel .summary-data li p.summary-data-description, .ie9 .vtp-favorites.favorites-panel .summary-data li p.summary-data-description, .ie9 .vtp-favorites .vtp-results-panel .summary-data li p.summary-data-description,
.ie9 .vtp-favorites .favorites-panel .summary-data li p.summary-data-description, .ie9 .vtp-favorites.vtp-suggested-cars .summary-data li p.summary-data-description, .ie9 #suggested-cars.vtp-results-panel .summary-data li p.summary-data-description, .ie9 #suggested-cars.favorites-panel .summary-data li p.summary-data-description, .ie9 #suggested-cars .vtp-results-panel .summary-data li p.summary-data-description,
.ie9 #suggested-cars .favorites-panel .summary-data li p.summary-data-description, .ie9 #suggested-cars.vtp-suggested-cars .summary-data li p.summary-data-description {
  width: 110px;
}
.ie9 .vtp-results-page.vtp-results-panel .summary-data li p.summary-data-value, .ie9 .vtp-results-page.favorites-panel .summary-data li p.summary-data-value, .ie9 .vtp-results-page .vtp-results-panel .summary-data li p.summary-data-value,
.ie9 .vtp-results-page .favorites-panel .summary-data li p.summary-data-value, .ie9 .vtp-results-page.vtp-suggested-cars .summary-data li p.summary-data-value, .ie9 .vtp-favorites.vtp-results-panel .summary-data li p.summary-data-value, .ie9 .vtp-favorites.favorites-panel .summary-data li p.summary-data-value, .ie9 .vtp-favorites .vtp-results-panel .summary-data li p.summary-data-value,
.ie9 .vtp-favorites .favorites-panel .summary-data li p.summary-data-value, .ie9 .vtp-favorites.vtp-suggested-cars .summary-data li p.summary-data-value, .ie9 #suggested-cars.vtp-results-panel .summary-data li p.summary-data-value, .ie9 #suggested-cars.favorites-panel .summary-data li p.summary-data-value, .ie9 #suggested-cars .vtp-results-panel .summary-data li p.summary-data-value,
.ie9 #suggested-cars .favorites-panel .summary-data li p.summary-data-value, .ie9 #suggested-cars.vtp-suggested-cars .summary-data li p.summary-data-value {
  float: left;
  text-align: left;
}
.ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .media, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .media, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .media, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .media, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .media, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .media,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .media,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .media, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .media, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .media, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .media, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .media, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .media, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .media, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .media, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .media,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .media,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .media, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .media, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .media, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .media, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .media, .ie9 #suggested-cars.favorites-panel.vtp-list-view .media, .ie9 #suggested-cars.favorites-panel .vtp-list-view .media, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .media, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .media,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .media,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .media, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .media, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .media {
  margin-bottom: 10px;
}
.ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 #suggested-cars.favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 #suggested-cars.favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 #suggested-cars.favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 #suggested-cars.favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details {
  padding-right: 0;
}
.ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 #suggested-cars.favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 #suggested-cars.favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 #suggested-cars.favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 #suggested-cars.favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details footer, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details footer, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details footer {
  position: absolute;
  bottom: 10px;
  right: 0;
  padding-right: 0;
}
.ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer label,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer label,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer label,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer label,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 #suggested-cars.favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 #suggested-cars.favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 #suggested-cars.favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 #suggested-cars.favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details footer label,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details footer label,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details footer label, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details footer label, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details footer label {
  white-space: nowrap;
}
.ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 #suggested-cars.favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 #suggested-cars.favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 #suggested-cars.favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 #suggested-cars.favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details .special-offer, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details .special-offer {
  float: right;
}
.ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 #suggested-cars.favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 #suggested-cars.favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 #suggested-cars.favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 #suggested-cars.favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details .contact-dealer, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details .contact-dealer {
  float: right;
  clear: both;
  margin-bottom: 6px;
}
.ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 #suggested-cars.favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 #suggested-cars.favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 #suggested-cars.favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 #suggested-cars.favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .vtp-results-view .car-teaser > div.details .dealer-link, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .vtp-results-view .similar-car-item > div.details .dealer-link {
  text-align: right;
  clear: both;
}
.ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .result-listview-left-column,
.ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .result-listview-right-column, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .result-listview-left-column,
.ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .result-listview-right-column, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .result-listview-left-column,
.ie9 .vtp-results-page.favorites-panel.vtp-list-view .result-listview-right-column, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .result-listview-left-column,
.ie9 .vtp-results-page.favorites-panel .vtp-list-view .result-listview-right-column, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .result-listview-left-column,
.ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .result-listview-right-column, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .result-listview-left-column,
.ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .result-listview-right-column,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .result-listview-left-column,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .result-listview-right-column,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .result-listview-left-column,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .result-listview-right-column, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .result-listview-left-column,
.ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .result-listview-right-column, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .result-listview-left-column,
.ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .result-listview-right-column, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .result-listview-left-column,
.ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .result-listview-right-column, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .result-listview-left-column,
.ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .result-listview-right-column, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .result-listview-left-column,
.ie9 .vtp-favorites.favorites-panel.vtp-list-view .result-listview-right-column, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .result-listview-left-column,
.ie9 .vtp-favorites.favorites-panel .vtp-list-view .result-listview-right-column, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .result-listview-left-column,
.ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .result-listview-right-column, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .result-listview-left-column,
.ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .result-listview-right-column,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .result-listview-left-column,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .result-listview-right-column,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .result-listview-left-column,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .result-listview-right-column, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .result-listview-left-column,
.ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .result-listview-right-column, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .result-listview-left-column,
.ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .result-listview-right-column, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .result-listview-left-column,
.ie9 #suggested-cars.vtp-results-panel.vtp-list-view .result-listview-right-column, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .result-listview-left-column,
.ie9 #suggested-cars.vtp-results-panel .vtp-list-view .result-listview-right-column, .ie9 #suggested-cars.favorites-panel.vtp-list-view .result-listview-left-column,
.ie9 #suggested-cars.favorites-panel.vtp-list-view .result-listview-right-column, .ie9 #suggested-cars.favorites-panel .vtp-list-view .result-listview-left-column,
.ie9 #suggested-cars.favorites-panel .vtp-list-view .result-listview-right-column, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .result-listview-left-column,
.ie9 #suggested-cars .vtp-results-panel.vtp-list-view .result-listview-right-column, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .result-listview-left-column,
.ie9 #suggested-cars .vtp-results-panel .vtp-list-view .result-listview-right-column,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .result-listview-left-column,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .result-listview-right-column,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .result-listview-left-column,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .result-listview-right-column, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .result-listview-left-column,
.ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .result-listview-right-column, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .result-listview-left-column,
.ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .result-listview-right-column {
  float: left;
  width: 50%;
}
.ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .result-listview-right-column, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .result-listview-right-column, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .result-listview-right-column, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .result-listview-right-column, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .result-listview-right-column, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .result-listview-right-column,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .result-listview-right-column,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .result-listview-right-column, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .result-listview-right-column, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .result-listview-right-column, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .result-listview-right-column, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .result-listview-right-column, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .result-listview-right-column, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .result-listview-right-column, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .result-listview-right-column, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .result-listview-right-column,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .result-listview-right-column,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .result-listview-right-column, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .result-listview-right-column, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .result-listview-right-column, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .result-listview-right-column, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .result-listview-right-column, .ie9 #suggested-cars.favorites-panel.vtp-list-view .result-listview-right-column, .ie9 #suggested-cars.favorites-panel .vtp-list-view .result-listview-right-column, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .result-listview-right-column, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .result-listview-right-column,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .result-listview-right-column,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .result-listview-right-column, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .result-listview-right-column, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .result-listview-right-column {
  float: right;
}
.ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .car-teaser .price-grid, .ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .similar-car-item .price-grid, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .car-teaser .price-grid, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .similar-car-item .price-grid, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .car-teaser .price-grid, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .similar-car-item .price-grid, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .car-teaser .price-grid, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .similar-car-item .price-grid, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .car-teaser .price-grid, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .similar-car-item .price-grid, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .car-teaser .price-grid, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .similar-car-item .price-grid,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .car-teaser .price-grid,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .similar-car-item .price-grid,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .car-teaser .price-grid,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .similar-car-item .price-grid, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .car-teaser .price-grid, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .similar-car-item .price-grid, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .car-teaser .price-grid, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .similar-car-item .price-grid, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .car-teaser .price-grid, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .similar-car-item .price-grid, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .car-teaser .price-grid, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .similar-car-item .price-grid, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .car-teaser .price-grid, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .similar-car-item .price-grid, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .car-teaser .price-grid, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .similar-car-item .price-grid, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .car-teaser .price-grid, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .similar-car-item .price-grid, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .car-teaser .price-grid, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .similar-car-item .price-grid,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .car-teaser .price-grid,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .similar-car-item .price-grid,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .car-teaser .price-grid,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .similar-car-item .price-grid, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .car-teaser .price-grid, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .similar-car-item .price-grid, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .car-teaser .price-grid, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .similar-car-item .price-grid, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .car-teaser .price-grid, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .similar-car-item .price-grid, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .car-teaser .price-grid, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .similar-car-item .price-grid, .ie9 #suggested-cars.favorites-panel.vtp-list-view .car-teaser .price-grid, .ie9 #suggested-cars.favorites-panel.vtp-list-view .similar-car-item .price-grid, .ie9 #suggested-cars.favorites-panel .vtp-list-view .car-teaser .price-grid, .ie9 #suggested-cars.favorites-panel .vtp-list-view .similar-car-item .price-grid, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .car-teaser .price-grid, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .similar-car-item .price-grid, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .car-teaser .price-grid, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .similar-car-item .price-grid,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .car-teaser .price-grid,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .similar-car-item .price-grid,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .car-teaser .price-grid,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .similar-car-item .price-grid, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .car-teaser .price-grid, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .similar-car-item .price-grid, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .car-teaser .price-grid, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .similar-car-item .price-grid {
  display: none;
}
.ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .car-teaser .price-list, .ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .similar-car-item .price-list, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .car-teaser .price-list, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .similar-car-item .price-list, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .car-teaser .price-list, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .similar-car-item .price-list, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .car-teaser .price-list, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .similar-car-item .price-list, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .car-teaser .price-list, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .similar-car-item .price-list, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .car-teaser .price-list, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .similar-car-item .price-list,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .car-teaser .price-list,
.ie9 .vtp-results-page .favorites-panel.vtp-list-view .similar-car-item .price-list,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .car-teaser .price-list,
.ie9 .vtp-results-page .favorites-panel .vtp-list-view .similar-car-item .price-list, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .car-teaser .price-list, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .similar-car-item .price-list, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .car-teaser .price-list, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .similar-car-item .price-list, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .car-teaser .price-list, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .similar-car-item .price-list, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .car-teaser .price-list, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .similar-car-item .price-list, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .car-teaser .price-list, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .similar-car-item .price-list, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .car-teaser .price-list, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .similar-car-item .price-list, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .car-teaser .price-list, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .similar-car-item .price-list, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .car-teaser .price-list, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .similar-car-item .price-list,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .car-teaser .price-list,
.ie9 .vtp-favorites .favorites-panel.vtp-list-view .similar-car-item .price-list,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .car-teaser .price-list,
.ie9 .vtp-favorites .favorites-panel .vtp-list-view .similar-car-item .price-list, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .car-teaser .price-list, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .similar-car-item .price-list, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .car-teaser .price-list, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .similar-car-item .price-list, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .car-teaser .price-list, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .similar-car-item .price-list, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .car-teaser .price-list, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .similar-car-item .price-list, .ie9 #suggested-cars.favorites-panel.vtp-list-view .car-teaser .price-list, .ie9 #suggested-cars.favorites-panel.vtp-list-view .similar-car-item .price-list, .ie9 #suggested-cars.favorites-panel .vtp-list-view .car-teaser .price-list, .ie9 #suggested-cars.favorites-panel .vtp-list-view .similar-car-item .price-list, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .car-teaser .price-list, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .similar-car-item .price-list, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .car-teaser .price-list, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .similar-car-item .price-list,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .car-teaser .price-list,
.ie9 #suggested-cars .favorites-panel.vtp-list-view .similar-car-item .price-list,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .car-teaser .price-list,
.ie9 #suggested-cars .favorites-panel .vtp-list-view .similar-car-item .price-list, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .car-teaser .price-list, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .similar-car-item .price-list, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .car-teaser .price-list, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .similar-car-item .price-list {
  text-align: right;
  font-size: 15px;
  margin-bottom: 2.4rem;
}
@media only screen and (max-width: 940px) {
  .ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .car-teaser .price-list, .ie9 .vtp-results-page.vtp-results-panel.vtp-list-view .similar-car-item .price-list, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .car-teaser .price-list, .ie9 .vtp-results-page.vtp-results-panel .vtp-list-view .similar-car-item .price-list, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .car-teaser .price-list, .ie9 .vtp-results-page.favorites-panel.vtp-list-view .similar-car-item .price-list, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .car-teaser .price-list, .ie9 .vtp-results-page.favorites-panel .vtp-list-view .similar-car-item .price-list, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .car-teaser .price-list, .ie9 .vtp-results-page .vtp-results-panel.vtp-list-view .similar-car-item .price-list, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .car-teaser .price-list, .ie9 .vtp-results-page .vtp-results-panel .vtp-list-view .similar-car-item .price-list,
  .ie9 .vtp-results-page .favorites-panel.vtp-list-view .car-teaser .price-list,
  .ie9 .vtp-results-page .favorites-panel.vtp-list-view .similar-car-item .price-list,
  .ie9 .vtp-results-page .favorites-panel .vtp-list-view .car-teaser .price-list,
  .ie9 .vtp-results-page .favorites-panel .vtp-list-view .similar-car-item .price-list, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .car-teaser .price-list, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-list-view .similar-car-item .price-list, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .car-teaser .price-list, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-list-view .similar-car-item .price-list, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .car-teaser .price-list, .ie9 .vtp-favorites.vtp-results-panel.vtp-list-view .similar-car-item .price-list, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .car-teaser .price-list, .ie9 .vtp-favorites.vtp-results-panel .vtp-list-view .similar-car-item .price-list, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .car-teaser .price-list, .ie9 .vtp-favorites.favorites-panel.vtp-list-view .similar-car-item .price-list, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .car-teaser .price-list, .ie9 .vtp-favorites.favorites-panel .vtp-list-view .similar-car-item .price-list, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .car-teaser .price-list, .ie9 .vtp-favorites .vtp-results-panel.vtp-list-view .similar-car-item .price-list, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .car-teaser .price-list, .ie9 .vtp-favorites .vtp-results-panel .vtp-list-view .similar-car-item .price-list,
  .ie9 .vtp-favorites .favorites-panel.vtp-list-view .car-teaser .price-list,
  .ie9 .vtp-favorites .favorites-panel.vtp-list-view .similar-car-item .price-list,
  .ie9 .vtp-favorites .favorites-panel .vtp-list-view .car-teaser .price-list,
  .ie9 .vtp-favorites .favorites-panel .vtp-list-view .similar-car-item .price-list, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .car-teaser .price-list, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-list-view .similar-car-item .price-list, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .car-teaser .price-list, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-list-view .similar-car-item .price-list, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .car-teaser .price-list, .ie9 #suggested-cars.vtp-results-panel.vtp-list-view .similar-car-item .price-list, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .car-teaser .price-list, .ie9 #suggested-cars.vtp-results-panel .vtp-list-view .similar-car-item .price-list, .ie9 #suggested-cars.favorites-panel.vtp-list-view .car-teaser .price-list, .ie9 #suggested-cars.favorites-panel.vtp-list-view .similar-car-item .price-list, .ie9 #suggested-cars.favorites-panel .vtp-list-view .car-teaser .price-list, .ie9 #suggested-cars.favorites-panel .vtp-list-view .similar-car-item .price-list, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .car-teaser .price-list, .ie9 #suggested-cars .vtp-results-panel.vtp-list-view .similar-car-item .price-list, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .car-teaser .price-list, .ie9 #suggested-cars .vtp-results-panel .vtp-list-view .similar-car-item .price-list,
  .ie9 #suggested-cars .favorites-panel.vtp-list-view .car-teaser .price-list,
  .ie9 #suggested-cars .favorites-panel.vtp-list-view .similar-car-item .price-list,
  .ie9 #suggested-cars .favorites-panel .vtp-list-view .car-teaser .price-list,
  .ie9 #suggested-cars .favorites-panel .vtp-list-view .similar-car-item .price-list, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .car-teaser .price-list, .ie9 #suggested-cars.vtp-suggested-cars.vtp-list-view .similar-car-item .price-list, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .car-teaser .price-list, .ie9 #suggested-cars.vtp-suggested-cars .vtp-list-view .similar-car-item .price-list {
    display: block;
  }
}
.ie9 .vtp-results-page.vtp-results-panel.vtp-grid-view .details, .ie9 .vtp-results-page.vtp-results-panel .vtp-grid-view .details, .ie9 .vtp-results-page.favorites-panel.vtp-grid-view .details, .ie9 .vtp-results-page.favorites-panel .vtp-grid-view .details, .ie9 .vtp-results-page .vtp-results-panel.vtp-grid-view .details, .ie9 .vtp-results-page .vtp-results-panel .vtp-grid-view .details,
.ie9 .vtp-results-page .favorites-panel.vtp-grid-view .details,
.ie9 .vtp-results-page .favorites-panel .vtp-grid-view .details, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-grid-view .details, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-grid-view .details, .ie9 .vtp-favorites.vtp-results-panel.vtp-grid-view .details, .ie9 .vtp-favorites.vtp-results-panel .vtp-grid-view .details, .ie9 .vtp-favorites.favorites-panel.vtp-grid-view .details, .ie9 .vtp-favorites.favorites-panel .vtp-grid-view .details, .ie9 .vtp-favorites .vtp-results-panel.vtp-grid-view .details, .ie9 .vtp-favorites .vtp-results-panel .vtp-grid-view .details,
.ie9 .vtp-favorites .favorites-panel.vtp-grid-view .details,
.ie9 .vtp-favorites .favorites-panel .vtp-grid-view .details, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-grid-view .details, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-grid-view .details, .ie9 #suggested-cars.vtp-results-panel.vtp-grid-view .details, .ie9 #suggested-cars.vtp-results-panel .vtp-grid-view .details, .ie9 #suggested-cars.favorites-panel.vtp-grid-view .details, .ie9 #suggested-cars.favorites-panel .vtp-grid-view .details, .ie9 #suggested-cars .vtp-results-panel.vtp-grid-view .details, .ie9 #suggested-cars .vtp-results-panel .vtp-grid-view .details,
.ie9 #suggested-cars .favorites-panel.vtp-grid-view .details,
.ie9 #suggested-cars .favorites-panel .vtp-grid-view .details, .ie9 #suggested-cars.vtp-suggested-cars.vtp-grid-view .details, .ie9 #suggested-cars.vtp-suggested-cars .vtp-grid-view .details {
  margin-top: 10px;
}
.ie9 .vtp-results-page.vtp-results-panel.vtp-grid-view .car-teaser .price-grid, .ie9 .vtp-results-page.vtp-results-panel.vtp-grid-view .similar-car-item .price-grid, .ie9 .vtp-results-page.vtp-results-panel .vtp-grid-view .car-teaser .price-grid, .ie9 .vtp-results-page.vtp-results-panel .vtp-grid-view .similar-car-item .price-grid, .ie9 .vtp-results-page.favorites-panel.vtp-grid-view .car-teaser .price-grid, .ie9 .vtp-results-page.favorites-panel.vtp-grid-view .similar-car-item .price-grid, .ie9 .vtp-results-page.favorites-panel .vtp-grid-view .car-teaser .price-grid, .ie9 .vtp-results-page.favorites-panel .vtp-grid-view .similar-car-item .price-grid, .ie9 .vtp-results-page .vtp-results-panel.vtp-grid-view .car-teaser .price-grid, .ie9 .vtp-results-page .vtp-results-panel.vtp-grid-view .similar-car-item .price-grid, .ie9 .vtp-results-page .vtp-results-panel .vtp-grid-view .car-teaser .price-grid, .ie9 .vtp-results-page .vtp-results-panel .vtp-grid-view .similar-car-item .price-grid,
.ie9 .vtp-results-page .favorites-panel.vtp-grid-view .car-teaser .price-grid,
.ie9 .vtp-results-page .favorites-panel.vtp-grid-view .similar-car-item .price-grid,
.ie9 .vtp-results-page .favorites-panel .vtp-grid-view .car-teaser .price-grid,
.ie9 .vtp-results-page .favorites-panel .vtp-grid-view .similar-car-item .price-grid, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-grid-view .car-teaser .price-grid, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-grid-view .similar-car-item .price-grid, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-grid-view .car-teaser .price-grid, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-grid-view .similar-car-item .price-grid, .ie9 .vtp-favorites.vtp-results-panel.vtp-grid-view .car-teaser .price-grid, .ie9 .vtp-favorites.vtp-results-panel.vtp-grid-view .similar-car-item .price-grid, .ie9 .vtp-favorites.vtp-results-panel .vtp-grid-view .car-teaser .price-grid, .ie9 .vtp-favorites.vtp-results-panel .vtp-grid-view .similar-car-item .price-grid, .ie9 .vtp-favorites.favorites-panel.vtp-grid-view .car-teaser .price-grid, .ie9 .vtp-favorites.favorites-panel.vtp-grid-view .similar-car-item .price-grid, .ie9 .vtp-favorites.favorites-panel .vtp-grid-view .car-teaser .price-grid, .ie9 .vtp-favorites.favorites-panel .vtp-grid-view .similar-car-item .price-grid, .ie9 .vtp-favorites .vtp-results-panel.vtp-grid-view .car-teaser .price-grid, .ie9 .vtp-favorites .vtp-results-panel.vtp-grid-view .similar-car-item .price-grid, .ie9 .vtp-favorites .vtp-results-panel .vtp-grid-view .car-teaser .price-grid, .ie9 .vtp-favorites .vtp-results-panel .vtp-grid-view .similar-car-item .price-grid,
.ie9 .vtp-favorites .favorites-panel.vtp-grid-view .car-teaser .price-grid,
.ie9 .vtp-favorites .favorites-panel.vtp-grid-view .similar-car-item .price-grid,
.ie9 .vtp-favorites .favorites-panel .vtp-grid-view .car-teaser .price-grid,
.ie9 .vtp-favorites .favorites-panel .vtp-grid-view .similar-car-item .price-grid, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-grid-view .car-teaser .price-grid, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-grid-view .similar-car-item .price-grid, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-grid-view .car-teaser .price-grid, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-grid-view .similar-car-item .price-grid, .ie9 #suggested-cars.vtp-results-panel.vtp-grid-view .car-teaser .price-grid, .ie9 #suggested-cars.vtp-results-panel.vtp-grid-view .similar-car-item .price-grid, .ie9 #suggested-cars.vtp-results-panel .vtp-grid-view .car-teaser .price-grid, .ie9 #suggested-cars.vtp-results-panel .vtp-grid-view .similar-car-item .price-grid, .ie9 #suggested-cars.favorites-panel.vtp-grid-view .car-teaser .price-grid, .ie9 #suggested-cars.favorites-panel.vtp-grid-view .similar-car-item .price-grid, .ie9 #suggested-cars.favorites-panel .vtp-grid-view .car-teaser .price-grid, .ie9 #suggested-cars.favorites-panel .vtp-grid-view .similar-car-item .price-grid, .ie9 #suggested-cars .vtp-results-panel.vtp-grid-view .car-teaser .price-grid, .ie9 #suggested-cars .vtp-results-panel.vtp-grid-view .similar-car-item .price-grid, .ie9 #suggested-cars .vtp-results-panel .vtp-grid-view .car-teaser .price-grid, .ie9 #suggested-cars .vtp-results-panel .vtp-grid-view .similar-car-item .price-grid,
.ie9 #suggested-cars .favorites-panel.vtp-grid-view .car-teaser .price-grid,
.ie9 #suggested-cars .favorites-panel.vtp-grid-view .similar-car-item .price-grid,
.ie9 #suggested-cars .favorites-panel .vtp-grid-view .car-teaser .price-grid,
.ie9 #suggested-cars .favorites-panel .vtp-grid-view .similar-car-item .price-grid, .ie9 #suggested-cars.vtp-suggested-cars.vtp-grid-view .car-teaser .price-grid, .ie9 #suggested-cars.vtp-suggested-cars.vtp-grid-view .similar-car-item .price-grid, .ie9 #suggested-cars.vtp-suggested-cars .vtp-grid-view .car-teaser .price-grid, .ie9 #suggested-cars.vtp-suggested-cars .vtp-grid-view .similar-car-item .price-grid {
  margin-bottom: 11px;
  font-size: 15px;
}
.ie9 .vtp-results-page.vtp-results-panel.vtp-grid-view .car-teaser .price-list, .ie9 .vtp-results-page.vtp-results-panel.vtp-grid-view .similar-car-item .price-list, .ie9 .vtp-results-page.vtp-results-panel .vtp-grid-view .car-teaser .price-list, .ie9 .vtp-results-page.vtp-results-panel .vtp-grid-view .similar-car-item .price-list, .ie9 .vtp-results-page.favorites-panel.vtp-grid-view .car-teaser .price-list, .ie9 .vtp-results-page.favorites-panel.vtp-grid-view .similar-car-item .price-list, .ie9 .vtp-results-page.favorites-panel .vtp-grid-view .car-teaser .price-list, .ie9 .vtp-results-page.favorites-panel .vtp-grid-view .similar-car-item .price-list, .ie9 .vtp-results-page .vtp-results-panel.vtp-grid-view .car-teaser .price-list, .ie9 .vtp-results-page .vtp-results-panel.vtp-grid-view .similar-car-item .price-list, .ie9 .vtp-results-page .vtp-results-panel .vtp-grid-view .car-teaser .price-list, .ie9 .vtp-results-page .vtp-results-panel .vtp-grid-view .similar-car-item .price-list,
.ie9 .vtp-results-page .favorites-panel.vtp-grid-view .car-teaser .price-list,
.ie9 .vtp-results-page .favorites-panel.vtp-grid-view .similar-car-item .price-list,
.ie9 .vtp-results-page .favorites-panel .vtp-grid-view .car-teaser .price-list,
.ie9 .vtp-results-page .favorites-panel .vtp-grid-view .similar-car-item .price-list, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-grid-view .car-teaser .price-list, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-grid-view .similar-car-item .price-list, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-grid-view .car-teaser .price-list, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-grid-view .similar-car-item .price-list, .ie9 .vtp-favorites.vtp-results-panel.vtp-grid-view .car-teaser .price-list, .ie9 .vtp-favorites.vtp-results-panel.vtp-grid-view .similar-car-item .price-list, .ie9 .vtp-favorites.vtp-results-panel .vtp-grid-view .car-teaser .price-list, .ie9 .vtp-favorites.vtp-results-panel .vtp-grid-view .similar-car-item .price-list, .ie9 .vtp-favorites.favorites-panel.vtp-grid-view .car-teaser .price-list, .ie9 .vtp-favorites.favorites-panel.vtp-grid-view .similar-car-item .price-list, .ie9 .vtp-favorites.favorites-panel .vtp-grid-view .car-teaser .price-list, .ie9 .vtp-favorites.favorites-panel .vtp-grid-view .similar-car-item .price-list, .ie9 .vtp-favorites .vtp-results-panel.vtp-grid-view .car-teaser .price-list, .ie9 .vtp-favorites .vtp-results-panel.vtp-grid-view .similar-car-item .price-list, .ie9 .vtp-favorites .vtp-results-panel .vtp-grid-view .car-teaser .price-list, .ie9 .vtp-favorites .vtp-results-panel .vtp-grid-view .similar-car-item .price-list,
.ie9 .vtp-favorites .favorites-panel.vtp-grid-view .car-teaser .price-list,
.ie9 .vtp-favorites .favorites-panel.vtp-grid-view .similar-car-item .price-list,
.ie9 .vtp-favorites .favorites-panel .vtp-grid-view .car-teaser .price-list,
.ie9 .vtp-favorites .favorites-panel .vtp-grid-view .similar-car-item .price-list, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-grid-view .car-teaser .price-list, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-grid-view .similar-car-item .price-list, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-grid-view .car-teaser .price-list, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-grid-view .similar-car-item .price-list, .ie9 #suggested-cars.vtp-results-panel.vtp-grid-view .car-teaser .price-list, .ie9 #suggested-cars.vtp-results-panel.vtp-grid-view .similar-car-item .price-list, .ie9 #suggested-cars.vtp-results-panel .vtp-grid-view .car-teaser .price-list, .ie9 #suggested-cars.vtp-results-panel .vtp-grid-view .similar-car-item .price-list, .ie9 #suggested-cars.favorites-panel.vtp-grid-view .car-teaser .price-list, .ie9 #suggested-cars.favorites-panel.vtp-grid-view .similar-car-item .price-list, .ie9 #suggested-cars.favorites-panel .vtp-grid-view .car-teaser .price-list, .ie9 #suggested-cars.favorites-panel .vtp-grid-view .similar-car-item .price-list, .ie9 #suggested-cars .vtp-results-panel.vtp-grid-view .car-teaser .price-list, .ie9 #suggested-cars .vtp-results-panel.vtp-grid-view .similar-car-item .price-list, .ie9 #suggested-cars .vtp-results-panel .vtp-grid-view .car-teaser .price-list, .ie9 #suggested-cars .vtp-results-panel .vtp-grid-view .similar-car-item .price-list,
.ie9 #suggested-cars .favorites-panel.vtp-grid-view .car-teaser .price-list,
.ie9 #suggested-cars .favorites-panel.vtp-grid-view .similar-car-item .price-list,
.ie9 #suggested-cars .favorites-panel .vtp-grid-view .car-teaser .price-list,
.ie9 #suggested-cars .favorites-panel .vtp-grid-view .similar-car-item .price-list, .ie9 #suggested-cars.vtp-suggested-cars.vtp-grid-view .car-teaser .price-list, .ie9 #suggested-cars.vtp-suggested-cars.vtp-grid-view .similar-car-item .price-list, .ie9 #suggested-cars.vtp-suggested-cars .vtp-grid-view .car-teaser .price-list, .ie9 #suggested-cars.vtp-suggested-cars .vtp-grid-view .similar-car-item .price-list {
  display: none;
}
.ie9 .vtp-results-page.vtp-results-panel.vtp-grid-view .result-listview-right-column, .ie9 .vtp-results-page.vtp-results-panel .vtp-grid-view .result-listview-right-column, .ie9 .vtp-results-page.favorites-panel.vtp-grid-view .result-listview-right-column, .ie9 .vtp-results-page.favorites-panel .vtp-grid-view .result-listview-right-column, .ie9 .vtp-results-page .vtp-results-panel.vtp-grid-view .result-listview-right-column, .ie9 .vtp-results-page .vtp-results-panel .vtp-grid-view .result-listview-right-column,
.ie9 .vtp-results-page .favorites-panel.vtp-grid-view .result-listview-right-column,
.ie9 .vtp-results-page .favorites-panel .vtp-grid-view .result-listview-right-column, .ie9 .vtp-results-page.vtp-suggested-cars.vtp-grid-view .result-listview-right-column, .ie9 .vtp-results-page.vtp-suggested-cars .vtp-grid-view .result-listview-right-column, .ie9 .vtp-favorites.vtp-results-panel.vtp-grid-view .result-listview-right-column, .ie9 .vtp-favorites.vtp-results-panel .vtp-grid-view .result-listview-right-column, .ie9 .vtp-favorites.favorites-panel.vtp-grid-view .result-listview-right-column, .ie9 .vtp-favorites.favorites-panel .vtp-grid-view .result-listview-right-column, .ie9 .vtp-favorites .vtp-results-panel.vtp-grid-view .result-listview-right-column, .ie9 .vtp-favorites .vtp-results-panel .vtp-grid-view .result-listview-right-column,
.ie9 .vtp-favorites .favorites-panel.vtp-grid-view .result-listview-right-column,
.ie9 .vtp-favorites .favorites-panel .vtp-grid-view .result-listview-right-column, .ie9 .vtp-favorites.vtp-suggested-cars.vtp-grid-view .result-listview-right-column, .ie9 .vtp-favorites.vtp-suggested-cars .vtp-grid-view .result-listview-right-column, .ie9 #suggested-cars.vtp-results-panel.vtp-grid-view .result-listview-right-column, .ie9 #suggested-cars.vtp-results-panel .vtp-grid-view .result-listview-right-column, .ie9 #suggested-cars.favorites-panel.vtp-grid-view .result-listview-right-column, .ie9 #suggested-cars.favorites-panel .vtp-grid-view .result-listview-right-column, .ie9 #suggested-cars .vtp-results-panel.vtp-grid-view .result-listview-right-column, .ie9 #suggested-cars .vtp-results-panel .vtp-grid-view .result-listview-right-column,
.ie9 #suggested-cars .favorites-panel.vtp-grid-view .result-listview-right-column,
.ie9 #suggested-cars .favorites-panel .vtp-grid-view .result-listview-right-column, .ie9 #suggested-cars.vtp-suggested-cars.vtp-grid-view .result-listview-right-column, .ie9 #suggested-cars.vtp-suggested-cars .vtp-grid-view .result-listview-right-column {
  padding-top: 20px;
  clear: both;
}
.vtp-results-page .special-offer, .vtp-favorites .special-offer, #suggested-cars .special-offer {
  display: block;
  margin: 0 0 1rem;
}

.resultstyle-caapproach.favorites-panel .dealer-link {
  margin-bottom: 4rem;
}

.vtp-grid-view .vtp-results-view .summary-data-copy {
  display: none;
}
.vtp-grid-view .vtp-results-view .vtp-plus.vtp-warranty .product-extras {
  min-height: 75px;
}
@media only screen and (max-width: 768px) {
  .vtp-grid-view .vtp-results-view .vtp-plus.vtp-warranty .product-extras {
    min-height: 95px;
  }
}
.vtp-grid-view .vtp-results-view .summary-data-list {
  margin: 0 0 1rem;
}
.vtp-grid-view .vtp-results-view .summary-data-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
}
.vtp-grid-view .vtp-results-view .summary-data-list li p.summary-data-description {
  width: 112px;
  margin: 0;
  font-weight: 700;
}
.vtp-grid-view .vtp-results-view .summary-data-list li p.summary-data-value {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.vtp-grid-view .vtp-results-view .car-teaser-options {
  border-bottom: 1px solid #cdd0d2;
}

.vtp-list-view .vtp-results-view .summary-data-list {
  display: none;
}

@media only screen and (max-width: 568px) {
  .vtp-results-page .car-teaser-options,
  .vtp-favorites .car-teaser-options {
    border-top: none !important;
    border-bottom: 1px solid #cdd0d2;
  }
}

.vtp-results-page .resultstyle-ukapproach .vtp-results-view .car-teaser .picture, .vtp-results-page .resultstyle-ukapproach .vtp-results-view .similar-car-item .picture, .vtp-results-page .resultstyle-caapproach .vtp-results-view .car-teaser .picture, .vtp-results-page .resultstyle-caapproach .vtp-results-view .similar-car-item .picture {
  right: 0;
}
.vtp-results-page .resultstyle-ukapproach .vtp-results-view .car-teaser .picture:nth-of-type(2), .vtp-results-page .resultstyle-ukapproach .vtp-results-view .similar-car-item .picture:nth-of-type(2), .vtp-results-page .resultstyle-caapproach .vtp-results-view .car-teaser .picture:nth-of-type(2), .vtp-results-page .resultstyle-caapproach .vtp-results-view .similar-car-item .picture:nth-of-type(2) {
  display: none;
}
.vtp-results-page .resultstyle-ukapproach .vtp-results-view .car-teaser .image-container.vtp-image-ratio_3x2, .vtp-results-page .resultstyle-ukapproach .vtp-results-view .similar-car-item .image-container.vtp-image-ratio_3x2, .vtp-results-page .resultstyle-caapproach .vtp-results-view .car-teaser .image-container.vtp-image-ratio_3x2, .vtp-results-page .resultstyle-caapproach .vtp-results-view .similar-car-item .image-container.vtp-image-ratio_3x2 {
  padding-bottom: 66.666%;
}

.lt-ie9 .vtp-list-view .vtp-results-view .car-teaser .picture, .lt-ie9 .vtp-list-view .vtp-results-view .similar-car-item .picture {
  clear: none;
  display: block !important;
  float: left;
  margin-left: 0%;
  margin-right: 0%;
  text-align: center;
  width: 50%;
}
.lt-ie9 .vtp-list-view .vtp-results-view .car-teaser > div + div, .lt-ie9 .vtp-list-view .vtp-results-view .similar-car-item > div + div {
  clear: none;
  float: left;
  margin-left: 0%;
  margin-right: 0%;
  padding-right: 80px;
  text-align: inherit;
  width: 54.22222%;
}
.lt-ie9 .vtp-list-view .vtp-results-view .car-teaser .product-extras .left-icons, .lt-ie9 .vtp-list-view .vtp-results-view .similar-car-item .product-extras .left-icons {
  top: 20%;
}

@media print {
  .resultstyle-ukapproach .result-listview-left-column .price, .resultstyle-caapproach .result-listview-left-column .price {
    display: none !important;
  }
  .resultstyle-ukapproach .result-listview-right-column .price, .resultstyle-caapproach .result-listview-right-column .price {
    padding-right: 0 !important;
  }
}

.resultstyle-ukapproach .finance-link {
  margin-bottom: 11px;
}

.resultstyle-ukapproach.vtp-list-view .result-listview-left-column .finance-link {
  display: none;
}
@media only screen and (max-width: 767px) {
  .resultstyle-ukapproach.vtp-list-view .result-listview-left-column .finance-link {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .resultstyle-ukapproach.vtp-list-view .result-listview-left-column .price.price-grid {
    margin-bottom: 11px;
  }
}
.resultstyle-ukapproach.vtp-list-view .result-listview-right-column .finance-link {
  float: right;
}
@media only screen and (max-width: 767px) {
  .resultstyle-ukapproach.vtp-list-view .result-listview-right-column .finance-link {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .resultstyle-ukapproach.vtp-list-view .result-listview-right-column .price.price-list {
    display: none !important;
  }
}

.resultstyle-ukapproach.vtp-grid-view .result-listview-left-column .finance-link {
  display: block;
}
.resultstyle-ukapproach.vtp-grid-view .result-listview-right-column .finance-link {
  display: none;
}

.spinner {
  width: 100%;
  height: 100%;
  min-height: 8px;
  min-width: 45px;
  background: url("data:image/gif;base64,R0lGODlhJQAFAJECAMwAM7C2uP///wAAACH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo2QzBGRUUzOTI1MjA2ODExOTQ1N0IxREU0NTY4NUJFNyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpDNUVEMzFGNDgwMTIxMUUyODgwQThEM0I2RTIwMERBQiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpDNUVEMzFGMzgwMTIxMUUyODgwQThEM0I2RTIwMERBQiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkM0MzRFOUFEMjkyMDY4MTE5NDU3QjFERTQ1Njg1QkU3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjZDMEZFRTM5MjUyMDY4MTE5NDU3QjFERTQ1Njg1QkU3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEBQ8AAgAsAAAAACUABQAAAiGELRm7KdwUdDAcJBmdOT54AZvWBaNXhadZrqvaxh85LwUAIfkEBQ8AAgAsAAAAAA0ABQAAAg+MLQm7h8qAC0lE6eqdOhYAIfkEBQ8AAgAsCAAAAA0ABQAAAg+MLQm7h8qAC0lE6eqdOhYAIfkEBQ8AAgAsEAAAAA0ABQAAAg+MLQm7h8qAC0lE6eqdOhYAIfkEBQ8AAgAsGAAAAA0ABQAAAg+MLQm7h8qAC0lE6eqdOhYAIfkEBQ8AAgAsGAAAAA0ABQAAAg+ELRm7h8qCA0lE6eqdOhYAIfkEBQ8AAgAsEAAAAA0ABQAAAg+ELRm7h8qCA0lE6eqdOhYAIfkEBQ8AAgAsCAAAAA0ABQAAAg+ELRm7h8qCA0lE6eqdOhYAOw==") no-repeat center left;
  background-position: 50%;
}

.delete-overlay {
  -webkit-animation-duration: 200ms;
  -o-animation-duration: 200ms;
  animation-duration: 200ms;
  z-index: 2000;
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -2px;
  /* May want to do this if there is risk the container may be narrower than the element inside */
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .delete-overlay {
    text-align: center;
  }
}
.delete-overlay:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
  /* Adjusts for spacing */
}

.delete-overlay-content {
  text-align: left;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1em;
  left: 34.3%;
}
.delete-overlay-content button {
  margin-right: 16px;
  margin-right: 1.3333333333rem;
}
@media only screen and (max-width: 767px) {
  .delete-overlay-content {
    left: 10px;
    top: 10px;
    position: absolute;
  }
}

/* Audi Personal Online Assistant */
#vee24LiveHelpTabHTML {
  display: none !important;
}

.vtp-zoom {
  position: fixed;
  z-index: 6000;
  top: 0;
}

.zoomContainer {
  cursor: url("../images/zoom-icon-shrink-cursor.png") 24 24, pointer !important;
  cursor: pointer;
  overflow: hidden;
}
@media only screen and (max-width: 568px) {
  .zoomContainer {
    cursor: default !important;
  }
}

.vtp-zoom .vtp-slide-zoomButton,
[data-toggle=zoom] .vtp-slide-zoomButton {
  position: absolute;
  top: 0;
  right: 0;
}

.vtp-infoLayer {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -6378px;
  background-repeat: no-repeat;
  width: 48px;
  height: 48px;
  position: absolute;
  z-index: 5100;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-infoLayer {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-slide-zoomButton {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 40px;
}
.vtp-slide-zoomButton:after {
  content: "";
  position: absolute;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -4235px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  left: 0;
  top: 0;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-slide-zoomButton:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-slide-zoomButton:hover:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -4185px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-slide-zoomButton:hover:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-slide-zoomButton.vtp-slide-zoomOutButton {
  z-index: 5100;
}
.vtp-slide-zoomButton.vtp-slide-zoomOutButton:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -4135px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-slide-zoomButton.vtp-slide-zoomOutButton:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-slide-zoomButton.vtp-slide-zoomOutButton:hover:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -4085px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-slide-zoomButton.vtp-slide-zoomOutButton:hover:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-zoom-mobile {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
}
.vtp-zoom-mobile .vtp-slide-zoomButton {
  position: absolute;
  top: 0px;
  right: 0px;
}
.vtp-zoom-mobile .zoomContainer {
  top: 50% !important;
  left: 50% !important;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

@media print {
  #vee24IntegratedPanel,
  #vee24LiveHelpTabHTML,
  #vee24LiveHelpTabPanel,
  .vtp-noprint {
    display: none !important;
  }
  .vtp-print-page-first {
    min-height: 880px;
  }
  .lt-ie9 .vtp-print-page-first, .ie9 .vtp-print-page-first {
    min-height: 1400px !important;
  }
  .vtp-print-page {
    min-height: 960px;
  }
  .lt-ie9 .vtp-print-page, .ie9 .vtp-print-page {
    min-height: 1500px !important;
  }
  h1, h2, h3, h4, h5, h6 {
    overflow: visible !important;
    text-overflow: initial !important;
    display: block !important;
    -webkit-line-clamp: initial !important;
    -webkit-box-orient: initial !important;
    max-height: none !important;
  }
}
.vtp-component-parent {
  position: relative;
}

.vtp-header {
  height: 70px;
  z-index: 3000 !important;
  max-width: 1400px;
  margin: 0 auto;
  min-width: 0;
  background: #fff;
  background-position: 50% 50%;
  background-size: cover;
  -ms-behavior: url("../js/vendor/backgroundsize.min.htc");
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
}
.vtp-header > .vtp-container > .container {
  position: relative;
  height: 100%;
  line-height: 55px;
  max-width: 1180px;
  min-width: 0;
  margin: 0 auto;
  z-index: 3510;
  *zoom: 1;
  width: auto;
  max-width: 1180px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.vtp-header > .vtp-container > .container:before, .vtp-header > .vtp-container > .container:after {
  content: "";
  display: table;
}
.vtp-header > .vtp-container > .container:after {
  clear: both;
}
@media only screen and (max-width: 1280px) {
  .vtp-header > .vtp-container > .container {
    margin-top: 0;
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media only screen and (max-width: 1024px) {
  .vtp-header > .vtp-container > .container {
    margin-top: 0;
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-header > .vtp-container > .container {
    margin-top: 0;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-header > .vtp-container > .container {
    margin-top: 0;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
@media only screen and (min-width: 1280px) {
  .vtp-header > .vtp-container > .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.vtp-header .menu {
  float: left;
  display: inline-block;
  margin-right: 32px;
  padding-top: 15px;
}
@media only screen and (max-width: 1024px) {
  .vtp-header .menu {
    float: none;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-header .menu {
    margin-top: 3px;
  }
}
.vtp-header .menu .vtp-link, .vtp-header .menu .vtp-breadcrumb-item {
  padding: 20px 7px;
}
.vtp-header .menu .vtp-link:before, .vtp-header .menu .vtp-breadcrumb-item:before {
  display: inline-block;
  content: "";
  position: relative;
  right: 7px;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -425px;
  background-repeat: no-repeat;
  width: 12px;
  height: 9px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-header .menu .vtp-link:before, .vtp-header .menu .vtp-breadcrumb-item:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-header .menu .vtp-link:hover:before, .vtp-header .menu .vtp-breadcrumb-item:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -444px;
  background-repeat: no-repeat;
  width: 12px;
  height: 9px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-header .menu .vtp-link:hover:before, .vtp-header .menu .vtp-breadcrumb-item:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-header .menu .vtp-link.active, .vtp-header .menu .active.vtp-breadcrumb-item {
  color: #c03;
}
.vtp-header .menu .vtp-link.active:before, .vtp-header .menu .active.vtp-breadcrumb-item:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -444px;
  background-repeat: no-repeat;
  width: 12px;
  height: 9px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-header .menu .vtp-link.active:before, .vtp-header .menu .active.vtp-breadcrumb-item:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-header .dropdown-navigation li a:hover {
  color: #c03;
}
.vtp-header .site-nav {
  float: left;
  padding-top: 15px;
}
.vtp-header .site-nav li {
  display: inline-block;
  white-space: nowrap;
}
.vtp-header .site-nav li + li {
  margin: 0 8px 0 8px;
}
.vtp-header .site-nav li:first-child {
  margin: 0 8px 0 0;
}
.vtp-header .site-nav li:first-child a {
  padding-left: 0;
}
.vtp-header .site-nav li:last-child a {
  padding-right: 0;
}
.vtp-header .site-nav a:hover {
  color: #c03;
}
.vtp-header .site-nav a.active {
  border-bottom: 2px solid #c03;
}
.vtp-header .logo {
  position: relative;
  top: 20px;
  float: right;
  width: 90px;
  height: 32px;
  max-width: 100%;
  background: transparent url("../images/audi_logo_31px.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
.vtp-header #nav-layers {
  *zoom: 1;
  width: auto;
  max-width: 1400px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.vtp-header #nav-layers:before, .vtp-header #nav-layers:after {
  content: "";
  display: table;
}
.vtp-header #nav-layers:after {
  clear: both;
}
.vtp-header .nav-layer {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: none;
  position: absolute;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease-in-out 0.3s;
  -o-transition: all 0.3s ease-in-out 0.3s;
  transition: all 0.3s ease-in-out 0.3s;
  z-index: 3500;
}
@media only screen and (max-width: 768px) {
  .vtp-header .nav-layer.collapse {
    padding-left: 0;
    padding-right: 0;
  }
  .vtp-header .nav-layer.collapse.menu {
    padding-top: 50px;
  }
}
.vtp-header .nav-layer .vtp-close-btn {
  position: absolute;
  bottom: 40px;
  right: 50px;
}
.vtp-header .nav-layer.menu .container .content {
  padding-top: 0px;
}
.vtp-header .nav-layer .container .content {
  padding-top: 20px;
  padding-bottom: 80px;
  margin: 0 32px;
}
@media only screen and (max-width: 768px) {
  .vtp-header .nav-layer .container .content {
    margin: 0 30px;
  }
}
.vtp-header .nav-layer.menu .submenu .column,
.vtp-header .nav-layer.menu .links .column {
  float: left;
  clear: none;
  width: 22.7045%;
  margin-left: 0;
  margin-right: 2.994%;
  margin-right: 4.8%;
  width: 21.3%;
}
.vtp-header .nav-layer.menu .submenu .column:nth-of-type(n),
.vtp-header .nav-layer.menu .links .column:nth-of-type(n) {
  margin-right: 2.994%;
  float: left;
  clear: none;
}
.vtp-header .nav-layer.menu .submenu .column:nth-of-type(4n),
.vtp-header .nav-layer.menu .links .column:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.vtp-header .nav-layer.menu .submenu .column:nth-of-type(4n + 1),
.vtp-header .nav-layer.menu .links .column:nth-of-type(4n + 1) {
  clear: both;
}
.vtp-header .nav-layer.menu .submenu .column:first-child a,
.vtp-header .nav-layer.menu .links .column:first-child a {
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .vtp-header .nav-layer.menu .submenu .column:first-child a,
  .vtp-header .nav-layer.menu .links .column:first-child a {
    margin-bottom: 0px;
  }
}
.vtp-header .nav-layer.menu .submenu .column:nth-of-type(4n),
.vtp-header .nav-layer.menu .links .column:nth-of-type(4n) {
  float: left;
}
.vtp-header .nav-layer.menu .submenu a,
.vtp-header .nav-layer.menu .links a {
  line-height: 1.5rem;
}
.vtp-header .nav-layer.menu .submenu .column {
  margin-bottom: 35px;
}
.vtp-header .nav-layer.menu .submenu .column ul li:first-child {
  display: none;
}
@media only screen and (max-width: 768px) {
  .vtp-header .nav-layer.menu .submenu .column ul li:first-child {
    display: block;
  }
}
.vtp-header .nav-layer.menu ul ul {
  display: block;
}
.vtp-header .nav-layer.menu .links {
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
}
.vtp-header .nav-layer.menu .links .link-with-icon {
  position: relative;
  display: inline-block;
  padding-left: 50px;
  padding-top: 12px;
  height: 42px;
}
.vtp-header .nav-layer.menu .links .link-with-icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 42px;
  height: 42px;
  background-color: #e7e9ea;
}
.vtp-header .nav-layer.menu .links .link-with-icon.login:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5889px;
  background-repeat: no-repeat;
  width: 42px;
  height: 42px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-header .nav-layer.menu .links .link-with-icon.login:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-header .nav-layer.menu .links .link-with-icon.taxation:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5735px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-header .nav-layer.menu .links .link-with-icon.taxation:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-header .nav-layer.menu .links .link-with-icon.test-drive:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5941px;
  background-repeat: no-repeat;
  width: 42px;
  height: 42px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-header .nav-layer.menu .links .link-with-icon.test-drive:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-header .nav-layer.menu .links .link-with-icon.pricelist:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3652px;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-header .nav-layer.menu .links .link-with-icon.pricelist:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-header .nav-layer.menu .links .link-with-icon.service:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3372px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-header .nav-layer.menu .links .link-with-icon.service:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-header .nav-layer.menu .links .link-with-icon.discussion:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5837px;
  background-repeat: no-repeat;
  width: 42px;
  height: 42px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-header .nav-layer.menu .links .link-with-icon.discussion:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-header .nav-layer.menu .links .link-with-icon.direct-mail:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5785px;
  background-repeat: no-repeat;
  width: 42px;
  height: 42px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-header .nav-layer.menu .links .link-with-icon.direct-mail:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-header .nav-layer.menu .links .link-with-icon:hover {
  color: #c03;
}
.vtp-header .nav-layer.menu .links .link-with-icon:hover:before {
  background-color: #d0d3d4;
}
.vtp-header .nav-layer .category-title {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 0;
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
  font-size: 12px;
}
@media only screen and (max-width: 768px) {
  .vtp-header .nav-layer .category-title {
    margin-bottom: 9px;
  }
}
.vtp-header .nav-layer .category-title:hover {
  color: #c03;
}
.vtp-header .nav-layer .vtp-links.basic a, .vtp-header .nav-layer .vtp-footer .basic.footer-links a, .vtp-footer .vtp-header .nav-layer .basic.footer-links a {
  padding-left: 12px;
  font-size: 12px;
  margin-bottom: 0;
}
.vtp-header .nav-layer .vtp-links.basic a:before, .vtp-header .nav-layer .vtp-footer .basic.footer-links a:before, .vtp-footer .vtp-header .nav-layer .basic.footer-links a:before {
  top: 5px;
}
.vtp-header .nav-layer .vtp-links.basic a .icon-rs, .vtp-header .nav-layer .vtp-footer .basic.footer-links a .icon-rs, .vtp-footer .vtp-header .nav-layer .basic.footer-links a .icon-rs {
  padding-left: 7px;
}
.vtp-header .nav-layer .vtp-links.basic a .icon-rs:before, .vtp-header .nav-layer .vtp-footer .basic.footer-links a .icon-rs:before, .vtp-footer .vtp-header .nav-layer .basic.footer-links a .icon-rs:before {
  display: inline-block;
  content: "";
  position: relative;
  top: 1px;
  right: 3px;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -523px;
  background-repeat: no-repeat;
  width: 16px;
  height: 10px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-header .nav-layer .vtp-links.basic a .icon-rs:before, .vtp-header .nav-layer .vtp-footer .basic.footer-links a .icon-rs:before, .vtp-footer .vtp-header .nav-layer .basic.footer-links a .icon-rs:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-header .nav-layer .vtp-links.padded li + li, .vtp-header .nav-layer .vtp-footer .padded.footer-links li + li, .vtp-footer .vtp-header .nav-layer .padded.footer-links li + li {
  margin-top: 9px;
}
.vtp-header .nav-layer .model-layer {
  position: relative;
}
.vtp-header .nav-layer .model-navigation {
  float: left;
  width: 30.37%;
}
.vtp-header .nav-layer .model-navigation li {
  border-bottom: 1px solid #d0d3d4;
  float: left;
  width: 100%;
}
.vtp-header .nav-layer .model-navigation li:first-child {
  border-top: 1px solid #d0d3d4;
}
.vtp-header .nav-layer .model-navigation .model-link {
  display: block;
  padding: 2px 18px 2px 10px;
  line-height: 1.5rem;
  float: left;
  width: 100%;
  overflow: auto;
}
.vtp-header .nav-layer .model-navigation .model-link.active, .vtp-header .nav-layer .model-navigation .model-link:hover {
  color: #c03;
}
.vtp-header .nav-layer .model-navigation .model-link .model-link-img {
  display: block;
  width: 87px;
  height: 36px;
  float: right;
}
.vtp-header .nav-layer .model-navigation .model-link .model-link-text {
  float: left;
  padding: 10px;
}
.vtp-header .nav-layer .model-content {
  float: left;
  width: 69.63%;
  border-left: 1px solid #d0d3d4;
}
.vtp-header .nav-layer .model-image {
  width: 820px;
  min-height: 315px;
  z-index: -1;
}
@media only screen and (max-width: 1100px) {
  .vtp-header .nav-layer .model-image img {
    margin-left: -225px;
  }
}
.vtp-header .nav-layer .model-name {
  width: 100%;
  padding-top: 21px;
  padding-left: 29px;
}
.vtp-header .nav-layer .model-name h3 {
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 3.6rem;
  margin-bottom: 13px !important;
  display: inline-block;
}
.vtp-header .nav-layer .model-name a h3:after {
  display: inline-block;
  margin: 0 0 0 8px;
  content: "";
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1195px;
  background-repeat: no-repeat;
  width: 28px;
  height: 18px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-header .nav-layer .model-name a h3:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-header .nav-layer .model-name a h3:hover {
  color: #c03;
}
@media only screen and (max-width: 1200px) {
  .vtp-header .nav-layer {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1100px) {
  .vtp-header .nav-layer {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .vtp-header .nav-layer {
    margin-right: -1em;
  }
}
.vtp-header .nav-layer .model-info {
  font-family: Verdana, sans-serif;
  float: left;
  width: 50%;
  padding-top: 0;
  padding-left: 29px;
}
.vtp-header .nav-layer .model-info h4 {
  margin-bottom: 1px !important;
  font: 400 15px/20px "AudiTypeExtBold", Verdana, sans-serif;
}
.vtp-header .nav-layer .model-info .info-price {
  margin-bottom: 30px;
}
.vtp-header .nav-layer .model-info .info-text {
  margin-top: 4px;
}
@media only screen and (max-width: 1200px) {
  .vtp-header .nav-layer {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1100px) {
  .vtp-header .nav-layer {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .vtp-header .nav-layer {
    margin-right: -1em;
  }
}
.vtp-header .nav-layer .model-links {
  float: left;
  width: 50%;
  padding-left: 96px;
  padding-top: 1px;
}
@media only screen and (max-width: 1200px) {
  .vtp-header .nav-layer .model-links {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1100px) {
  .vtp-header .nav-layer .model-links {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .vtp-header .nav-layer .model-links {
    margin-right: -1em;
  }
}
.vtp-header .nav-layer .model-links h4.price {
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
}
.vtp-header .nav-layer .model-links .vtp-btn {
  margin: 8px 0 16px;
  padding: 7px 14px;
  font-family: Verdana, sans-serif;
  font-size: 11px;
  font-weight: 700;
}
.vtp-header .nav-layer .model-links .vtp-links.basic, .vtp-header .nav-layer .model-links .vtp-footer .basic.footer-links, .vtp-footer .vtp-header .nav-layer .model-links .basic.footer-links {
  font-family: Verdana, sans-serif;
  font-weight: 700;
}
.vtp-header .nav-layer .model-links .vtp-links.basic li, .vtp-header .nav-layer .model-links .vtp-footer .basic.footer-links li, .vtp-footer .vtp-header .nav-layer .model-links .basic.footer-links li {
  margin-bottom: 11px;
}
.vtp-header .nav-layer .model-links .vtp-links.basic a:before, .vtp-header .nav-layer .model-links .vtp-footer .basic.footer-links a:before, .vtp-footer .vtp-header .nav-layer .model-links .basic.footer-links a:before {
  top: 5px;
}
@media print {
  .vtp-header {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .vtp-header {
    height: 50px;
  }
  .vtp-header > .vtp-container > .container {
    line-height: 50px;
  }
  .vtp-header .container .content {
    margin: 0 0 !important;
  }
  .vtp-header .menu {
    margin-right: 23px;
    padding-top: 20px;
    margin-left: 0;
  }
  .vtp-header .site-nav, .vtp-header .dropdown-navigation {
    display: none;
  }
}
@media only screen and (max-width: 940px) {
  .vtp-header {
    height: 50px;
  }
  .vtp-header > .vtp-container > .container {
    line-height: 50px;
  }
  .vtp-header .menu {
    margin-right: 23px;
    padding-top: 0;
    margin-left: 0;
  }
  .vtp-header .site-nav {
    display: none;
  }
  .vtp-header .logo {
    top: 13px;
    width: 72px;
    height: 25px;
    background-image: url("../images/audi_logo_25px.svg");
    display: block;
  }
}
@media only screen and (max-width: 800px) {
  .vtp-header .nav-layer.menu .submenu .column,
  .vtp-header .nav-layer.menu .links .column {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-header .nav-layer.menu .submenu .column:nth-of-type(n),
  .vtp-header .nav-layer.menu .links .column:nth-of-type(n) {
    margin-right: 2.994%;
    float: left;
    clear: none;
  }
  .vtp-header .nav-layer.menu .submenu .column:nth-of-type(2n),
  .vtp-header .nav-layer.menu .links .column:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .vtp-header .nav-layer.menu .submenu .column:nth-of-type(2n + 1),
  .vtp-header .nav-layer.menu .links .column:nth-of-type(2n + 1) {
    clear: both;
  }
  .vtp-header .nav-layer.menu .links .column:first-child,
  .vtp-header .nav-layer.menu .links .column:nth-child(2) {
    margin-bottom: 24px;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 940px) {
  .vtp-header .nav-layer.menu .container {
    padding: 0;
  }
  .vtp-header .nav-layer.menu .container .content {
    padding-top: 0;
    padding-bottom: 0;
  }
  .vtp-header .nav-layer.menu .vtp-close-btn {
    display: none;
  }
  .vtp-header .nav-layer.menu a {
    display: block;
    position: relative;
    padding: 14px 4% 11px 4%;
    border-top: 1px solid #c6c9cb;
  }
  .vtp-header .nav-layer.menu a[data-toggle=collapse]:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -136px;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
    content: " ";
    display: inline-block;
    position: absolute;
    right: 12px;
  }
}
@media only screen and (max-width: 940px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 940px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 940px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 940px) and (min-resolution: 144dpi), only screen and (max-width: 940px) and (min-resolution: 1.5dppx) {
  .vtp-header .nav-layer.menu a[data-toggle=collapse]:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 940px) {
  .vtp-header .nav-layer.menu a[data-toggle=collapse].active:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -370px;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
  }
}
@media only screen and (max-width: 940px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 940px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 940px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 940px) and (min-resolution: 144dpi), only screen and (max-width: 940px) and (min-resolution: 1.5dppx) {
  .vtp-header .nav-layer.menu a[data-toggle=collapse].active:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 940px) {
  .vtp-header .nav-layer.menu br {
    display: none;
  }
  .vtp-header .nav-layer.menu img {
    display: none;
  }
  .vtp-header .nav-layer.menu .links {
    display: none;
  }
  .vtp-header .nav-layer.menu .vtp-links.basic.padded li + li, .vtp-header .nav-layer.menu .vtp-footer .basic.padded.footer-links li + li, .vtp-footer .vtp-header .nav-layer.menu .basic.padded.footer-links li + li {
    margin-top: 0;
  }
  .vtp-header .nav-layer.menu .vtp-links.basic.padded a, .vtp-header .nav-layer.menu .vtp-footer .basic.padded.footer-links a, .vtp-footer .vtp-header .nav-layer.menu .basic.padded.footer-links a {
    padding-left: 4%;
    padding-right: 4%;
    font-size: 12px;
    background-color: #e8e9eb;
  }
  .vtp-header .nav-layer.menu .vtp-links.basic.padded a:before, .vtp-header .nav-layer.menu .vtp-footer .basic.padded.footer-links a:before, .vtp-footer .vtp-header .nav-layer.menu .basic.padded.footer-links a:before {
    display: none;
  }
  .vtp-header .nav-layer.menu ul ul {
    display: none;
    width: 100%;
  }
  .vtp-header .nav-layer.menu .column:first-child a:first-child {
    border-top: 0;
    margin-top: 3px;
  }
  .vtp-header .nav-layer.menu .submenu .column {
    float: left;
    clear: none;
    width: 99.8%;
    margin-left: 0;
    margin-right: 2.994%;
    margin-left: 0;
    margin-bottom: 0;
    line-height: 1;
  }
  .vtp-header .nav-layer.menu .submenu .column:last-child {
    margin-right: 0;
  }
  .vtp-header .nav-layer.menu .category-title {
    margin-bottom: 0;
    margin-bottom: 0;
  }
  .vtp-header .nav-layer.menu .category-title p {
    margin-bottom: 0;
  }
}
.vtp-header .site-nav a.icon-rs, .vtp-header .dropdown-link a.icon-rs {
  padding-left: 5px;
}
.vtp-header .site-nav a.icon-rs:before, .vtp-header .dropdown-link a.icon-rs:before {
  display: inline-block;
  content: "";
  position: relative;
  top: 0;
  right: 4px;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -523px;
  background-repeat: no-repeat;
  width: 16px;
  height: 10px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-header .site-nav a.icon-rs:before, .vtp-header .dropdown-link a.icon-rs:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.dropdown-navigation:before, .dropdown-navigation:after {
  clear: both;
  content: " ";
  overflow: hidden;
  display: table;
}

.dropdown-navigation {
  line-height: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.dropdown-navigation > li {
  float: left;
  margin-right: 15px;
  position: relative;
}

.dropdown-navigation .dropdown-link:hover .drobdown-subnavi {
  display: block;
}

.dropdown-navigation > li {
  padding-bottom: 5px;
}

.cn .model-navigation {
  /*display: none;*/
  position: relative;
}

.cn .site-nav {
  float: none;
  max-width: 1180px;
  min-width: 0;
  margin: 0 auto;
  padding: 10px 20px;
  position: relative;
  z-index: 3550;
}

.cn .site-nav li {
  float: left;
}

.cn .nav-layer .model-layer {
  margin-top: 0px;
}

.cn .nav-layer .container .content {
  padding-top: 0px;
}

.cn .nav-layer.collapse {
  padding-top: 40px;
}

.cn .drobdown-subnavi {
  display: none;
  position: absolute;
  top: 30px;
  left: -80px;
  width: auto;
  z-index: -1;
  padding: 0;
  height: auto;
}

.cn ul.drobdown-subnavi {
  left: 0px;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
  background-color: #fff;
}

.cn ul.drobdown-subnavi li {
  float: none;
  margin: 0px;
  padding: 10px;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}

.cn .header-overlay-container {
  min-width: 1300px;
}

#model-overlay {
  width: 100%;
  max-width: 1400px;
}

.lt-ie9 .nav-layer {
  border-bottom: 3px solid #efefef;
}

.vtp-header-print {
  display: none;
}

@media print {
  .vtp-header-print {
    margin-left: 4%;
    margin-right: 4%;
    height: 80px;
    display: block;
  }
  .vtp-header-print .logo {
    position: relative;
    top: 20px;
    right: 23px;
    width: 140px;
    height: 48px;
    max-width: 100%;
    float: right;
  }
}
.ck-pol {
  background-color: #434c53;
  max-width: 1400px;
  z-index: 3501;
}

.ckPol-inner {
  width: 100%;
  max-width: 1177.6px;
  min-width: 294px;
  margin: 0 auto;
  padding-top: 16px;
  padding-bottom: 13px;
}

.ckPol-inner ul {
  position: relative;
  clear: both;
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
  margin-top: 15px;
  list-style: none;
}

.ckPol-inner li {
  width: auto;
  float: right;
  padding-right: 20px;
  display: list-item;
  text-align: -webkit-match-parent;
}

.ckPol-font {
  color: #fff;
  font-family: Verdana, sans-serif;
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.ckPol-link {
  position: relative;
  cursor: pointer;
  text-decoration: underline;
}

.ckPol-btn-link {
  display: inline-block;
  padding-left: 12px;
  font-weight: 700;
  cursor: pointer;
}

.ckPol-btn-link::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/sprite-common.png");
  background-position: 0px -226px;
  width: 7px;
  height: 15px;
  margin-top: 5px;
  margin-right: 5px;
}

.ckPol-inner a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.vtp-header-iph {
  position: relative;
}

.vtp-pb-header {
  min-height: 70px;
  z-index: 3000 !important;
  background: #fff url("../images/audi-gradient-head.png") repeat-y;
  background-position: 50% 50%;
  background-size: cover;
  -ms-behavior: url("../js/vendor/backgroundsize.min.htc");
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
}
.vtp-pb-header h1 {
  margin-top: 15px;
  margin-top: 1.25rem;
  line-height: 15.96px;
  line-height: 1.33rem;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  font-size: 1em;
  width: 65%;
  float: left;
  display: inline-block;
}
.vtp-pb-header h1.vtp-no-wordmark {
  padding-top: 1.3em;
}
.vtp-pb-header > .vtp-container > .container {
  position: relative;
  height: 100%;
  line-height: 55px;
  z-index: 3510;
  *zoom: 1;
  width: auto;
  max-width: 1280px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  padding-left: 4% !important;
  padding-right: 4% !important;
}
.vtp-pb-header > .vtp-container > .container:before, .vtp-pb-header > .vtp-container > .container:after {
  content: "";
  display: table;
}
.vtp-pb-header > .vtp-container > .container:after {
  clear: both;
}
@media only screen and (max-width: 940px) {
  .vtp-pb-header > .vtp-container > .container {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .vtp-pb-header > .vtp-container > .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.vtp-pb-header .vtp-brand {
  display: block;
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
}
.vtp-pb-header .logo,
.vtp-pb-header .logo-service {
  float: right;
  height: 31px;
  max-width: 100%;
  -ms-behavior: url("../js/vendor/backgroundsize.min.htc");
  position: relative;
  top: 20px;
  right: 23px;
  width: 90px;
  background-image: url("../images/audi_logo_25px.svg");
  background-size: 100% auto;
}
@media print {
  .vtp-pb-header {
    display: none;
  }
}
@media only screen and (max-width: 940px) {
  .vtp-pb-header .logo,
  .vtp-pb-header .logo-service {
    top: 13px;
    width: 72px;
    height: 25px;
    background-image: url("../images/audi_logo_25px.svg");
  }
}
@media only screen and (max-width: 800px) {
  .vtp-pb-header .logo,
  .vtp-pb-header .logo-service {
    top: 13px;
    height: 25px;
  }
  .vtp-pb-header h1 {
    width: 60%;
  }
  .vtp-pb-header h1.vtp-no-wordmark {
    padding-top: 0.6em;
  }
  .vtp-pb-header .logo,
  .vtp-pb-header .logo-service {
    background-image: url("../images/audi_logo_25px.svg");
    width: 200px;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-pb-header h1 {
    width: 60%;
  }
}

.vtp-header-print {
  display: none;
}

@media print {
  .vtp-header-print {
    margin-left: 4%;
    margin-right: 4%;
    min-height: 60px;
    display: block;
  }
  .vtp-header-print .logo-service {
    position: relative;
    top: 20px;
    width: 90px;
    max-width: 100%;
    float: right;
  }
  .vtp-header-print .logo-service img {
    width: 90px;
    height: auto;
  }
  .vtp-header-print .logo-service {
    width: 212px;
    max-width: 100%;
  }
  .vtp-header-print .logo-service img {
    width: 212px;
  }
}
legend .container .vtp-consumption-legend {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-top: 24px;
}
legend .container .vtp-consumption-legend .vtp-efficiency-icon .vtp-icon {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -764px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  legend .container .vtp-consumption-legend .vtp-efficiency-icon .vtp-icon {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
legend .container .vtp-consumption-legend .vtp-consumption-icon .vtp-icon {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -1164px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  legend .container .vtp-consumption-legend .vtp-consumption-icon .vtp-icon {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
legend .container .vtp-consumption-legend .vtp-emission-icon .vtp-icon {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -1204px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  legend .container .vtp-consumption-legend .vtp-emission-icon .vtp-icon {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
legend .container .vtp-consumption-legend p {
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: 3.2rem;
  margin-right: 36px;
  margin-bottom: 0;
}
legend .container .vtp-consumption-legend p .vtp-icon {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 12px;
  background-repeat: no-repeat;
}

.vtp-footer {
  min-height: 200px;
  padding-bottom: 6em;
  padding-top: 40px !important;
  word-wrap: break-word;
  color: #ffffff;
  background-color: #434c53;
  margin-top: 0px !important;
}
.vtp-footer .container {
  padding-left: 50px !important;
  padding-right: 50px !important;
}
@media only screen and (max-width: 1024px) {
  .vtp-footer .container {
    padding-left: 4% !important;
    padding-right: 4% !important;
  }
}
.vtp-footer .first-row {
  width: 100%;
  display: inline-block;
  margin-bottom: 70px;
}
@media only screen and (max-width: 1024px) {
  .vtp-footer .first-row {
    margin-bottom: 40px;
  }
}
.vtp-footer .footer-support {
  font-family: Verdana, sans-serif;
  color: #ffffff;
}
.vtp-footer .footer-support li {
  float: left;
  height: 90px;
  width: 16.66%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  min-width: 130px;
  padding: 0 20px;
  position: relative;
  text-align: center;
  vertical-align: top;
  border-right: 1px solid #6d7579;
}
@media only screen and (max-width: 768px) {
  .vtp-footer .footer-support li {
    width: 25%;
    min-width: 25%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-footer .footer-support li {
    width: 33.3333%;
    min-width: 33.3333%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .vtp-footer .footer-support li {
    width: 50%;
    min-width: 50%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 360px) {
  .vtp-footer .footer-support li {
    width: 50%;
    min-width: 50%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 320px) {
  .vtp-footer .footer-support li {
    width: 50%;
    min-width: 50%;
    margin-bottom: 30px;
  }
}
.vtp-footer .footer-support li:last-child {
  border-right: 0px;
}
@media only screen and (max-width: 768px) {
  .vtp-footer .footer-support li:nth-child(4) {
    border-right: 0px;
  }
  .vtp-footer .footer-support li:last-child {
    border-right: 1px solid #6d7579;
  }
}
@media only screen and (max-width: 640px) {
  .vtp-footer .footer-support li:nth-child(3) {
    border-right: 1px solid #6d7579;
  }
  .vtp-footer .footer-support li:nth-child(4) {
    border-right: 0px;
  }
  .vtp-footer .footer-support li:last-child {
    border-right: 1px solid #6d7579;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-footer .footer-support li:nth-child(3) {
    border-right: 0px;
  }
  .vtp-footer .footer-support li:nth-child(4) {
    border-right: 1px solid #6d7579;
  }
  .vtp-footer .footer-support li:last-child {
    border-right: 0px;
  }
}
@media only screen and (max-width: 414px) {
  .vtp-footer .footer-support li:nth-child(2) {
    border-right: 0px;
  }
  .vtp-footer .footer-support li:last-child {
    border-right: 0px;
  }
}
@media only screen and (max-width: 375px) {
  .vtp-footer .footer-support li:nth-child(2) {
    border-right: 0px;
  }
  .vtp-footer .footer-support li:nth-child(3) {
    border-right: 1px solid #6d7579;
  }
  .vtp-footer .footer-support li:nth-child(4) {
    border-right: 0px;
  }
}
@media only screen and (max-width: 360px) {
  .vtp-footer .footer-support li:nth-child(3) {
    border-right: 1px solid #6d7579;
  }
  .vtp-footer .footer-support li:nth-child(4) {
    border-right: 0px;
  }
  .vtp-footer .footer-support li:last-child {
    border-right: 0px;
  }
}
@media only screen and (max-width: 320px) {
  .vtp-footer .footer-support li:nth-child(3) {
    border-right: 1px solid #6d7579;
  }
  .vtp-footer .footer-support li:nth-child(4) {
    border-right: 0px;
  }
  .vtp-footer .footer-support li:last-child {
    border-right: 0px;
  }
}
.vtp-footer .footer-support a.support-nav-text span {
  line-height: 15px;
  margin-top: 10px;
}
.vtp-footer .footer-support a.support-nav-item {
  position: relative;
  display: inline-block;
  padding-left: 60px;
  padding-top: 12px;
  height: 53px;
}
.vtp-footer .footer-support a.support-nav-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 60px;
  height: 60px;
}
.vtp-footer .footer-support a.support-nav-item.login:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -6900px;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-footer .footer-support a.support-nav-item.login:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-footer .footer-support a.support-nav-item.test-drive:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -6970px;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-footer .footer-support a.support-nav-item.test-drive:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-footer .footer-support a.support-nav-item.dealer:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -6620px;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-footer .footer-support a.support-nav-item.dealer:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-footer .footer-support a.support-nav-item.discussion:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -6760px;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-footer .footer-support a.support-nav-item.discussion:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-footer .footer-support a.support-nav-item.feedback:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -6830px;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-footer .footer-support a.support-nav-item.feedback:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-footer .footer-support a.support-nav-item.direct-mail:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -6690px;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-footer .footer-support a.support-nav-item.direct-mail:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-footer .footer-support a.support-nav-text span {
  display: block;
  word-wrap: break-word;
}
.vtp-footer .footer-support a.support-nav-text span:hover {
  color: #d0d3d4;
}
.vtp-footer .top-row {
  margin-bottom: 24px;
  margin-bottom: 2rem;
  padding-bottom: 24px;
  padding-bottom: 2rem;
  border-bottom: 1px solid #363d42;
}
.vtp-footer .top-row .top-row-left {
  float: left;
}
.vtp-footer .top-row .top-row-right {
  float: right;
  margin-top: 5px;
}
.vtp-footer .footer-links {
  max-width: 740px;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  color: #ffffff;
}
.vtp-footer .footer-links a {
  -webkit-transition: color 400ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: color 400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 400ms cubic-bezier(0.19, 1, 0.22, 1);
  padding: 0px 26px 13px 0;
  line-height: 2.5em;
}
.vtp-footer .footer-links a:hover {
  color: #d0d3d4;
}
.vtp-footer .footer-links + .footer-links {
  margin-top: 0.2em;
}
.vtp-footer .footer-links li {
  display: inline;
  white-space: nowrap;
}
.vtp-footer .footer-links i.china-security-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 3px;
  background-image: url(../images/common/vtp-police-icon-cn.png);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 1024px) {
  .vtp-footer .footer-links {
    max-width: 900px;
  }
}
@media only screen and (max-width: 1024px) {
  .vtp-footer .vtp-social-nav {
    float: none;
  }
}
@media only screen and (max-width: 1024px) {
  .vtp-footer .vtp-social-nav li {
    margin-right: 18px;
  }
}
.vtp-footer .sups {
  margin-bottom: 20px;
}

@media print {
  .vtp-footer {
    background-color: transparent;
    min-height: 0;
    padding-bottom: 0;
  }
  .vtp-footer .top-row,
  .vtp-footer .top-row-left,
  .vtp-footer .top-rpw-right {
    display: none;
  }
  .vtp-footer .vtp-section.footer {
    padding-top: 15mm;
  }
}
@media only screen and (max-width: 1070px) {
  .vtp-footer .top-row .top-row-left {
    float: none;
  }
  .vtp-footer .top-row .top-row-right {
    float: none;
    margin-top: 7px;
    margin-top: 0.5833333333rem;
  }
  .vtp-footer .top-row .vtp-social-nav li {
    margin-top: 15px;
  }
}
.vtp-headline {
  position: relative;
}

.vtp-title {
  margin-bottom: 0 !important;
  line-height: 1.2;
}

.vtp-subtitle,
.vtp-subtitle h3 {
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.vtp-subtitle {
  margin: 11px 0;
  margin: 0.9166666667rem 0;
}

.vtp-title-text {
  clear: both;
  padding-top: 50px;
}

.vtp-subtitle-details {
  cursor: pointer;
  display: inline-block;
  font-size: inherit;
  vertical-align: top;
}
.vtp-subtitle-details .vtp-location-name {
  font-size: inherit;
  text-decoration: underline;
}

.flexbox .vtp-headline .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flexbox .vtp-headline .container.uk-disclaimer-fullpage {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flexbox .vtp-headline .container .vtp-title-bar, .flexbox .vtp-headline .container .vtp-service-bar {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .flexbox .vtp-headline .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flexbox .vtp-headline .container .vtp-title-bar {
    width: 100%;
    padding-right: 144px;
    padding-right: 12rem;
  }
}
@media only screen and (max-width: 1280px) {
  .flexbox .vtp-headline .container .vtp-title-bar {
    padding-right: 36px;
    padding-right: 3rem;
  }
}
@media only screen and (min-width: 1280px) {
  .flexbox .vtp-headline .container {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flexbox .vtp-headline .container.uk-disclaimer-fullpage {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 768px) {
  .flexbox.portrait .vtp-headline .container .vtp-title {
    min-height: 42px;
    min-height: 3.5rem;
  }
  .flexbox.portrait .vtp-headline .container .vtp-subtitle {
    display: inline;
    margin-right: -144px;
    margin-right: -12rem;
  }
}
.no-flexbox .vtp-title {
  float: left;
  clear: none;
  width: 74.1015%;
  margin-left: 0;
  margin-right: 2.994%;
  position: relative;
}
.no-flexbox .vtp-title:last-child {
  margin-right: 0;
}
.no-flexbox .vtp-subtitle {
  float: left;
  clear: none;
  width: 99.8%;
  margin-left: 0;
  margin-right: 2.994%;
}
.no-flexbox .vtp-subtitle:last-child {
  margin-right: 0;
}
.no-flexbox .vtp-title-bar .vtp-subtitle {
  float: left;
  clear: none;
  width: 74.1015%;
  margin-left: 0;
  margin-right: 2.994%;
  clear: both;
}
.no-flexbox .vtp-title-bar .vtp-subtitle:last-child {
  margin-right: 0;
}
.no-flexbox .vtp-subtitle-details {
  max-width: 40%;
}
@media only screen and (max-width: 1024px) {
  .no-flexbox .vtp-subtitle-details {
    max-width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .no-flexbox .vtp-subtitle-details {
    max-width: 80%;
  }
}
@media only screen and (max-width: 568px) {
  .no-flexbox .vtp-subtitle-details {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1280px) {
  .no-flexbox .vtp-title,
  .no-flexbox .vtp-title-bar .vtp-subtitle {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .no-flexbox .vtp-title:last-child,
  .no-flexbox .vtp-title-bar .vtp-subtitle:last-child {
    margin-right: 0;
  }
  .no-flexbox .vtp-title-bar .vtp-subtitle {
    clear: both;
  }
}
@media only screen and (max-width: 1024px) {
  .no-flexbox .vtp-title,
  .no-flexbox .vtp-subtitle,
  .no-flexbox .vtp-title-bar .vtp-subtitle {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .no-flexbox .vtp-title:last-child,
  .no-flexbox .vtp-subtitle:last-child,
  .no-flexbox .vtp-title-bar .vtp-subtitle:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .no-flexbox .vtp-headline--bar {
    position: absolute;
    right: 0;
  }
  .no-flexbox .vtp-headline {
    padding-top: 26.4px;
    padding-top: 2.2rem;
  }
  .no-flexbox .vtp-title {
    float: left;
    clear: none;
    width: 58.6824%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .no-flexbox .vtp-title:last-child {
    margin-right: 0;
  }
  .no-flexbox .vtp-container > section.vtp-headline {
    padding-top: 36px;
    padding-top: 3rem;
  }
}

@media only screen and (max-width: 568px) {
  .vtp-title {
    font-size: 18px;
    top: 5px;
  }
  .vtp-subtitle {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-headline {
    padding-top: 26.4px;
    padding-top: 2.2rem;
    padding-bottom: 10px;
  }
  .vtp-container > section.vtp-headline {
    padding-top: 36px;
    padding-top: 3rem;
  }
}
.vtp-teaser-module {
  padding-top: 20px;
}
@media only screen and (min-width: 768px) {
  .vtp-teaser-module {
    padding-top: 0;
  }
}

.vtp-teaser-module-list h3 {
  font-size: 15px;
  font-size: 1.25rem;
  word-wrap: break-word;
  display: inline-block;
  color: #000;
  margin: 6px 0;
  width: 93%;
}
.vtp-teaser-module-list h3 a {
  font-size: inherit;
  line-height: 26px;
}
.vtp-teaser-module-list h3 a:hover h3 a {
  color: #c03;
}
.vtp-teaser-module-list h3 a .vtp-icon-i {
  position: absolute;
  top: 0;
  right: -7%;
}
.vtp-teaser-module-list a {
  -webkit-transition: color 200ms ease;
  -o-transition: color 200ms ease;
  transition: color 200ms ease;
}
.vtp-teaser-module-list img {
  display: block;
}
.vtp-teaser-module-list .vtp-teaser-module-list-item {
  position: relative;
  display: table-cell;
  table-layout: fixed;
}
.vtp-teaser-module-list .vtp-teaser-module-list-item:hover h3 a {
  color: #c03;
}
.vtp-teaser-module-list .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem {
  display: table-cell;
  float: none;
  padding-bottom: 0;
}
.vtp-teaser-module-list .vtp-teaser-module-list-item .image-container {
  vertical-align: top;
  padding-right: 3%;
}
.vtp-teaser-module-list .vtp-teaser-module-list-item .image-container a {
  display: block;
}
.vtp-teaser-module-list .vtp-teaser-module-list-item .vtp-teaser-module-copy {
  vertical-align: bottom;
}
.vtp-teaser-module-list .vtp-btn, .vtp-teaser-module-list .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-teaser-module-list .vtp-btn {
  margin-top: 5px;
}

.vtp-aoz-highlights .vtp-teaser-module-list .vtp-teaser-module-list-item .vtp-teaser-module-copy {
  vertical-align: top;
}

.vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item {
  float: left;
  clear: none;
  width: 99.8%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item:last-child {
  margin-right: 0;
}
.vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem {
  float: left;
  clear: none;
  width: 49.9%;
  margin-left: 0;
  margin-right: 0;
  float: none;
}
.vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem:last-child {
  margin-right: 0;
}

.vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item {
  float: left;
  clear: none;
  width: 48.403%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item:last-child {
  margin-right: 0;
}
.vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem {
  float: left;
  clear: none;
  width: 49.9%;
  margin-left: 0;
  margin-right: 0;
  float: none;
}
.vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem:last-child {
  margin-right: 0;
}
.vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.vtp-teaser-module-copy {
  padding-left: 30px;
}
.vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container {
  padding-right: 0;
}

.vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item {
  float: left;
  clear: none;
  width: 31.2706666667%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item:last-child {
  margin-right: 0;
}
.vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item:last-child {
  padding-bottom: 0;
}
.vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem {
  display: block;
  clear: both;
  float: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  float: none;
}
.vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem:first-child {
  margin-left: auto;
}
.vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem:last-child {
  margin-right: auto;
}
.vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container {
  padding-right: 0;
  padding-bottom: 12px;
  padding-bottom: 1rem;
}

@media only screen and (max-width: 1023px) {
  .vtp-section .vtp-teaser-module-list-item {
    margin-top: 0;
    padding-bottom: 20px;
    position: relative;
  }
  .vtp-section .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-section .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item:last-child {
    margin-right: 0;
  }
  .vtp-section .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-section .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem:first-child {
    margin-left: auto;
  }
  .vtp-section .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem:last-child {
    margin-right: auto;
  }
  .vtp-section .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.vtp-teaser-module-copy {
    padding-left: 0px;
  }
  .vtp-section .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container {
    padding-right: 0;
    padding-bottom: 12px;
    padding-bottom: 1rem;
  }
  .vtp-section .vtp-teaser-module-list-items-3 li:first-child {
    margin-top: 0 !important;
  }
  .vtp-section .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
  }
  .vtp-section .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item:first-child {
    margin-left: auto;
  }
  .vtp-section .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item:last-child {
    margin-right: auto;
  }
  .vtp-section .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem {
    float: left;
    clear: none;
    width: 49.9%;
    margin-left: 0;
    margin-right: 0;
    display: table-cell;
    float: none;
  }
  .vtp-section .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.vtp-teaser-module-copy {
    padding-left: 30px;
  }
  .vtp-section .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem:last-child {
    margin-right: 0;
  }
  .vtp-section .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container {
    padding-right: 0;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-section .vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item,
  .vtp-section .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item,
  .vtp-section .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
  .vtp-section .vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item:first-child,
  .vtp-section .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item:first-child,
  .vtp-section .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item:first-child {
    margin-left: auto;
  }
  .vtp-section .vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item:last-child,
  .vtp-section .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item:last-child,
  .vtp-section .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item:last-child {
    margin-right: auto;
  }
  .vtp-section .vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container,
  .vtp-section .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container,
  .vtp-section .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    padding-bottom: 10px;
    padding-right: 0;
  }
  .vtp-section .vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container:first-child,
  .vtp-section .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container:first-child,
  .vtp-section .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container:first-child {
    margin-left: auto;
  }
  .vtp-section .vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container:last-child,
  .vtp-section .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container:last-child,
  .vtp-section .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container:last-child {
    margin-right: auto;
  }
  .vtp-section .vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.vtp-teaser-module-copy,
  .vtp-section .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.vtp-teaser-module-copy,
  .vtp-section .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.vtp-teaser-module-copy {
    padding-left: 0px;
  }
  .vtp-section .vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item h3 a,
  .vtp-section .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item h3 a,
  .vtp-section .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item h3 a {
    font-size: 15px;
    font-size: 1.25rem;
    line-height: 20px;
  }
  .vtp-section .vtp-teaser-module-list-items-3 li:first-child {
    margin-top: 30px;
  }
}
.lt-ie9 .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container,
.lt-ie9 .vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container {
  width: 51.5%;
}
.lt-ie9 .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container a,
.lt-ie9 .vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container a {
  padding-right: 6%;
}

.vtp-aoz section {
  padding: 0;
}
.vtp-aoz h3 {
  margin-bottom: 8px;
  margin-bottom: 0.6666666667rem;
  position: relative;
}
.vtp-aoz h4,
.vtp-aoz h5 {
  right: 50px;
  right: 4.1666666667rem;
}
.vtp-aoz h5.collapse-toggle,
.vtp-aoz .vtp-aoz-list-item {
  background-color: transparent;
}
.vtp-aoz h5.collapse-toggle {
  padding-top: 15px;
  padding-top: 1.25rem;
  padding-bottom: 15px;
  padding-bottom: 1.25rem;
  padding-left: 0;
  border: 0;
}
.vtp-aoz button.expand {
  display: block;
  margin: 24px auto;
  margin: 2rem auto;
}
.vtp-aoz span.selection {
  right: 72px;
  right: 6rem;
  position: absolute;
  font-family: Verdana, sans-serif;
  font-weight: 400;
}
.vtp-aoz #aoz-information {
  width: 60%;
}
.vtp-aoz #aoz-information > .down.more.vtp-link, .vtp-aoz #aoz-information > .down.more.vtp-breadcrumb-item {
  padding: 25px 0 30px 0;
}
.vtp-aoz #aoz-more {
  padding-top: 25px;
}
@media only screen and (max-width: 768px) {
  .vtp-aoz #aoz-information {
    width: 100%;
  }
  .vtp-aoz #aoz-more {
    padding: 25px 0 25px 0;
  }
}
.vtp-aoz .more {
  display: block;
  margin-top: 6px;
  margin-top: 0.5rem;
  margin-bottom: 6px;
  margin-bottom: 0.5rem;
}
.vtp-aoz .more [data-state=active] {
  display: none;
}
.vtp-aoz .more.active [data-state=active] {
  display: inline-block;
}
.vtp-aoz .more.active [data-state=inactive] {
  display: none;
}
.vtp-aoz .more.mobile,
.vtp-aoz .mobile {
  display: none;
}
.vtp-aoz button.expand {
  display: block;
  margin: 24px auto;
  margin: 2rem auto;
}
.vtp-aoz .content {
  min-height: 8px;
}
.vtp-aoz .spinner {
  margin-top: 5em;
  margin-bottom: 5em;
}
.vtp-aoz .vtp-aoz-items {
  display: block;
}
.vtp-aoz .column-article-details {
  clear: both;
  display: block;
  position: relative;
  top: -0.5em;
}
.vtp-aoz .column-article-details .content {
  width: 52%;
}
.vtp-aoz .vtp-aoz-highlights {
  margin-bottom: 45px;
  margin-bottom: 3.75rem;
}
.vtp-aoz .vtp-aoz-highlights .vtp-teaser-module-list {
  margin-bottom: 45px;
  margin-bottom: 3.75rem;
}
.vtp-aoz .vtp-aoz-highlights .control-group {
  margin-bottom: 0;
}
.vtp-aoz .price {
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  font-size: 12px;
  font-size: 1rem;
}
.vtp-aoz .counter {
  top: 24px;
  top: 2rem;
  color: #a9b2b9;
  position: relative;
  float: right;
}
.vtp-aoz .counter span {
  color: #000;
}
.vtp-aoz .sup {
  margin: 1em 0;
  text-align: right;
}
.vtp-aoz .vtp-aoz-items .vtp-visible, .vtp-aoz .vtp-aoz-items .vtp-tooltip {
  display: block;
}
.vtp-aoz .vtp-aoz-subcat-wrapper {
  border-bottom: 1px solid #cdd0d2;
}
.vtp-aoz .vtp-aoz-subcat-wrapper .content {
  margin-bottom: 15px;
  margin-bottom: 1.25rem;
}
.vtp-aoz .vtp-aoz-subcat-wrapper:last-child {
  border: 0;
}
.vtp-aoz .columns-1-4 {
  position: relative;
}
.vtp-aoz .columns-1-4 > div,
.vtp-aoz .columns-1-4 > li {
  display: block;
  float: left;
  clear: none;
  width: 22.7045%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-aoz .columns-1-4 > div:nth-of-type(n),
.vtp-aoz .columns-1-4 > li:nth-of-type(n) {
  margin-right: 2.994%;
  float: left;
  clear: none;
}
.vtp-aoz .columns-1-4 > div:nth-of-type(4n),
.vtp-aoz .columns-1-4 > li:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.vtp-aoz .columns-1-4 > div:nth-of-type(4n + 1),
.vtp-aoz .columns-1-4 > li:nth-of-type(4n + 1) {
  clear: both;
}
.vtp-aoz .columns-1-4 > div.column-article-price,
.vtp-aoz .columns-1-4 > li.column-article-price {
  text-align: right;
}
@media only screen and (max-width: 568px) {
  .vtp-aoz .columns-1-4 > div,
  .vtp-aoz .columns-1-4 > li {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
  .vtp-aoz .columns-1-4 > div:first-child,
  .vtp-aoz .columns-1-4 > li:first-child {
    margin-left: auto;
  }
  .vtp-aoz .columns-1-4 > div:last-child,
  .vtp-aoz .columns-1-4 > li:last-child {
    margin-right: auto;
  }
}
.vtp-aoz .vtp-aoz-nosub-wrapper {
  padding: 0 10px 0 20px;
  padding: 0 0.8333333333rem 0 1.6666666667rem;
}
.vtp-aoz .vtp-aoz-subcat-items,
.vtp-aoz .vtp-aoz-nosub-wrapper .content {
  padding-left: 15%;
  padding-right: 0;
}
.vtp-aoz .vtp-aoz-nosub-wrapper .content {
  margin-top: 10px;
  margin-bottom: 10px;
}
.vtp-aoz .vtp-aoz-subcat-items label,
.vtp-aoz .vtp-aoz-nosub-wrapper label {
  min-height: 60px;
  min-height: 5rem;
  cursor: hand;
  padding-left: 0;
}
.vtp-aoz .vtp-aoz-subcat-items label .column-article-id,
.vtp-aoz .vtp-aoz-nosub-wrapper label .column-article-id {
  display: none;
  pointer-events: none;
}
.vtp-aoz .vtp-aoz-subcat-items fieldset:nth-child(n+9),
.vtp-aoz .vtp-aoz-nosub-wrapper fieldset:nth-child(n+9) {
  display: none;
}
.vtp-aoz .vtp-aoz-subcat-items .vtp-aoz-items-wrapper,
.vtp-aoz .vtp-aoz-nosub-wrapper .vtp-aoz-items-wrapper {
  display: none;
}
.vtp-aoz .vtp-aoz-subcat-items .vtp-aoz-items-wrapper fieldset,
.vtp-aoz .vtp-aoz-nosub-wrapper .vtp-aoz-items-wrapper fieldset {
  display: block;
}
.vtp-aoz .column-article-id,
.vtp-aoz .column-article-price {
  padding-top: 15px;
}
.vtp-aoz .column-article-id {
  text-align: center;
  font-weight: 400;
}
.vtp-aoz .column-article-media {
  text-align: center;
}
.vtp-aoz .vtp-aoz-subcat-item {
  background-color: #e7e9ea;
  margin-bottom: 2px;
  padding: 0 10px 0 50px;
}
.vtp-aoz .vtp-aoz-subcat-item .content {
  padding-left: 0;
  margin-bottom: 30px;
  margin-bottom: 2.5rem;
}
.vtp-aoz .vtp-aoz-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: none;
  border-bottom: 1px solid #D7DADB;
}
.vtp-aoz .vtp-aoz-list li.vtp-aoz-list-header {
  font-weight: 700;
}
.vtp-aoz .vtp-aoz-list li:last-child {
  border-bottom: none;
}
.vtp-aoz .vtp-aoz-list li p {
  margin: 14px 0 16px;
}
.vtp-aoz .vtp-aoz-list li p.vtp-aoz-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.vtp-aoz .vtp-aoz-list li p.vtp-aoz-item-price {
  width: 80px;
  text-align: right;
}
.ie9 .vtp-aoz .vtp-aoz-list li {
  clear: both;
}
.ie9 .vtp-aoz .vtp-aoz-list li p.vtp-aoz-item {
  float: left;
  width: 85%;
}
.ie9 .vtp-aoz .vtp-aoz-list li p.vtp-aoz-item-price {
  width: 15%;
  float: right;
}
@media only screen and (max-width: 1024px) {
  .vtp-aoz .vtp-aoz-highlights {
    margin-bottom: 80px;
    margin-bottom: 6.6666666667rem;
  }
  .vtp-aoz .vtp-teaser-module-list-subitem {
    padding-right: 0 !important;
  }
}
@media only screen and (max-width: 940px) {
  .vtp-aoz .vtp-aoz-subcat-items {
    padding-left: 0;
  }
}
@media only screen and (max-width: 800px) {
  .vtp-aoz .columns-1-4 > div,
  .vtp-aoz .columns-1-4 > li {
    float: left;
    clear: none;
    width: 31.2706666667%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-aoz .columns-1-4 > div:nth-of-type(n),
  .vtp-aoz .columns-1-4 > li:nth-of-type(n) {
    margin-right: 2.994%;
    float: left;
    clear: none;
  }
  .vtp-aoz .columns-1-4 > div:nth-of-type(4n),
  .vtp-aoz .columns-1-4 > li:nth-of-type(4n) {
    margin-right: 0;
    float: right;
  }
  .vtp-aoz .columns-1-4 > div:nth-of-type(4n + 1),
  .vtp-aoz .columns-1-4 > li:nth-of-type(4n + 1) {
    clear: both;
  }
  .vtp-aoz .columns-1-4 .column-article-id {
    display: none;
  }
  .vtp-aoz .vtp-aoz-subcat-items label .column-article-id {
    display: block;
    padding-top: 0;
    text-align: left;
  }
  .vtp-aoz .more {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-aoz section {
    padding: 4%;
  }
  .vtp-aoz label {
    margin-bottom: 0;
  }
  .vtp-aoz span.selection {
    position: relative;
    display: block;
    top: 5px;
    left: auto;
    right: auto;
  }
  .vtp-aoz .hide-mobile {
    display: none !important;
  }
  .vtp-aoz .vtp-aoz-highlights {
    padding: 4%;
  }
  .vtp-aoz .more.mobile,
  .vtp-aoz .mobile {
    display: block;
  }
  .vtp-aoz .vtp-btn.mobile, .vtp-aoz .vtp-compare-bar.compare-enabled .action-holder .mobile.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-aoz .mobile.vtp-btn {
    display: inline-block;
    margin: 0 4% 3em 4%;
  }
  .vtp-aoz .columns-1-4 {
    overflow: hidden;
  }
  .vtp-aoz .columns-1-4 > div,
  .vtp-aoz .columns-1-4 > li {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-aoz .columns-1-4 > div:nth-of-type(n),
  .vtp-aoz .columns-1-4 > li:nth-of-type(n) {
    margin-right: 2.994%;
    float: left;
    clear: none;
  }
  .vtp-aoz .columns-1-4 > div:nth-of-type(2n),
  .vtp-aoz .columns-1-4 > li:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .vtp-aoz .columns-1-4 > div:nth-of-type(2n + 1),
  .vtp-aoz .columns-1-4 > li:nth-of-type(2n + 1) {
    clear: both;
  }
  .vtp-aoz .columns-1-4 .column-article-option {
    width: 100%;
  }
  .vtp-aoz .column-article-details {
    margin-top: 10px;
    margin-top: 0.8333333333rem;
    top: auto;
  }
  .vtp-aoz .column-article-details .content {
    width: 100%;
  }
  .vtp-aoz .column-article-price {
    padding-top: 0;
  }
  .vtp-aoz .vtp-aoz-items {
    display: none;
  }
  .vtp-aoz .vtp-aoz-subcat-item {
    padding-left: 10px;
  }
  .vtp-aoz .column-article-price {
    bottom: 6px;
    bottom: 0.5rem;
    right: 0;
    position: absolute;
  }
  .vtp-aoz .column-article-details,
  .vtp-aoz .column-article-details .content {
    margin-top: 0;
    padding-top: 0;
  }
  .vtp-aoz .column-article-details img {
    margin-bottom: 12px;
    margin-bottom: 1rem;
    width: 50%;
  }
  .vtp-aoz .price {
    font-size: 12px;
  }
  .vtp-aoz .vtp-aoz-subcat-items label {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-aoz .vtp-aoz-subcat-items label {
    padding-left: 0;
  }
  .vtp-aoz .counter {
    margin: 12px auto;
    margin: 1rem auto;
    float: none;
    top: 0;
    text-align: center;
  }
}

.vtp-modal #vtp-aoz-panel h5.collapse-toggle {
  background-color: transparent;
  font-family: Verdana, sans-serif;
  font-weight: 700;
}

.vtp-modals .vtp-modal.vtp-aoz-items {
  padding-top: 0;
  padding-bottom: 0;
}

.vtp-modals .vtp-modal.vtp-aoz-items .vtp-section {
  padding-left: 0;
  padding-right: 0;
}

@media print {
  #vtp-aoz-panel {
    display: none;
  }
  .vtp-section.vtp-aoz {
    padding-bottom: 0;
  }
  .vtp-section.vtp-aoz .vtp-teaser-module-list {
    margin-bottom: 12px;
    margin-bottom: 1rem;
  }
  .vtp-section.vtp-aoz .container {
    padding-top: 36px;
    padding-top: 3rem;
    border-top: 1px solid #828282;
  }
  .vtp-aoz .vtp-aoz-highlights {
    margin-bottom: 48px;
    margin-bottom: 4rem;
  }
}
/** 2-1-1 Grid for filters **/
.vtp-cmp-group {
  *zoom: 1;
}
.vtp-cmp-group:before, .vtp-cmp-group:after {
  content: "";
  display: table;
}
.vtp-cmp-group:after {
  clear: both;
}
@media only screen and (max-width: 568px) {
  .vtp-cmp-group legend {
    margin-top: 2rem;
  }
  .vtp-cmp-group fieldset {
    border-top: solid 1px #e5e5e5;
  }
  .vtp-cmp-group fieldset:last-child {
    border-bottom: solid 1px #e5e5e5;
  }
}

@media only screen and (max-width: 568px) {
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights {
    margin-bottom: 32px;
  }
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights [class*=module-highlights-item] {
    margin-bottom: 0 !important;
  }
}
.vtp-highlights-cmp.vtp-cmp.vtp-highlights h3 {
  margin-bottom: 16px;
  text-align: left;
}
@media only screen and (max-width: 568px) {
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights h3 {
    margin-bottom: 32px;
  }
}
.vtp-highlights-cmp.vtp-cmp.vtp-highlights.seperated .container:before {
  border-top: 1px solid #d7dadb;
  padding: 4rem 0 0 0;
  top: 0;
}
@media print {
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights.seperated .container:before {
    border: none;
    padding-top: 0;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights.seperated .container:before {
    padding: 3rem 0 0 0;
  }
}
.vtp-highlights-cmp.vtp-cmp.vtp-highlights dl:before {
  background-image: none;
}
.vtp-highlights-cmp.vtp-cmp.vtp-highlights dl a dt em {
  color: #999;
  margin-top: 2px;
}
.vtp-highlights-cmp.vtp-cmp.vtp-highlights dl a dt em, .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl a dt span, .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl a dt div {
  display: block;
}
.vtp-highlights-cmp.vtp-cmp.vtp-highlights dl a dt .image {
  display: block;
  height: 45px;
  margin: 0 auto 8px auto;
  width: 45px;
}
.vtp-highlights-cmp.vtp-cmp.vtp-highlights dl a dt .title:after {
  display: none;
}
@media only screen and (max-width: 568px) {
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl a dt {
    overflow: visible;
    width: 100%;
    line-height: 18px;
  }
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl a dt em, .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl a dt span, .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl a dt div {
    display: inline-block;
  }
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl a dt span, .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl a dt div {
    float: left;
  }
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl a dt .image {
    display: inline-block;
    margin-right: 12px;
    width: 32px;
  }
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl a dt .title {
    top: 4px;
    width: 65%;
  }
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl a dt .title:after {
    display: inline-block;
    float: left;
    left: auto;
    margin: -1px 0 0 4px;
    right: auto;
    top: auto;
  }
}
.vtp-highlights-cmp.vtp-cmp.vtp-highlights dl a.has-info:after {
  right: -8px;
  top: -12px;
}
@media only screen and (max-width: 940px) {
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl a.has-info:after {
    right: -20px;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl a.has-info:after {
    right: 16px;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl a.has-info:after {
    display: none;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl.module-highlights-item-cmp-seven a dt span img {
    margin-left: 4px;
    width: 20px;
  }
}
@media print {
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights {
    padding-top: 0 !important;
  }
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl[class*=module-highlights-item] {
    display: block;
    float: left;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    width: 25%;
  }
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl[class*=module-highlights-item]:nth-of-type(3n+1) {
    padding-left: 8px;
  }
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl dt {
    line-height: 18px;
  }
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl dt em {
    display: inline-block;
    color: #999 !important;
    font-size: 10px !important;
  }
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl dt span.image {
    float: left;
    margin-right: 12px;
    width: 32px;
  }
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights dl dt span.title {
    float: left;
    padding-left: 8px;
    width: 65%;
  }
  .vtp-highlights-cmp.vtp-cmp.vtp-highlights .container {
    border: none;
  }
}

.vtp-codes .vtp-codes-audi-code {
  font-size: 10pt;
  text-align: right;
}
.vtp-codes .vtp-codes-audi-code .vtp-codes-audi-code-headline {
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
}
.vtp-codes .vtp-codes-qr-code {
  margin-left: -22px;
}
.vtp-codes .vtp-codes-qr-code img {
  width: 130px;
  height: auto;
}

.vtp-page-detail .vtp-codes-container {
  display: none;
}
@media print {
  .vtp-page-detail .vtp-codes-container {
    display: block;
    position: absolute;
    top: 20px;
    right: 4%;
    width: auto;
    height: auto;
  }
}

@media only screen and (min-width: 1280px) {
  .vtp-anchor-nav {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.vtp-anchor-nav .back-to-top {
  float: right;
  position: absolute;
  right: 4%;
  top: 0;
  display: none;
  padding-right: 40px;
}
@media only screen and (max-width: 1023px) {
  .vtp-anchor-nav .back-to-top {
    padding-right: 20px;
  }
}
.lt-ie9 .vtp-anchor-nav .back-to-top, .vtp-anchor-nav.fixedsticky-on .back-to-top, .vtp-anchor-nav.sticky-active .back-to-top {
  display: block;
  padding-right: 0;
}
@media only screen and (max-width: 1023px) {
  .lt-ie9 .vtp-anchor-nav .back-to-top, .vtp-anchor-nav.fixedsticky-on .back-to-top, .vtp-anchor-nav.sticky-active .back-to-top {
    padding-right: 0;
  }
}
.vtp-anchor-nav.fixedsticky-on, .vtp-anchor-nav.sticky-active {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.lt-ie9 .vtp-anchor-nav.fixedsticky-on, .ie9 .vtp-anchor-nav.fixedsticky-on, .lt-ie9 .vtp-anchor-nav.sticky-active, .ie9 .vtp-anchor-nav.sticky-active {
  min-width: 1100px;
}
@media print {
  .vtp-anchor-nav {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .vtp-anchor-nav li {
    padding-right: 1.7%;
    padding-left: 1.7%;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-anchor-nav {
    display: none;
  }
  .vtp-anchor-nav + .fixedsticky-dummy {
    display: none;
  }
}
.flexbox .vtp-anchor-nav ul[data-items] li.vtp-resultcount {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin-right: 0;
}
.flexbox .vtp-anchor-nav ul[data-items] li.vtp-resultcount li a > span {
  white-space: nowrap;
}
@media only screen and (min-width: 767px) {
  .flexbox .vtp-anchor-nav ul[data-items] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 0;
    padding-left: 0;
    padding-right: 0;
    padding-right: 0;
  }
  .flexbox .vtp-anchor-nav ul[data-items] > :not(:last-child) {
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    margin-left: -1px;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .flexbox .vtp-anchor-nav ul[data-items] li.vtp-resultcount {
    position: relative;
    right: auto;
  }
  .flexbox .vtp-anchor-nav ul[data-items] li.vtp-filter-bar-provinces {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 1024px) {
  .flexbox .vtp-anchor-nav ul[data-items] li.vtp-filter-bar-provinces {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}
@media only screen and (max-width: 767px) {
  .flexbox .vtp-anchor-nav li.vtp-filter-bar-provinces {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}
@media only screen and (max-width: 767px) {
  .flexbox .vtp-anchor-nav ul[data-items] li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flexbox .vtp-anchor-nav ul[data-items] li a span {
    width: auto;
  }
  .flexbox .vtp-anchor-nav ul[data-items] li a span:first-child {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-right: 12px;
    padding-right: 1rem;
    white-space: nowrap;
  }
}

.vtp-similar-cars .vtp-carousel-dots {
  bottom: -5px;
}
.vtp-similar-cars .swiper-pagination-bullet,
.vtp-similar-cars .swiper-pagination-switch {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #000;
  opacity: 0.5;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.vtp-similar-cars .swiper-pagination-bullet-active,
.vtp-similar-cars .swiper-active-switch {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
@media only screen and (max-width: 940px) {
  .vtp-similar-cars .similar-car-item > div:first-child,
  .vtp-similar-cars .car-teaser > div:first-child {
    float: left;
    clear: none;
    width: 31.2706666667%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-similar-cars .similar-car-item > div:first-child:last-child,
  .vtp-similar-cars .car-teaser > div:first-child:last-child {
    margin-right: 0;
  }
  .vtp-similar-cars .similar-car-item > div:last-child,
  .vtp-similar-cars .car-teaser > div:last-child {
    float: left;
    clear: none;
    width: 65.5353333333%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-similar-cars .similar-car-item > div:last-child:last-child,
  .vtp-similar-cars .car-teaser > div:last-child:last-child {
    margin-right: 0;
  }
}
.vtp-similar-cars .similar-car-item .dealer-link,
.vtp-similar-cars .car-teaser .dealer-link {
  font-family: Verdana, sans-serif;
}
@media only screen and (max-width: 940px) {
  .vtp-similar-cars .similar-car-item .dealer-link,
  .vtp-similar-cars .car-teaser .dealer-link {
    padding-left: 0px;
  }
  .vtp-market-jp .vtp-similar-cars .similar-car-item .dealer-link,
  .vtp-market-jp .vtp-similar-cars .car-teaser .dealer-link {
    display: block;
    margin-top: 5px;
  }
  .vtp-similar-cars .similar-car-item .dealer-link:before,
  .vtp-similar-cars .car-teaser .dealer-link:before {
    content: "";
  }
}
.vtp-similar-cars .similar-car-item .dealer-link .similar-cars-details,
.vtp-similar-cars .car-teaser .dealer-link .similar-cars-details {
  position: relative;
}
@media print {
  .vtp-similar-cars {
    display: none;
  }
}

.vtp-dealer-info-no-map + .vtp-similar-cars {
  padding-top: 48px;
  padding-top: 4rem;
  margin-top: 24px;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .vtp-dealer-info-no-map + .vtp-similar-cars {
    padding-top: 0;
    padding-top: 0;
    margin-top: 0;
    margin-top: 0;
    border-top: 0;
  }
}

.vtp-similar-cars-list > article:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.vtp-similar-searches .vtp-similar-searches-list ul li {
  margin-bottom: 12px;
  margin-bottom: 1rem;
}
@media print {
  .vtp-similar-searches {
    display: none;
  }
}

.vtp-suggested-cars-nav {
  display: block;
}
@media only screen and (max-width: 767px) {
  .vtp-suggested-cars-nav {
    display: none;
  }
}
.vtp-suggested-cars-nav ul {
  margin-bottom: 43.2px;
  margin-bottom: 3.6rem;
}
.vtp-suggested-cars-nav ul li {
  border-top: 1px solid #d7dadb;
  border-left: 1px solid #d7dadb;
  border-bottom: 1px solid #d7dadb;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  -webkit-flex-basis: 215px;
  -ms-flex-preferred-size: 215px;
  flex-basis: 215px;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.vtp-suggested-cars-nav ul li:last-child {
  border-right: 1px solid #d7dadb;
}
.vtp-suggested-cars-nav ul li.active {
  background: #d7dadb;
}
.vtp-suggested-cars-nav ul button {
  display: inline-block;
  padding: 10px 15px;
}
.vtp-suggested-cars-nav ul button:hover {
  color: #c03;
}

.vtp-suggested-cars-carousel {
  padding: 0 10%;
  position: relative;
}
.vtp-suggested-cars-carousel .btn-next,
.vtp-suggested-cars-carousel .btn-prev {
  z-index: 2;
  position: absolute;
  top: 85px;
  width: 12px;
  height: 16px;
}
.vtp-suggested-cars-carousel .btn-next:after,
.vtp-suggested-cars-carousel .btn-prev:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1013px;
  background-repeat: no-repeat;
  width: 12px;
  height: 16px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-suggested-cars-carousel .btn-next:after,
  .vtp-suggested-cars-carousel .btn-prev:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-suggested-cars-carousel .btn-next:hover:after,
.vtp-suggested-cars-carousel .btn-prev:hover:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1039px;
  background-repeat: no-repeat;
  width: 12px;
  height: 16px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-suggested-cars-carousel .btn-next:hover:after,
  .vtp-suggested-cars-carousel .btn-prev:hover:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-suggested-cars-carousel .btn-next.inactive:after,
.vtp-suggested-cars-carousel .btn-prev.inactive:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1039px;
  background-repeat: no-repeat;
  width: 12px;
  height: 16px;
  cursor: default;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-suggested-cars-carousel .btn-next.inactive:after,
  .vtp-suggested-cars-carousel .btn-prev.inactive:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-suggested-cars-carousel .btn-next {
  right: -25px;
}
.vtp-suggested-cars-carousel .btn-prev {
  left: -25px;
}
@media only screen and (max-width: 568px) {
  .vtp-suggested-cars-carousel {
    padding: 0 0;
  }
  .vtp-suggested-cars-carousel .btn-next {
    right: 0px;
  }
  .vtp-suggested-cars-carousel .btn-prev {
    left: 0px;
  }
}

.vtp-carousel-wrapper {
  position: relative;
  display: none;
}
.vtp-carousel-wrapper h1 {
  display: none;
}
@media only screen and (max-width: 767px) {
  .vtp-carousel-wrapper {
    display: block;
  }
  .vtp-carousel-wrapper h1 {
    display: block;
    margin-top: 7px;
    text-align: center;
    font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  }
}
.vtp-carousel-wrapper.active {
  display: block;
}

.vtp-suggested-cars-item {
  display: none;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .vtp-suggested-cars-item {
    display: block;
  }
}
.vtp-suggested-cars-item.active {
  display: block;
}
.vtp-suggested-cars-item .car-teaser, .vtp-suggested-cars-item .similar-car-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
}
.vtp-suggested-cars-item .btn-next,
.vtp-suggested-cars-item .btn-prev {
  display: none !important;
}

/**
 * Service-Bar section (without vtp-headline module)
 */
section.vtp-service-bar nav {
  float: right;
}

/**
 * Service-Bar (with possible vtp-headline module)
 */
.vtp-service-bar {
  margin-bottom: 10px;
  margin-bottom: 0.8333333333rem;
  padding-top: 0;
  padding-bottom: 0;
  /* Hamburger menu */
}
.vtp-service-bar nav {
  z-index: 2100;
}
@media only screen and (max-width: 568px) {
  .vtp-service-bar nav {
    margin-right: auto;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-service-bar {
    width: 100%;
    display: block;
    text-align: right;
  }
  .vtp-service-bar nav {
    margin-right: 0;
  }
  .vtp-service-bar > .vtp-service-bar-items {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .vtp-service-bar > .vtp-service-bar-items .vtp-service-bar-item > a:before {
    top: 3px;
  }
  .vtp-service-bar > .vtp-service-bar-items .vtp-service-bar-item.callout .callout {
    vertical-align: super;
  }
}
@media only screen and (min-width: 767px) {
  .vtp-service-bar {
    /* Options next to headlines */
  }
  .vtp-page-compare .vtp-service-bar, .vtp-page-saved-search .vtp-service-bar, .vtp-page-favorites .vtp-service-bar, .vtp-page-online-reservation .vtp-service-bar {
    margin-top: -29px;
    margin-top: -2.4166666667rem;
  }
}
.vtp-service-bar .hamburger {
  display: none;
}

/* Service Bar Items */
.vtp-service-bar-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 0;
  padding-top: 0;
}
.vtp-service-bar-items.active {
  display: block;
}

.vtp-service-bar-item {
  margin-right: 15px;
  margin-right: 1.25rem;
  font-size: 12px;
  font-size: 1rem;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  font-family: Verdana, sans-serif;
}
.vtp-service-bar-item:last-child {
  margin-right: 0;
  margin-right: 0;
}
.vtp-service-bar-item > .vtp-service-bar-btn {
  display: block;
  line-height: 40px;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  color: #000;
}
.vtp-service-bar-item > .vtp-service-bar-btn:before {
  content: "";
  position: relative;
  display: inline-block;
}
.vtp-service-bar-item > .vtp-service-bar-btn:hover {
  color: #c03;
}
.vtp-service-bar-item > .vtp-service-bar-btn .callout {
  display: inline-block;
  margin-right: 2px;
}
.vtp-service-bar-item > .vtp-service-bar-btn .slabel-active {
  display: none;
}
.vtp-service-bar-item.selected > .vtp-service-bar-btn, .vtp-service-bar-item.active > .vtp-service-bar-btn {
  color: #c03;
  cursor: default;
}
.vtp-service-bar-item.selected > .vtp-service-bar-btn[data-close-on-click-handler=true], .vtp-service-bar-item.active > .vtp-service-bar-btn[data-close-on-click-handler=true] {
  cursor: pointer;
}
.vtp-service-bar-item.selected > .vtp-service-bar-btn .slabel-active + .slabel, .vtp-service-bar-item.active > .vtp-service-bar-btn .slabel-active + .slabel {
  display: none;
}
.vtp-service-bar-item.selected > .vtp-service-bar-btn:after {
  display: none;
}
.vtp-service-bar-item.audi-code-enter, .vtp-service-bar-item.audi-code {
  position: relative;
}
.vtp-service-bar-item.audi-code-enter > .vtp-service-bar-btn:before, .vtp-service-bar-item.audi-code > .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1788px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  top: 4px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.audi-code-enter > .vtp-service-bar-btn:before, .vtp-service-bar-item.audi-code > .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.audi-code-enter > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.audi-code-enter > .vtp-service-bar-btn:hover:before, .vtp-service-bar-item.audi-code > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.audi-code > .vtp-service-bar-btn:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1822px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.audi-code-enter > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.audi-code-enter > .vtp-service-bar-btn:hover:before, .vtp-service-bar-item.audi-code > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.audi-code > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.discussion {
  position: relative;
}
.vtp-service-bar-item.discussion > .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1627px;
  background-repeat: no-repeat;
  width: 21px;
  height: 21px;
  top: 8px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.discussion > .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.discussion > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.discussion > .vtp-service-bar-btn:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1658px;
  background-repeat: no-repeat;
  width: 21px;
  height: 21px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.discussion > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.discussion > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.discussion.selected > a:before, .vtp-service-bar-item.discussion.active > a:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1658px;
  background-repeat: no-repeat;
  width: 21px;
  height: 21px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.discussion.selected > a:before, .vtp-service-bar-item.discussion.active > a:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.favorite > .vtp-service-bar-btn.forbidden:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1117px;
  background-repeat: no-repeat;
  width: 18px;
  height: 16px;
  top: 3px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.favorite > .vtp-service-bar-btn.forbidden:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.favorite > .vtp-service-bar-btn.forbidden:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1117px;
  background-repeat: no-repeat;
  width: 18px;
  height: 16px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.favorite > .vtp-service-bar-btn.forbidden:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.favorite > .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1117px;
  background-repeat: no-repeat;
  width: 18px;
  height: 16px;
  top: 3px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.favorite > .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.favorite > .vtp-service-bar-btn:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1169px;
  background-repeat: no-repeat;
  width: 18px;
  height: 16px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.favorite > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.favorite.selected > .vtp-service-bar-btn.forbidden:before, .vtp-service-bar-item.favorite.active > .vtp-service-bar-btn.forbidden:before, .vtp-service-bar-item.favorite.favorited .vtp-service-bar-btn.forbidden:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1117px;
  background-repeat: no-repeat;
  width: 18px;
  height: 16px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.favorite.selected > .vtp-service-bar-btn.forbidden:before, .vtp-service-bar-item.favorite.active > .vtp-service-bar-btn.forbidden:before, .vtp-service-bar-item.favorite.favorited .vtp-service-bar-btn.forbidden:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.favorite.selected > .vtp-service-bar-btn:before, .vtp-service-bar-item.favorite.active > .vtp-service-bar-btn:before, .vtp-service-bar-item.favorite.favorited .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1143px;
  background-repeat: no-repeat;
  width: 18px;
  height: 16px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.favorite.selected > .vtp-service-bar-btn:before, .vtp-service-bar-item.favorite.active > .vtp-service-bar-btn:before, .vtp-service-bar-item.favorite.favorited .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.favorites {
  position: relative;
}
.vtp-service-bar-item.favorites > .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1958px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  top: 7px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.favorites > .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.favorites > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.favorites > .vtp-service-bar-btn:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1992px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.favorites > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.favorites > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.favorites.selected > .vtp-service-bar-btn:before, .vtp-service-bar-item.favorites.active .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1992px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.favorites.selected > .vtp-service-bar-btn:before, .vtp-service-bar-item.favorites.active .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.online-reservation {
  position: relative;
}
.vtp-service-bar-item.online-reservation.disabled {
  cursor: default;
}
.vtp-service-bar-item.online-reservation.disabled:hover {
  color: #000;
  cursor: auto;
  background-image: none;
}
.vtp-service-bar-item.online-reservation > .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2298px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  top: 7px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.online-reservation > .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.online-reservation > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.online-reservation > .vtp-service-bar-btn:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2264px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.online-reservation > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.online-reservation > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.online-reservation.selected > .vtp-service-bar-btn:before, .vtp-service-bar-item.online-reservation.active .vtp-service-bar-btn:before, .vtp-service-bar-item.online-reservation.hover .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2264px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.online-reservation.selected > .vtp-service-bar-btn:before, .vtp-service-bar-item.online-reservation.active .vtp-service-bar-btn:before, .vtp-service-bar-item.online-reservation.hover .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.online-reservation.disabled {
  position: relative;
}
.vtp-service-bar-item.online-reservation.disabled > .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2298px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  top: 7px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.online-reservation.disabled > .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.online-reservation.disabled > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.online-reservation.disabled > .vtp-service-bar-btn:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2264px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.online-reservation.disabled > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.online-reservation.disabled > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.login {
  position: relative;
}
.vtp-service-bar-item.login > .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2060px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  top: 7px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.login > .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.login > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.login > .vtp-service-bar-btn:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2094px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.login > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.login > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.login > .vtp-service-bar-btn.selected > .vtp-service-bar-btn:before, .vtp-service-bar-item.login > .vtp-service-bar-btn.active a.vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2094px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.login > .vtp-service-bar-btn.selected > .vtp-service-bar-btn:before, .vtp-service-bar-item.login > .vtp-service-bar-btn.active a.vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.login.logout > .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2128px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  top: 4px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.login.logout > .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.login.logout > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.login.logout > .vtp-service-bar-btn:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2162px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.login.logout > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.login.logout > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.login.logout > .vtp-service-bar-btn.selected > .vtp-service-bar-btn:before, .vtp-service-bar-item.login.logout > .vtp-service-bar-btn.active .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2162px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.login.logout > .vtp-service-bar-btn.selected > .vtp-service-bar-btn:before, .vtp-service-bar-item.login.logout > .vtp-service-bar-btn.active .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.user {
  position: relative;
}
.vtp-service-bar-item.user > .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2672px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  top: 7px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.user > .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.user > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.user > .vtp-service-bar-btn:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2638px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.user > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.user > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.user.selected > .vtp-service-bar-btn:before, .vtp-service-bar-item.user.active .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2638px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.user.selected > .vtp-service-bar-btn:before, .vtp-service-bar-item.user.active .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.download {
  position: relative;
}
.vtp-service-bar-item.download > .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1890px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  top: 7px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.download > .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.download > .vtp-service-bar-btn:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1924px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.download > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.share {
  position: relative;
}
.vtp-service-bar-item.share > .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1279px;
  background-repeat: no-repeat;
  width: 17px;
  height: 18px;
  top: 5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.share > .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.share > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.share > .vtp-service-bar-btn:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1307px;
  background-repeat: no-repeat;
  width: 17px;
  height: 18px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.share > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.share > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.newsearch > .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2230px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  top: 5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.newsearch > .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.newsearch > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.newsearch > .vtp-service-bar-btn:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2196px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.newsearch > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.newsearch > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.newsearch > .vtp-service-bar-btn:after {
  display: none;
}
.vtp-service-bar-item.search {
  position: relative;
}
.vtp-service-bar-item.search > .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2502px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  top: 7px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.search > .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.search > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.search > .vtp-service-bar-btn:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2536px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.search > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.search > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.search.selected > .vtp-service-bar-btn:before, .vtp-service-bar-item.search.active > .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2536px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.search.selected > .vtp-service-bar-btn:before, .vtp-service-bar-item.search.active > .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.plus-black {
  position: relative;
}
.vtp-service-bar-item.plus-black > .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -766px;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  top: 4px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.plus-black > .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.plus-black > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.plus-black > .vtp-service-bar-btn:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -790px;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.plus-black > .vtp-service-bar-btn.active:before, .vtp-service-bar-item.plus-black > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-item.plus-black.selected > .vtp-service-bar-btn:before, .vtp-service-bar-item.plus-black.active > .vtp-service-bar-btn:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -790px;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-item.plus-black.selected > .vtp-service-bar-btn:before, .vtp-service-bar-item.plus-black.active > .vtp-service-bar-btn:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

/* Breakpoint specific */
@media only screen and (max-width: 767px) {
  .vtp-service-bar-item > a .callout {
    margin-left: 0px;
    margin-right: 0px;
  }
  .vtp-service-bar-item > a .slabel {
    display: none;
  }
  .vtp-service-bar-item.favorites > a:before {
    margin-right: 0 !important;
  }
}
@media only screen and (max-width: 940px) {
  .vtp-service-bar-item {
    margin-right: 1.7rem;
  }
  .vtp-service-bar-item > a .slabel-active {
    display: none !important;
  }
  .vtp-service-bar-item > .vtp-service-bar-btn .slabel {
    display: none;
  }
  .vtp-service-bar-items .vtp-service-bar-item > a:before {
    top: 3px;
  }
  .vtp-service-bar-items .vtp-service-bar-item.login {
    margin-right: 0;
  }
}
@media only screen and (min-width: 940px) {
  .vtp-service-bar-item {
    vertical-align: top;
  }
  .vtp-service-bar-item > .vtp-service-bar-btn {
    text-align: center;
  }
  .vtp-service-bar-item > .vtp-service-bar-btn .slabel,
  .vtp-service-bar-item > .vtp-service-bar-btn .slabel-active {
    display: block;
    max-width: 100px;
    line-height: 1.2;
    text-align: center;
  }
  .vtp-service-bar-item > .vtp-service-bar-btn .slabel-active {
    display: none;
  }
  .vtp-service-bar-item > .vtp-service-bar-btn .callout {
    display: inline-block;
    margin-left: 4px;
    line-height: 1.2;
  }
  .vtp-service-bar-item > a:before {
    margin-right: 0;
  }
  .vtp-service-bar-item.active > button .slabel-active {
    display: block;
  }
  .vtp-service-bar-item.active > button .slabel-active + .slabel {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .vtp-service-bar-item {
    vertical-align: bottom;
  }
  .vtp-service-bar-item > .vtp-service-bar-btn .callout {
    display: inline-block;
    margin-left: 4px;
  }
  .vtp-service-bar-item > .vtp-service-bar-btn:before {
    margin-right: 0;
    top: 4px;
  }
}
@media only screen and (min-width: 1280px) {
  .vtp-service-bar-item > a .slabel {
    display: inline;
  }
  .vtp-car-info-wrapper .vtp-service-bar-item > a .slabel {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-page-filter nav.vtp-service-bar {
    margin-right: 0;
    margin-left: auto;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-page-filter nav.vtp-service-bar {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
}

/**
 * Styles for mobile touch devices
 */
@media only screen and (max-width: 767px) {
  .touch .vtp-service-bar .vtp-service-bar-item > .vtp-service-bar-btn:hover {
    color: #000;
  }
  .touch .vtp-service-bar .vtp-service-bar-item.selected > .vtp-service-bar-btn:hover,
  .touch .vtp-service-bar .vtp-service-bar-item.active > .vtp-service-bar-btn:hover {
    color: #c03;
  }
  .touch .vtp-service-bar .vtp-service-bar-item.audi-code-enter > .vtp-service-bar-btn:hover:before,
  .touch .vtp-service-bar .vtp-service-bar-item.audi-code > .vtp-service-bar-btn:hover:before {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -1788px;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .touch .vtp-service-bar .vtp-service-bar-item.audi-code-enter > .vtp-service-bar-btn:hover:before,
  .touch .vtp-service-bar .vtp-service-bar-item.audi-code > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .touch .vtp-service-bar .vtp-service-bar-item.audi-code-enter > .vtp-service-bar-btn.active:before,
  .touch .vtp-service-bar .vtp-service-bar-item.audi-code > .vtp-service-bar-btn.active:before {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -1822px;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .touch .vtp-service-bar .vtp-service-bar-item.audi-code-enter > .vtp-service-bar-btn.active:before,
  .touch .vtp-service-bar .vtp-service-bar-item.audi-code > .vtp-service-bar-btn.active:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .touch .vtp-service-bar .vtp-service-bar-item.favorite > .vtp-service-bar-btn:hover:before {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -1117px;
    background-repeat: no-repeat;
    width: 18px;
    height: 16px;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .touch .vtp-service-bar .vtp-service-bar-item.favorite > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .touch .vtp-service-bar .vtp-service-bar-item.favorite.selected > .vtp-service-bar-btn:hover:before,
  .touch .vtp-service-bar .vtp-service-bar-item.favorite.active > .vtp-service-bar-btn:hover:before,
  .touch .vtp-service-bar .vtp-service-bar-item.favorite.favorited > .vtp-service-bar-btn:hover:before {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -1143px;
    background-repeat: no-repeat;
    width: 18px;
    height: 16px;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .touch .vtp-service-bar .vtp-service-bar-item.favorite.selected > .vtp-service-bar-btn:hover:before,
  .touch .vtp-service-bar .vtp-service-bar-item.favorite.active > .vtp-service-bar-btn:hover:before,
  .touch .vtp-service-bar .vtp-service-bar-item.favorite.favorited > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .touch .vtp-service-bar .vtp-service-bar-item.share > .vtp-service-bar-btn:hover:before {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -1279px;
    background-repeat: no-repeat;
    width: 17px;
    height: 18px;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .touch .vtp-service-bar .vtp-service-bar-item.share > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .touch .vtp-service-bar .vtp-service-bar-item.share > .vtp-service-bar-btn.active:before {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -1307px;
    background-repeat: no-repeat;
    width: 17px;
    height: 18px;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .touch .vtp-service-bar .vtp-service-bar-item.share > .vtp-service-bar-btn.active:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .touch .vtp-service-bar .vtp-service-bar-item.favorites > .vtp-service-bar-btn:hover:before {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -1958px;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .touch .vtp-service-bar .vtp-service-bar-item.favorites > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .touch .vtp-service-bar .vtp-service-bar-item.favorites > .vtp-service-bar-btn.active:before {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -1992px;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .touch .vtp-service-bar .vtp-service-bar-item.favorites > .vtp-service-bar-btn.active:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .touch .vtp-service-bar .vtp-service-bar-item.online-reservation > .vtp-service-bar-btn:hover:before {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -2298px;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .touch .vtp-service-bar .vtp-service-bar-item.online-reservation > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .touch .vtp-service-bar .vtp-service-bar-item.online-reservation > .vtp-service-bar-btn.active:before {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -2264px;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .touch .vtp-service-bar .vtp-service-bar-item.online-reservation > .vtp-service-bar-btn.active:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .touch .vtp-service-bar .vtp-service-bar-item.user > .vtp-service-bar-btn:hover:before {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -2672px;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .touch .vtp-service-bar .vtp-service-bar-item.user > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .touch .vtp-service-bar .vtp-service-bar-item.user > .vtp-service-bar-btn.active:before {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -2638px;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .touch .vtp-service-bar .vtp-service-bar-item.user > .vtp-service-bar-btn.active:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .touch .vtp-service-bar .vtp-service-bar-item.savedsearch > .vtp-service-bar-btn:hover:before {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -2434px;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .touch .vtp-service-bar .vtp-service-bar-item.savedsearch > .vtp-service-bar-btn:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .touch .vtp-service-bar .vtp-service-bar-item.savedsearch > .vtp-service-bar-btn.active:before {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -2400px;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .touch .vtp-service-bar .vtp-service-bar-item.savedsearch > .vtp-service-bar-btn.active:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
/**
 * Print styles, hide entire service bar
 */
@media print {
  .vtp-service-bar {
    display: none;
  }
}
/**
 * TODO achieve this via data.json file instead of just hiding them
 */
.vtp-page-filter .vtp-service-bar .result-item {
  display: none;
}
.vtp-page-filter .vtp-service-bar .search-item {
  display: inline-block;
}

.vtp-page-results .vtp-service-bar .search-item {
  display: none;
}
.vtp-page-results .vtp-service-bar .result-item {
  display: inline-block;
}

/**
 * Hide Audi Customer Chat
 */
#vee24LiveHelpTabHTML {
  display: none !important;
}

/**
 * Non Flexbox version for Service-Bar
 */
.no-flexbox .vtp-service-bar nav,
.no-flexbox .vtp-headline .vtp-service-bar {
  float: right;
  margin-top: -50px;
  margin-top: -4.1666666667rem;
}
@media only screen and (max-width: 1280px) {
  .no-flexbox .vtp-headline .vtp-service-bar {
    margin-top: -20px;
    margin-top: -1.6666666667rem;
  }
}
@media only screen and (max-width: 940px) {
  .no-flexbox .vtp-headline .vtp-service-bar {
    margin-top: -5px;
    margin-top: -0.4166666667rem;
  }
}

.vtp-service-bar-subitem {
  display: block;
  position: relative;
  width: 100%;
  font-size: 1rem;
  line-height: 40px;
  font-family: Verdana, sans-serif;
}
.vtp-service-bar-subitem > a {
  display: block;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.vtp-service-bar-subitem > a:before {
  content: "";
  position: relative;
  display: inline-block;
}
.vtp-service-bar-subitem > a:hover {
  color: #c03;
}
.vtp-service-bar-subitem > a .slabel,
.vtp-service-bar-subitem > a .slabel-active {
  display: inline-block;
  margin-left: 0;
}
.vtp-service-bar-subitem > a .slabel-active {
  display: none;
}
.vtp-service-bar-subitem.pdf > a:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1890px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  top: 5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-subitem.pdf > a:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-subitem.pdf > a:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1924px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-subitem.pdf > a:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-subitem.savedsearch {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #c6c9cb;
}
.vtp-service-bar-subitem.savedsearch > a:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2230px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  top: 7px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-subitem.savedsearch > a:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-subitem.newsearch {
  position: relative;
}
.vtp-service-bar-subitem.newsearch > a {
  cursor: default;
}
.vtp-service-bar-subitem.newsearch > a:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2434px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  top: 6px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-subitem.newsearch > a:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-subitem.newsearch > a:hover {
  color: black;
}
.vtp-service-bar-subitem.newsearch > a:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2434px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-subitem.newsearch > a:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-subitem.print {
  position: relative;
}
.vtp-service-bar-subitem.print > a:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2332px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  top: 7px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-subitem.print > a:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-service-bar-subitem.print > a:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2366px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-service-bar-subitem.print > a:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-service-bar-item .vtp-service-bar-subitem-search {
  position: relative;
}
.vtp-service-bar-item .error {
  display: inline-block;
  padding-top: 10px;
  padding-top: 0.8333333333rem;
  color: #c03;
  font-family: Verdana, sans-serif;
  font-size: 11px;
}
.vtp-service-bar-item .error ~ .vtp-btn, .vtp-service-bar-item .vtp-compare-bar.compare-enabled .action-holder .error ~ .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-service-bar-item .error ~ .vtp-btn {
  margin-bottom: 10px;
}
.vtp-service-bar-item .vtp-flyout .vtp-service-bar-search-items #audicode-enter {
  margin-bottom: 10px;
  margin-bottom: 0.8333333333rem;
}
.vtp-service-bar-item .vtp-flyout .vtp-service-bar-search-items #audicode-enter input[type=text] {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDE0IDc5LjE1Njc5NywgMjAxNC8wOC8yMC0wOTo1MzowMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QjNCRTgxNTQ1Mjc0MTFFNkJGQTZCOEQ1NUQzNUQ2MDUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QjNCRTgxNTU1Mjc0MTFFNkJGQTZCOEQ1NUQzNUQ2MDUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCM0JFODE1MjUyNzQxMUU2QkZBNkI4RDU1RDM1RDYwNSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpCM0JFODE1MzUyNzQxMUU2QkZBNkI4RDU1RDM1RDYwNSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PjGJaFIAAAFHSURBVHja7FpRDoIwDF0NB/Eo/Bm/jCfxDN4ATuARjF/GP47CTeYWIUHdlrJulWGX9IOO0D3S19cSQGutSl4bVfgSAAKAuCqX83Z/pGA2fFyTn3nY7wAFwHezB6zLrZGgbByFjKOFA8VwIJITMDO2DqQgOo0rCoEmB4glKPg4gC0kwgEBIAAEQAE6kLA/+tKCkA4kAxASFMIBYE4vxJlCtbHe4e+HvUVzwB7waqx17LXDXs3Cgcict2/5bKxx7I2+i7FtghR85SH1qwT1AEvkgOjAXwFwcoAgWv1QbZoZc/KbzoRicwz1YxlVHhCAAeaKzTXUd8aOxk4lc6Cb1vk1D/W83WimoZ4PQKr2OXXrzgkAMK0EtvqJEhc3UubKf1sEsigxIw9ISvzroZ4nhTIN9ULidVehXB+yUvMN5FcDASAAyl5PAQYAkgeBtl6Mn/AAAAAASUVORK5CYII=") no-repeat 7px center;
  background-size: 24px 24px;
  display: inline-block;
  min-width: 0;
  width: 209px;
  padding-left: 40px;
  margin-right: 20px;
  margin-right: 1.6666666667rem;
  vertical-align: top;
}
.vtp-service-bar-item .vtp-flyout .vtp-service-bar-search-items #audicode-enter .submit {
  display: inline-block;
  vertical-align: top;
  min-width: 0;
  padding: 10px 15px 9px 9px;
}

@media only screen and (max-width: 767px) {
  .vtp-service-bar-item .vtp-flyout {
    display: none;
    overflow: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 5000;
    text-align: left;
  }
  .vtp-service-bar-item .vtp-flyout .content {
    min-height: 100%;
    padding-top: 0;
    background-color: #fff;
    z-index: 1;
    position: relative;
    width: auto;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 4%;
    padding-right: 4%;
    right: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .vtp-service-bar-item .vtp-flyout .content .flyout-title {
    display: block;
    font-size: 18px;
  }
  .vtp-service-bar-item .vtp-flyout .content .vtp-link.back, .vtp-service-bar-item .vtp-flyout .content .back.vtp-breadcrumb-item {
    padding-top: 30px;
    padding-bottom: 30px;
    display: block;
    padding-left: 4px;
  }
  .vtp-service-bar-item .vtp-flyout .content .vtp-link.back:before, .vtp-service-bar-item .vtp-flyout .content .back.vtp-breadcrumb-item:before {
    left: -4px;
  }
}
@media only screen and (min-width: 767px) {
  .vtp-service-bar-item .vtp-flyout .content {
    padding-top: 20px;
  }
  .vtp-service-bar-item .vtp-flyout .content .title {
    margin-bottom: 17px;
  }
  .vtp-service-bar-item .vtp-flyout .content .vtp-link.back, .vtp-service-bar-item .vtp-flyout .content .back.vtp-breadcrumb-item {
    display: none;
  }
}
/**
 * overwriting the margin, to keep favorites icon in line with
 * all other icons (it has a smaller width)
 * .vtp-service-bar .vtp-service-bar-item.favorites > a:before {
 *   margin-right: 5px !important;
 * }
 *
 */
.ie9 .vtp-service-bar .vtp-service-bar-item {
  vertical-align: top;
}
.ie9 .vtp-service-bar .vtp-service-bar-item > .vtp-service-bar-btn {
  text-align: center;
}
.ie9 .vtp-service-bar .vtp-service-bar-item > .vtp-service-bar-btn:before {
  margin-right: 0;
}
.ie9 .vtp-service-bar .vtp-service-bar-item > .vtp-service-bar-btn .slabel,
.ie9 .vtp-service-bar .vtp-service-bar-item > .vtp-service-bar-btn .slabel-active {
  display: block;
  max-width: 100px;
  line-height: 1.2;
  text-align: center;
}
.ie9 .vtp-service-bar .vtp-service-bar-item > .vtp-service-bar-btn .slabel-active {
  display: none;
}
.ie9 .vtp-service-bar .vtp-service-bar-item > .vtp-service-bar-btn .callout {
  display: inline-block;
  margin-left: 4px;
  line-height: 1.2;
}
.ie9 .vtp-service-bar .vtp-service-bar-item.active > .vtp-service-bar-btn .slabel-active {
  display: block;
}
.ie9 .vtp-service-bar .vtp-service-bar-item.active > .vtp-service-bar-btn .slabel-active + .slabel {
  display: none;
}

.vtp-backlink {
  height: 70px;
  margin: 0 auto;
  padding: 0 4% 0 0 !important;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  line-height: 70px;
}
.vtp-backlink > .container {
  position: relative;
}
.vtp-backlink .vtp-link, .vtp-backlink .vtp-breadcrumb-item {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #000;
}
.vtp-backlink .vtp-link.back, .vtp-backlink .back.vtp-breadcrumb-item {
  position: relative;
  z-index: 20;
}
.vtp-backlink .pagination {
  position: absolute;
  right: 0;
  top: -1px;
}
.vtp-backlink .pagination .pages {
  display: inline-block;
}
.vtp-backlink .pagination .pages span {
  font-size: 15px;
  font-size: 1.25rem;
}
.vtp-backlink .pagination .pages .divider {
  padding: 0 7px 0 8px;
}
.vtp-backlink .pagination .pages .max {
  color: #999;
}
.vtp-backlink .pagination .vtp-link + .pages, .vtp-backlink .pagination .vtp-breadcrumb-item + .pages,
.vtp-backlink .pagination .pages + .vtp-link,
.vtp-backlink .pagination .pages + .vtp-breadcrumb-item {
  margin-left: 24px;
}
@media print {
  .vtp-backlink {
    display: none;
  }
}
@media only screen and (max-width: 880px) {
  .vtp-backlink .pagination .vtp-link.next span, .vtp-backlink .pagination .next.vtp-breadcrumb-item span,
  .vtp-backlink .pagination .vtp-link.back span,
  .vtp-backlink .pagination .back.vtp-breadcrumb-item span {
    display: none;
  }
  .vtp-backlink .pagination .vtp-link + .pages, .vtp-backlink .pagination .vtp-breadcrumb-item + .pages,
  .vtp-backlink .pagination .pages + .vtp-link,
  .vtp-backlink .pagination .pages + .vtp-breadcrumb-item {
    margin-left: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-backlink.bottom {
    height: 80px;
    line-height: 80px;
  }
  .vtp-backlink .hide-mobile {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .vtp-backlink .pagination .vtp-link.next, .vtp-backlink .pagination .next.vtp-breadcrumb-item,
  .vtp-backlink .pagination .vtp-link.back,
  .vtp-backlink .pagination .back.vtp-breadcrumb-item {
    position: relative;
    top: 20px;
    display: inline-block;
    padding: 0;
    width: 40px;
    height: 40px;
    background-color: #000;
  }
  .vtp-backlink .pagination .vtp-link.next:hover, .vtp-backlink .pagination .next.vtp-breadcrumb-item:hover,
  .vtp-backlink .pagination .vtp-link.back:hover,
  .vtp-backlink .pagination .back.vtp-breadcrumb-item:hover {
    background-color: #434c53;
  }
  .vtp-backlink .pagination .vtp-link.back:before, .vtp-backlink .pagination .back.vtp-breadcrumb-item:before {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -334px;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
    left: 16px;
    top: -20px;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .vtp-backlink .pagination .vtp-link.back:before, .vtp-backlink .pagination .back.vtp-breadcrumb-item:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .vtp-backlink .pagination .vtp-link.next:after, .vtp-backlink .pagination .next.vtp-breadcrumb-item:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -352px;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
    left: 16px;
    top: -20px;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .vtp-backlink .pagination .vtp-link.next:after, .vtp-backlink .pagination .next.vtp-breadcrumb-item:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .vtp-backlink .pagination .pages span {
    font-size: 12px;
    font-size: 1rem;
  }
  .vtp-backlink .pagination .vtp-link + .pages, .vtp-backlink .pagination .vtp-breadcrumb-item + .pages,
  .vtp-backlink .pagination .pages + .vtp-link,
  .vtp-backlink .pagination .pages + .vtp-breadcrumb-item {
    margin-left: 14px;
  }
}

.vtp-stage {
  padding: 0;
  margin-bottom: 2em;
}
.vtp-stage .vtp-carousel-indicator {
  background: #dcdedf;
  color: #000;
  position: absolute;
  padding: 4px 8px;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.vtp-stage .btn-next,
.vtp-stage .btn-prev {
  position: absolute;
  display: block;
  top: auto;
  bottom: 0;
  right: 0;
  left: auto;
}
.vtp-stage .btn-prev {
  right: 38px;
}
.vtp-stage .container {
  max-width: 1280px;
  padding: 0;
}
@media only screen and (max-width: 940px) {
  .vtp-stage .vtp-car-info {
    width: 70%;
  }
  .vtp-stage .vtp-service-bar {
    max-width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-stage .vtp-car-info {
    width: 90%;
  }
  .vtp-stage .vtp-service-bar {
    position: absolute;
    right: 0;
    margin-top: -28px;
    width: 100%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-stage .vtp-car-info {
    width: 100%;
  }
  .vtp-stage .vtp-service-bar {
    margin-top: -40px;
    max-width: 100%;
  }
}
.vtp-stage .vtp-stage-gallery-item {
  position: relative;
}
.vtp-stage .vtp-stage-gallery-item .vtp-slide-zoomButton {
  display: none;
  position: absolute;
  top: 0px;
  right: 0px;
}
@media only screen and (max-width: 568px) {
  .vtp-stage .vtp-stage-gallery-item .vtp-slide-zoomButton {
    display: block;
  }
}
.vtp-stage .vtp-stage-gallery-item .vtp-slide-zoomButton .vtp-slide-zoomIcon {
  position: absolute;
  top: 4px;
  left: 4px;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -6436px;
  background-repeat: no-repeat;
  width: 48px;
  height: 48px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-stage .vtp-stage-gallery-item .vtp-slide-zoomButton .vtp-slide-zoomIcon {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-car-info {
  padding-top: 24px !important;
  padding-top: 2rem !important;
  padding-bottom: 24px !important;
  padding-bottom: 2rem !important;
}
@media only screen and (min-width: 768px) {
  .vtp-car-info .mobileServicebar {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-car-info .mobileServicebar {
    padding-bottom: 24px !important;
    padding-bottom: 2rem !important;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-car-info .desktopServicebar {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-car-info {
    padding-top: 0 !important;
    padding-top: 0 !important;
  }
}
.vtp-car-info .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.vtp-car-info .vtp-car-info-cta .vtp-btn, .vtp-car-info .vtp-car-info-cta .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-car-info .vtp-car-info-cta .vtp-btn {
  margin-bottom: 21px;
  margin-bottom: 1.75rem;
  margin-right: 20px;
  margin-right: 1.6666666667rem;
}
.vtp-car-info .vtp-car-info-cta .vtp-btn:last-child {
  margin-right: 0;
}
.vtp-car-info .vtp-car-info-wrapper {
  padding-top: 0 !important;
  padding-top: 0 !important;
}
@media print {
  .vtp-car-info .vtp-car-info-wrapper {
    padding-bottom: 0;
  }
}
@media print {
  .vtp-car-info .vtp-car-info-wrapper .vtp-title {
    width: 100%;
    font-size: 14pt;
  }
}
@media print {
  .vtp-car-info .vtp-car-info-wrapper .vtp-subtitle {
    width: 100%;
    font-size: 12pt;
  }
}
.vtp-car-info .vtp-car-info-description {
  display: none;
}
@media print {
  .vtp-car-info .vtp-car-info-description {
    clear: both;
    display: block;
    margin-top: 50px;
    font-size: 8pt;
  }
}
.vtp-car-info .vtp-car-info-offer {
  margin-top: -6px;
  margin-top: -0.5rem;
  margin-bottom: 30px;
  margin-bottom: 2.5rem;
  padding-top: 14px;
  padding-top: 1.1666666667rem;
}
@media print {
  .vtp-car-info .vtp-car-info-offer {
    font-size: 10pt !important;
    width: 70%;
  }
}
.vtp-car-info .vtp-car-info-offer,
.vtp-car-info .vtp-car-info-offer strong,
.vtp-car-info .vtp-car-info-offer small,
.vtp-car-info .vtp-car-info-offer div,
.vtp-car-info .vtp-car-info-offer span,
.vtp-car-info .vtp-car-info-offer .dealer a,
.vtp-car-info .vtp-car-info-offer .phone a,
.vtp-car-info .vtp-car-info-offer .nationwide-selling-info a {
  font-size: 15px;
  line-height: 2;
}
.vtp-car-info .vtp-car-info-offer .vtp-car-info-phone {
  white-space: nowrap;
}
.vtp-car-info .vtp-car-info-offer .vtp-car-info-dealer,
.vtp-car-info .vtp-car-info-offer .vtp-car-info-phone {
  display: inline;
  margin-right: 10px;
}
.vtp-car-info .vtp-car-info-offer .vtp-car-info-dealer:last-child,
.vtp-car-info .vtp-car-info-offer .vtp-car-info-phone:last-child {
  margin-right: 0;
}
@media print {
  .vtp-car-info .vtp-car-info-offer .vtp-car-info-dealer,
  .vtp-car-info .vtp-car-info-offer .vtp-car-info-phone {
    display: block;
    width: 420px;
  }
}
.vtp-car-info .vtp-car-info-offer .finance-data {
  display: none;
}
@media print {
  .vtp-car-info .vtp-car-info-price {
    padding-bottom: 15px;
  }
}
.vtp-car-info [itemprop=price] {
  margin-right: 5px;
  font-size: 18px !important;
}
@media print {
  .vtp-car-info [itemprop=price] {
    width: 100%;
    font-size: 11pt !important;
  }
}
.vtp-car-info strong,
.vtp-car-info .available {
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}
@media only screen and (max-width: 568px) {
  .vtp-car-info [itemprop=price] {
    display: block;
    font-size: inherit !important;
  }
  .vtp-car-info .offer,
  .vtp-car-info .offer strong,
  .vtp-car-info .offer small,
  .vtp-car-info .offer span,
  .vtp-car-info .offer .vtp-car-info-dealer a,
  .vtp-car-info .offer .vtp-car-info-phone a {
    font-size: 13px;
  }
  .vtp-car-info .offer .vtp-car-info-price,
  .vtp-car-info .offer .available {
    line-height: 1em;
  }
  .vtp-car-info .offer .vtp-car-info-price {
    margin-bottom: 1em;
  }
  .vtp-car-info .offer .vtp-car-info-dealer,
  .vtp-car-info .offer .vtp-car-info-phone {
    display: block;
    margin-right: 0;
  }
  .vtp-car-info sub {
    font-size: 10px;
  }
}
@media only screen and (max-width: 320px) {
  .vtp-car-info .vtp-car-info-cta .vtp-btn, .vtp-car-info .vtp-car-info-cta .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-car-info .vtp-car-info-cta .vtp-btn {
    margin-bottom: 12px;
    margin-bottom: 1rem;
  }
}

.vtp-cmp dl,
.vtp-highlights dl {
  position: relative;
}
.vtp-cmp dl i.vtp-icon-i,
.vtp-highlights dl i.vtp-icon-i {
  position: absolute;
  right: 0;
  top: 32px;
}
.vtp-cmp dl .vtp-tooltip p,
.vtp-highlights dl .vtp-tooltip p {
  font-size: 11px;
  font-weight: 400;
  padding: 6px;
  text-align: left;
}
@media only screen and (max-width: 568px) {
  .vtp-cmp dl i.vtp-icon-i,
  .vtp-highlights dl i.vtp-icon-i {
    display: none;
  }
}

.vtp-cmp dl dt > .print-only,
.vtp-highlights dl dt > .print-only {
  display: none;
}

.vtp-cmp table.print-only,
.vtp-highlights table.print-only {
  display: none;
}

.vtp-plakette.print-only {
  display: none;
}

.vtp-switcher-container-detail .switcher-left-label {
  display: block;
  float: left;
}
.vtp-switcher-container-detail .switcher-left-label .resultcount {
  padding: 0 5px;
}
.vtp-switcher-container-detail .switcher-left-label span {
  line-height: 1;
}
.vtp-switcher-container-detail .switcher-right-label {
  margin-left: 0px;
  float: left;
  display: block;
  margin: 0 !important;
}
.vtp-switcher-container-detail .switcher-right-label .resultcount {
  padding: 0 5px;
}
.vtp-switcher-container-detail .switcher-right-label span {
  line-height: 1;
}
.vtp-switcher-container-detail .switcher {
  width: 0;
  height: 0;
  visibility: hidden;
  margin: 0 !important;
}
.vtp-switcher-container-detail .switcher-icon {
  position: relative;
  float: left;
  width: auto;
  height: auto;
  overflow: hidden;
  display: block;
}
.vtp-switcher-container-detail .switcher-icon label:before {
  content: "";
  cursor: pointer;
  width: 40px;
  height: 18px;
  background: #fff;
  display: inline-block;
  border-radius: 18px;
  position: relative;
  border: 1px solid #b6b1a9;
  margin: 0px 5px;
  float: left;
}
.vtp-switcher-container-detail .switcher-icon label:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 9px;
  width: 12px;
  height: 12px;
  background: #bb0a30;
  border-radius: 18px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.vtp-features .vtp-description-list-wrap {
  padding-top: 24px;
  padding-top: 2rem;
}
.vtp-features .content h2,
.vtp-features .content h3,
.vtp-features .content h4,
.vtp-features .content h5 {
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
}
.vtp-features .content > .section:first-child {
  padding-top: 0;
}
.vtp-feature-teaser {
  position: relative;
}
.vtp-feature-teaser a {
  *zoom: 1;
  display: block;
}
.vtp-feature-teaser a:before, .vtp-feature-teaser a:after {
  content: "";
  display: table;
}
.vtp-feature-teaser a:after {
  clear: both;
}
.vtp-feature-teaser .text {
  position: relative;
}
.vtp-feature-teaser .vtp-icon-i {
  position: absolute;
  top: -5px;
  right: 0;
}
.vtp-feature-teaser picture {
  display: block;
  clear: both;
  float: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.vtp-feature-teaser picture:first-child {
  margin-left: auto;
}
.vtp-feature-teaser picture:last-child {
  margin-right: auto;
}
@media only screen and (max-width: 568px) {
  .vtp-feature-teaser picture {
    float: left;
    clear: none;
    width: 41.0605714286%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-feature-teaser picture:last-child {
    margin-right: 0;
  }
}
.vtp-feature-teaser picture + div {
  display: block;
  clear: both;
  float: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.vtp-feature-teaser picture + div:first-child {
  margin-left: auto;
}
.vtp-feature-teaser picture + div:last-child {
  margin-right: auto;
}
@media only screen and (max-width: 568px) {
  .vtp-feature-teaser picture + div {
    float: left;
    clear: none;
    width: 55.7454285714%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-feature-teaser picture + div:last-child {
    margin-right: 0;
  }
  .vtp-feature-teaser picture + div h6 {
    margin-bottom: 0;
  }
}
.vtp-feature-teaser h6 {
  padding-right: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.412;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.vtp-feature-teaser a h6 {
  -webkit-transition: color 200ms ease;
  -o-transition: color 200ms ease;
  transition: color 200ms ease;
}
.vtp-feature-teaser a:hover h6 {
  color: #c03;
}
@media only screen and (max-width: 568px) {
  .vtp-feature-teaser {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #e7e9ea;
    margin-bottom: 2px !important;
  }
  .vtp-feature-teaser h6 {
    font-size: 12px;
  }
  .vtp-feature-teaser a {
    *zoom: 1;
    display: block;
    height: 100%;
  }
  .vtp-feature-teaser a:before, .vtp-feature-teaser a:after {
    content: "";
    display: table;
  }
  .vtp-feature-teaser a:after {
    clear: both;
  }
  .vtp-feature-teaser .text {
    position: static;
    padding-right: 1.1em;
    padding-bottom: 0.5em;
  }
  .vtp-feature-teaser [class=text] {
    padding-left: 1em;
  }
  .vtp-feature-teaser .vtp-icon-i {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 1em;
  }
}
.vtp-feature-teaser .vtp-description-further-info, .vtp-feature-teaser .vtp-class {
  display: none;
}
@media print {
  .vtp-feature-teaser .vtp-description-further-info, .vtp-feature-teaser .vtp-class {
    display: block;
    margin-top: 40px;
  }
  .vtp-feature-teaser .vtp-description-further-info .vtp-description-further-info-headline,
  .vtp-feature-teaser .vtp-description-further-info .vtp-class-headline, .vtp-feature-teaser .vtp-class .vtp-description-further-info-headline,
  .vtp-feature-teaser .vtp-class .vtp-class-headline {
    font-weight: 400;
  }
}

.vtp-provider-remarks h6 {
  font-size: 12px;
}

.vtp-feature-disclaimer {
  margin: 6px 0 50px 0;
  margin: 0.5rem 0 4.1666666667rem 0;
}
@media only screen and (max-width: 568px) {
  .vtp-feature-disclaimer {
    margin-top: 30px;
    margin-top: 2.5rem;
  }
}

@media print {
  #features-extended {
    display: block;
  }
  .vtp-features .content .vtp-feature-detail h1 {
    font-family: "AudiTypeExtBold", Verdana, sans-serif;
    font-weight: 700;
    font-size: 13px;
    margin: 0 0 1em;
  }
  .vtp-features .vtp-feature-teasers > article {
    clear: both;
    width: 100%;
    margin-bottom: 12px;
    margin-bottom: 1rem;
  }
  .vtp-features .vtp-feature-teasers > article.vtp-has-modal {
    margin-bottom: 48px;
    margin-bottom: 4rem;
  }
  .vtp-feature-teaser {
    clear: both;
    width: 100%;
    margin-bottom: 12px;
    margin-bottom: 1rem;
  }
  .vtp-feature-teaser a[data-toggle=modal] h6 {
    display: none !important;
  }
  .vtp-feature-teaser a[data-toggle] {
    float: left;
    display: table;
    margin-right: 3%;
    width: 25%;
  }
  .vtp-feature-teaser .vtp-modal {
    display: block;
    float: left;
    width: 70%;
  }
  .vtp-feature-teaser picture {
    display: table-footer-group;
  }
  .vtp-feature-teaser .text {
    display: table-header-group;
  }
  .vtp-feature-detail {
    /*
    float: left;
    margin-left: 3%;
    &.no-image {
      margin-left: 0;
      width: 130%; // extra width for missing image
    }
    */
    float: left;
  }
  .vtp-feature-detail.no-image-modal {
    width: 100%;
  }
  .vtp-feature-detail.no-image-modal.no-image {
    width: 150%;
  }
  .vtp-feature-detail .bg-image-16x9,
  .vtp-feature-detail .lead,
  .vtp-feature-detail .vtp-checklist,
  .vtp-feature-detail .vtp-checklist ul > li:before {
    display: none;
  }
  .vtp-feature-detail .container {
    padding-right: 0 !important;
  }
}
.vtp-feature-detail h1 {
  margin: 48px 0 36px;
  margin: 4rem 0 3rem;
}
@media only screen and (max-width: 768px) {
  .vtp-feature-detail.no-image h1 {
    margin-right: 60px;
  }
}
@media only screen and (max-width: 660px) {
  .vtp-feature-detail.no-image h1 {
    margin-right: 0;
    margin-top: 0;
    margin-top: 0;
  }
}
.vtp-feature-detail h2 {
  margin: 42px 0;
  margin: 3.5rem 0;
}
.vtp-feature-detail .container {
  padding-right: 22%;
}
.vtp-feature-detail h1 span.price {
  margin-top: 24px;
  margin-top: 2rem;
  margin-bottom: 0;
  font-family: Verdana, sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.vtp-feature-detail .price {
  display: block;
  margin-bottom: 6px;
  margin-bottom: 0.5rem;
}
.vtp-feature-detail .vtp-btn.back, .vtp-feature-detail .vtp-compare-bar.compare-enabled .action-holder .back.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-feature-detail .back.vtp-btn {
  margin-bottom: 72px;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .vtp-feature-detail .container {
    padding-right: 4%;
  }
}

#audi-ultra .vtp-feature-detail img {
  float: right;
  width: auto;
}

.vtp-technical-data dd {
  padding-left: 0 !important;
}
.vtp-technical-data dd:before {
  display: none;
}
.vtp-technical-data .content strong {
  font-weight: 700 !important;
  letter-spacing: 0;
}
@media print {
  .vtp-technical-data .features-extended {
    display: block;
  }
}
@media print {
  .vtp-technical-data .features-extended .vtp-feature-teasers {
    display: none;
  }
}
@media print {
  .vtp-technical-data .vtp-description-list-wrap {
    display: block !important;
  }
}
.vtp-technical-data .vtp-description-list-wrap .vtp-description-list dl + .nefz-wltp {
  margin-top: 50px;
}
.vtp-technical-data .vtp-description-list-wrap .vtp-description-list .nefz-wltp + .nefz-wltp {
  margin-top: 50px;
}
.vtp-technical-data .nefz-wltp.wltp-2-grid {
  margin-top: 50px;
}
.vtp-technical-data .nefz-wltp h3 {
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-size: 18px;
  margin-bottom: 6px;
}
.vtp-technical-data .nefz-wltp p {
  margin-bottom: 15px;
}
.vtp-technical-data .nefz-wltp p .hint {
  color: #aaa;
  text-decoration: underline;
  margin-bottom: 0px;
}
.vtp-technical-data .nefz-wltp p .hint:hover {
  color: #c03;
}
.vtp-technical-data .nefz-wltp sup {
  font-size: 75%;
}

.vtp-consumption dd {
  padding-left: 0 !important;
}
.vtp-consumption dd:before {
  display: none;
}
.vtp-consumption .content strong {
  font-weight: 700 !important;
  letter-spacing: 0;
}
@media print {
  .vtp-consumption .vtp-description-list-wrap {
    display: block !important;
  }
}
.vtp-consumption .vtp-description-list-wrap .hybrid-consumption-switcher {
  margin-top: 30px;
  float: left;
  clear: none;
  width: 48.403%;
  margin-left: 0;
  margin-right: 2.994%;
}
@media only screen and (max-width: 800px) {
  .vtp-consumption .vtp-description-list-wrap .hybrid-consumption-switcher {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.vtp-consumption .vtp-description-list-wrap .hybrid-consumption-switcher button {
  width: 50%;
  float: left;
  border-bottom: 2px solid #aaa;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  font-size: 16px;
  margin-bottom: 6px;
  color: #aaa;
}
.vtp-consumption .vtp-description-list-wrap .hybrid-consumption-switcher button.active {
  color: #000;
  border-color: #000;
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: bold;
}
.vtp-consumption .vtp-description-list-wrap .vtp-description-list.nefz-wltp {
  margin-top: 0px;
}
.vtp-consumption .vtp-description-list-wrap .vtp-description-list.nefz-wltp h4 {
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-size: 18px;
  margin-bottom: 6px;
  margin-top: 50px;
}
.vtp-consumption .vtp-description-list-wrap .vtp-description-list.nefz-wltp p {
  margin-bottom: 15px;
}
.vtp-consumption .vtp-description-list-wrap .vtp-description-list.nefz-wltp p .hint {
  color: #aaa;
  text-decoration: underline;
  margin-bottom: 0px;
}
.vtp-consumption .vtp-description-list-wrap .vtp-description-list.nefz-wltp p .hint:hover {
  color: #c03;
}
.vtp-consumption .vtp-description-list-wrap .vtp-description-list.nefz-wltp sup {
  font-size: 75%;
}
.vtp-consumption .vtp-description-list-wrap .vtp-description-list.nefz-wltp .engine-key-consumption {
  display: none;
}
.vtp-consumption .vtp-description-list-wrap .vtp-description-list.nefz-wltp .engine-key-consumption.visible {
  display: block;
}
.vtp-consumption .vtp-description-list-wrap .vtp-description-list.nefz-wltp .vtp-emission {
  margin-top: 15px;
}
.vtp-consumption .vtp-description-list-wrap .vtp-description-list.nefz-wltp img {
  max-width: 336px !important;
}
.vtp-consumption .vtp-description-list-wrap .vtp-description-list.nefz-wltp .vtp-wltp-envkv {
  max-width: 420px;
}

.vtp-nationwide-selling .nationwide-selling-grid {
  *zoom: 1;
}
.vtp-nationwide-selling .nationwide-selling-grid:before, .vtp-nationwide-selling .nationwide-selling-grid:after {
  content: "";
  display: table;
}
.vtp-nationwide-selling .nationwide-selling-grid:after {
  clear: both;
}
.vtp-nationwide-selling .nationwide-selling-grid > li {
  float: left;
  clear: none;
  width: 24.95%;
  margin-left: 0;
  margin-right: 0;
}
.vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(n) {
  margin-right: 0;
  float: left;
  clear: none;
}
.vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(4n + 1) {
  clear: both;
}
@media only screen and (max-width: 940px) {
  .vtp-nationwide-selling .nationwide-selling-grid > li {
    float: left;
    clear: none;
    width: 33.2666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(4n) {
    margin-right: 0;
    float: left;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(4n + 1) {
    clear: none;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-nationwide-selling .nationwide-selling-grid > li {
    float: left;
    clear: none;
    width: 33.2666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(4n) {
    margin-right: 0;
    float: left;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(4n + 1) {
    clear: none;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-nationwide-selling .nationwide-selling-grid > li {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:first-child {
    margin-left: auto;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:last-child {
    margin-right: auto;
  }
}

.vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid {
  *zoom: 1;
}
.vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid:before, .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid:after {
  content: "";
  display: table;
}
.vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid:after {
  clear: both;
}
.vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li {
  float: left;
  clear: none;
  width: 24.95%;
  margin-left: 0;
  margin-right: 0;
}
.vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li:nth-of-type(n) {
  margin-right: 0;
  float: left;
  clear: none;
}
.vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li:nth-of-type(4n + 1) {
  clear: both;
}
@media only screen and (max-width: 940px) {
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li {
    float: left;
    clear: none;
    width: 33.2666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li:nth-of-type(4n) {
    margin-right: 0;
    float: left;
  }
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li:nth-of-type(4n + 1) {
    clear: none;
  }
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li {
    float: left;
    clear: none;
    width: 49.9%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li:nth-of-type(3n) {
    margin-right: 0;
    float: left;
  }
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li:nth-of-type(3n + 1) {
    clear: none;
  }
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li:nth-of-type(2n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li:first-child {
    margin-left: auto;
  }
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li:last-child {
    margin-right: auto;
  }
}

.vtp-nationwide-selling .nationwide-selling-grid {
  clear: both;
  position: relative;
  overflow: hidden;
}
.vtp-nationwide-selling .nationwide-selling-grid .collapse-toggle {
  background-color: white;
  background-size: auto 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-bottom: none;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.vtp-nationwide-selling .nationwide-selling-grid .collapse-toggle:after {
  display: none;
}
@media only screen and (max-width: 568px) {
  .vtp-nationwide-selling .nationwide-selling-grid .collapse-toggle {
    padding-top: 19px;
    padding-top: 1.5833333333rem;
    font-size: 12px;
    font-size: 1rem;
    padding-bottom: 16px;
    padding-bottom: 1.3333333333rem;
    background: #e7e9ea;
    border-bottom: 1px solid #cdd0d2;
    cursor: pointer;
    font-family: "AudiTypeExtBold", Verdana, sans-serif;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0;
    padding-left: 4%;
    position: relative;
    left: 0;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    background: white;
    padding-left: 0;
  }
  .vtp-nationwide-selling .nationwide-selling-grid .collapse-toggle:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -172px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
    content: "";
    position: absolute;
    right: 4%;
    top: 50%;
    margin-top: -4px;
    display: block;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-nationwide-selling .nationwide-selling-grid .collapse-toggle:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-nationwide-selling .nationwide-selling-grid .collapse-toggle.active:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -226px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-nationwide-selling .nationwide-selling-grid .collapse-toggle.active:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-nationwide-selling .nationwide-selling-grid .collapse-toggle:after {
    right: 2px;
    background-image: url(../images/sprite-common.png);
    background-position: 0px -226px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-nationwide-selling .nationwide-selling-grid .collapse-toggle:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-nationwide-selling .nationwide-selling-grid .collapse-toggle.active:after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="1"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="2"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="3"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="4"] .nationwide-selling-result-grid {
  padding-bottom: 9%;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="5"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="6"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="7"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="8"] .nationwide-selling-result-grid {
  padding-bottom: 9%;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="9"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="10"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="11"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="12"] .nationwide-selling-result-grid {
  padding-bottom: 9%;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="13"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="14"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="15"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="16"] .nationwide-selling-result-grid {
  padding-bottom: 9%;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="17"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="18"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="19"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="20"] .nationwide-selling-result-grid {
  padding-bottom: 9%;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="21"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="22"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="23"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="24"] .nationwide-selling-result-grid {
  padding-bottom: 9%;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="25"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="26"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="27"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="28"] .nationwide-selling-result-grid {
  padding-bottom: 9%;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="29"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="30"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="31"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="32"] .nationwide-selling-result-grid {
  padding-bottom: 9%;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="33"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="34"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="35"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="36"] .nationwide-selling-result-grid {
  padding-bottom: 9%;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="37"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="38"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="39"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="40"] .nationwide-selling-result-grid {
  padding-bottom: 9%;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="41"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="42"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="43"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="44"] .nationwide-selling-result-grid {
  padding-bottom: 9%;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="45"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="46"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="47"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="48"] .nationwide-selling-result-grid {
  padding-bottom: 9%;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="49"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="50"] .nationwide-selling-result-grid {
  padding-bottom: 10px;
}
.vtp-nationwide-selling .nationwide-selling-grid > li:last-child .collapse-toggle:not(.active) {
  border-bottom: none;
}
.vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region {
  margin-left: 0;
}
@media only screen and (max-width: 568px) {
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region {
    padding-bottom: 20px;
    padding-bottom: 1.6666666667rem;
    text-align: center;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region.in {
    border-bottom: 1px solid #cdd0d2;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region .nationwide-selling-result-grid > li {
    text-align: left;
  }
}
.vtp-nationwide-selling .nationwide-selling-grid > li:last-child .vtp-nationwide-selling-region.in {
  border-bottom: none;
}
.vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(4n+2) .vtp-nationwide-selling-region {
  margin-left: -100%;
}
.vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(4n+3) .vtp-nationwide-selling-region {
  margin-left: -200%;
}
.vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(4n+4) .vtp-nationwide-selling-region {
  margin-left: -300%;
}
@media only screen and (max-width: 940px) {
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="1"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="2"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="3"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="4"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="5"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="6"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="7"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="8"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="9"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="10"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="11"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="12"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="13"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="14"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="15"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="16"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="17"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="18"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="19"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="20"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="21"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="22"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="23"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="24"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="25"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="26"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="27"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="28"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="29"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="30"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="31"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="32"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="33"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="34"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="35"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="36"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="37"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="38"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="39"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="40"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="41"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="42"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="43"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="44"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="45"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="46"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="47"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="48"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="49"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="50"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(3n+1) .vtp-nationwide-selling-region {
    margin-left: 0;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(3n+2) .vtp-nationwide-selling-region {
    margin-left: -100%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(3n+3) .vtp-nationwide-selling-region {
    margin-left: -200%;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="1"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="2"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="3"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="4"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="5"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="6"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="7"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="8"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="9"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="10"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="11"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="12"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="13"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="14"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="15"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="16"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="17"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="18"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="19"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="20"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="21"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="22"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="23"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="24"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="25"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="26"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="27"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="28"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="29"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="30"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="31"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="32"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="33"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="34"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="35"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="36"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="37"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="38"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="39"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="40"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="41"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="42"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="43"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="44"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="45"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="46"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="47"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="48"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="49"] .nationwide-selling-result-grid {
    padding-bottom: 10px;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="50"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(3n+1) .vtp-nationwide-selling-region {
    margin-left: 0;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(3n+2) .vtp-nationwide-selling-region {
    margin-left: -100%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(3n+3) .vtp-nationwide-selling-region {
    margin-left: -200%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-nationwide-selling .nationwide-selling-grid > li {
    overflow: visible;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="1"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="2"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="3"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="4"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="5"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="6"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="7"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="8"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="9"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="10"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="11"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="12"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="13"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="14"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="15"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="16"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="17"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="18"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="19"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="20"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="21"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="22"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="23"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="24"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="25"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="26"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="27"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="28"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="29"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="30"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="31"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="32"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="33"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="34"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="35"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="36"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="37"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="38"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="39"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="40"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="41"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="42"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="43"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="44"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="45"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="46"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="47"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="48"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="49"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li .vtp-nationwide-selling-region[data-result-count="50"] .nationwide-selling-result-grid {
    padding-bottom: 9%;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(1n+1) .vtp-nationwide-selling-region {
    margin-left: 0;
  }
  .vtp-nationwide-selling .nationwide-selling-grid > li:nth-of-type(4n+1) {
    clear: both;
  }
}
.vtp-nationwide-selling .nationwide-selling-grid .control-group {
  margin: 0;
}
.vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-label {
  position: relative;
  cursor: pointer;
  -webkit-transition: background 0.1s ease-in-out;
  -o-transition: background 0.1s ease-in-out;
  transition: background 0.1s ease-in-out;
}
@media only screen and (max-width: 568px) {
  .vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-label {
    background-image: none;
    padding-top: 24px;
    padding-top: 2rem;
    padding-bottom: 24px;
    padding-bottom: 2rem;
  }
  .vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-label:before {
    display: none;
  }
  .vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-label:hover {
    background-image: none;
  }
}
.vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-label.active {
  background-color: #e7e9ea;
  color: #c03;
}
@media only screen and (max-width: 568px) {
  .vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-label.active {
    background-color: transparent;
  }
}
.vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid {
  overflow: hidden;
  background-color: #e7e9ea;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 568px) {
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid {
    background-color: transparent;
    margin: 0;
  }
}
.vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid .checkbox-primary + label {
  min-height: 0;
  padding-left: 0;
  padding-bottom: 10px;
}
@media only screen and (max-width: 568px) {
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid .checkbox-primary + label {
    padding-bottom: 0;
  }
}
.vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid .checkbox-primary + label:before,
.vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid .checkbox-primary + .label:before {
  position: absolute;
  margin: 0;
  top: 20px;
  top: 1.6666666667rem;
  right: auto;
  left: 10px;
  left: 0.8333333333rem;
}
@media only screen and (max-width: 768px) {
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid .checkbox-primary + label:before,
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid .checkbox-primary + .label:before {
    top: 23px;
    top: 1.9166666667rem;
  }
}
.vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid label {
  display: block;
  position: relative;
  margin: 0;
}
@media only screen and (max-width: 568px) {
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid label {
    display: table;
    padding: 0;
    background-size: auto 80px;
    background-position: left center;
    position: relative;
  }
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid label:after {
    top: 10px;
  }
}
.vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid label p {
  line-height: 15.6px;
  line-height: 1.3rem;
  margin: 18px 40px 0 50px;
  margin: 1.5rem 3.3333333333rem 0 4.1666666667rem;
  line-height: 20px;
  line-height: 1.6666666667rem;
}
@media only screen and (max-width: 768px) {
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid label p {
    margin-left: 17%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid label p {
    position: relative;
    display: table-cell;
    width: 90%;
    margin-left: 0;
    background-color: transparent;
    vertical-align: middle;
    top: auto;
    padding-left: 0;
    padding-left: 0;
    padding-top: 13px;
    padding-top: 1.0833333333rem;
    padding-bottom: 13px;
    padding-bottom: 1.0833333333rem;
  }
}
.vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid label p .region-address {
  font-weight: normal;
}
@media only screen and (max-width: 568px) {
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid {
    position: relative;
    width: auto;
    height: auto;
  }
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li {
    margin: 0;
  }
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li:after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
  .vtp-nationwide-selling .nationwide-selling-grid .nationwide-selling-result-grid > li:last-child:after {
    border-bottom: none;
  }
}
.vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-region {
  position: relative;
  width: 400%;
}
@media only screen and (max-width: 940px) {
  .vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-region {
    width: 300%;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-region {
    width: 300%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-region {
    width: 100%;
  }
}
.vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-region .vtp-btn {
  position: absolute;
  right: 20px;
  right: 1.6666666667rem;
  bottom: 20px;
  bottom: 1.6666666667rem;
  background-color: #c6c9cb;
}
.vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-region .vtp-btn.primary {
  background-color: #c03;
}
@media only screen and (max-width: 568px) {
  .vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-region .vtp-btn {
    position: relative;
    right: auto;
    bottom: 15px;
    bottom: 1.25rem;
  }
}
.vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-label.active label:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-label .vtp-nationwide-selling-region-label {
  display: block;
  padding: 20px 15px 20px 40px;
  padding: 1.6666666667rem 1.25rem 1.6666666667rem 3.3333333333rem;
}
.vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-label .vtp-nationwide-selling-region-label label {
  position: relative;
  padding: 0;
  margin: 0;
}
.vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-label .vtp-nationwide-selling-region-label label:before {
  content: "";
  background-image: url(../images/sprite-common.png);
  background-position: 0px -136px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  position: absolute;
  left: -25px;
  top: 4px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-label .vtp-nationwide-selling-region-label label:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-label .vtp-nationwide-selling-region-label label:before {
    display: none;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-nationwide-selling .nationwide-selling-grid .vtp-nationwide-selling-label .vtp-nationwide-selling-region-label {
    padding: 0;
  }
}

@media not print {
  .vtp-section.seperated.vtp-highlights .container:before {
    border-top: 0;
  }
}
@media print {
  .vtp-section.seperated.vtp-highlights .container:before {
    margin-top: 50px;
  }
}

.vtp-highlights {
  *zoom: 1;
  padding-top: 24px !important;
  padding-top: 2rem !important;
  padding-bottom: 0 !important;
  padding-bottom: 0 !important;
  text-align: center;
}
.vtp-highlights:before, .vtp-highlights:after {
  content: "";
  display: table;
}
.vtp-highlights:after {
  clear: both;
}
.vtp-highlights dt, .vtp-highlights dd {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
@media print {
  .vtp-highlights .container {
    border-top: 1px solid #828282;
    border-bottom: 1px solid #828282;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-gwb .vtp-highlights:not(.vtp-highlights-ma) [class*=module-highlights-item] {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px !important;
  }
  .vtp-gwb .vtp-highlights:not(.vtp-highlights-ma) [class*=module-highlights-item]:first-child {
    margin-left: auto;
  }
  .vtp-gwb .vtp-highlights:not(.vtp-highlights-ma) [class*=module-highlights-item]:last-child {
    margin-right: auto;
  }
  .vtp-gwb .vtp-highlights:not(.vtp-highlights-ma) [class*=module-highlights-item]:before, .vtp-gwb .vtp-highlights:not(.vtp-highlights-ma) [class*=module-highlights-item] i.tile {
    display: none;
  }
  .vtp-gwb .vtp-highlights:not(.vtp-highlights-ma) [class*=module-highlights-item] dt, .vtp-gwb .vtp-highlights:not(.vtp-highlights-ma) [class*=module-highlights-item] dd {
    border: 0;
    clip: none;
    height: auto;
    margin: auto;
    overflow: auto;
    padding: auto;
    position: static;
    width: auto;
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
    margin-top: 0;
    text-align: left;
  }
  .vtp-gwb .vtp-highlights:not(.vtp-highlights-ma) [class*=module-highlights-item] dt:last-child, .vtp-gwb .vtp-highlights:not(.vtp-highlights-ma) [class*=module-highlights-item] dd:last-child {
    margin-right: 0;
  }
  .vtp-gwb .vtp-highlights:not(.vtp-highlights-ma) [class*=module-highlights-item] .has-info:after {
    left: 51.5%;
    top: auto;
  }
}
@media only screen and (max-width: 320px) {
  .vtp-gwb .vtp-highlights:not(.vtp-highlights-ma) [class*=module-highlights-item] {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-gwb .vtp-highlights:not(.vtp-highlights-ma) [class*=module-highlights-item]:first-child {
    margin-left: auto;
  }
  .vtp-gwb .vtp-highlights:not(.vtp-highlights-ma) [class*=module-highlights-item]:last-child {
    margin-right: auto;
  }
}
.vtp-highlights [class*=module-highlights-item] {
  *zoom: 1;
  float: left;
  clear: none;
  width: 9.85525%;
  margin-left: 0;
  margin-right: 2.994%;
  position: relative;
  margin-bottom: 48px !important;
}
.vtp-highlights [class*=module-highlights-item]:before, .vtp-highlights [class*=module-highlights-item]:after {
  content: "";
  display: table;
}
.vtp-highlights [class*=module-highlights-item]:after {
  clear: both;
}
.vtp-highlights [class*=module-highlights-item]:nth-of-type(n) {
  margin-right: 2.994%;
  float: left;
  clear: none;
}
.vtp-highlights [class*=module-highlights-item]:nth-of-type(8n) {
  margin-right: 0;
  float: right;
}
.vtp-highlights [class*=module-highlights-item]:nth-of-type(8n + 1) {
  clear: both;
}
@media only screen and (max-width: 940px) {
  .vtp-highlights [class*=module-highlights-item] {
    float: left;
    clear: none;
    width: 22.7045%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(8n) {
    margin-right: 2.994%;
    float: left;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(8n + 1) {
    clear: none;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(n) {
    margin-right: 2.994%;
    float: left;
    clear: none;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(4n) {
    margin-right: 0;
    float: right;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(4n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-highlights [class*=module-highlights-item] {
    float: left;
    clear: none;
    width: 22.7045%;
    margin-left: 0;
    margin-right: 2.994%;
    margin-bottom: 35px !important;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(8n) {
    margin-right: 2.994%;
    float: left;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(8n + 1) {
    clear: none;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(n) {
    margin-right: 2.994%;
    float: left;
    clear: none;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(4n) {
    margin-right: 0;
    float: right;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(4n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-highlights [class*=module-highlights-item] {
    float: left;
    clear: none;
    width: 31.2706666667%;
    margin-left: 0;
    margin-right: 2.994%;
    margin-bottom: 25px !important;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(4n) {
    margin-right: 2.994%;
    float: left;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(4n + 1) {
    clear: none;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(n) {
    margin-right: 2.994%;
    float: left;
    clear: none;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 320px) {
  .vtp-highlights [class*=module-highlights-item] {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(3n) {
    margin-right: 2.994%;
    float: left;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(3n + 1) {
    clear: none;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(n) {
    margin-right: 2.994%;
    float: left;
    clear: none;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(2n + 1) {
    clear: both;
  }
}
@media print {
  .vtp-highlights [class*=module-highlights-item] {
    float: left;
    clear: none;
    width: 31.2706666667%;
    margin-left: 0;
    margin-right: 2.994%;
    text-align: left;
    margin-bottom: 30px !important;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(4n) {
    margin-right: 2.994%;
    float: left;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(4n + 1) {
    clear: none;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(n) {
    margin-right: 2.994%;
    float: left;
    clear: none;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .vtp-highlights [class*=module-highlights-item]:nth-of-type(3n + 1) {
    clear: both;
  }
}
.vtp-highlights [class*=module-highlights-item] dl:before {
  margin-bottom: 40px;
}
.vtp-highlights [class*=module-highlights-item] dt {
  margin-top: 6px;
  font-weight: 400;
}
@media print {
  .vtp-highlights [class*=module-highlights-item] dt {
    margin-top: 0;
  }
}
.vtp-highlights [class*=module-highlights-item] dd {
  font-weight: 700;
}
@media print {
  .vtp-highlights [class*=module-highlights-item] dd {
    float: left;
    width: 120px;
  }
}
.vtp-highlights [class*=module-highlights-item] .has-info {
  display: block;
  padding-right: 0;
}
.vtp-highlights [class*=module-highlights-item] .has-info:after {
  top: -64px;
  right: -8px;
}
@media only screen and (max-width: 940px) {
  .vtp-highlights [class*=module-highlights-item] .has-info:after {
    right: -16px;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-highlights [class*=module-highlights-item] .has-info:after {
    right: 16px;
  }
}
.vtp-highlights [class*=module-highlights-item] .tile {
  display: table;
  position: relative;
  height: 45px;
  width: 45px;
  left: 50%;
  margin-left: -22.5px;
  background-repeat: no-repeat;
  background-size: 45px 45px;
}
@media print {
  .vtp-highlights [class*=module-highlights-item] .tile {
    left: 0;
    margin-left: 0 !important;
    float: left;
    margin-right: 20px;
    height: 80px;
  }
}
.vtp-highlights [class*=module-highlights-item] .tile + dt {
  margin-top: 11px;
}
@media print {
  .vtp-highlights [class*=module-highlights-item] .tile + dt {
    margin-top: 0;
  }
}
.vtp-highlights [class*=module-highlights-item]:before {
  content: "";
  height: 50px !important;
  left: 50%;
  position: relative;
}
@media print {
  .vtp-highlights [class*=module-highlights-item]:before {
    float: left;
    left: 0;
    margin-right: 20px;
  }
}
.vtp-highlights [class*=module-highlights-item] .vtp-brand {
  white-space: nowrap;
}
.vtp-highlights .module-highlights-item-transmission:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -6323px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-transmission:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-transmission:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-registration:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -1372px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-registration:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-registration:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-prev-owners:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -1097px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-prev-owners:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-prev-owners:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-availability:before,
.vtp-highlights .module-highlights-item-availability-wdw:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -162px;
  background-repeat: no-repeat;
  width: 49px;
  height: 45px;
  margin-left: -24.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-availability:before,
  .vtp-highlights .module-highlights-item-availability-wdw:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-availability:before,
  .vtp-highlights .module-highlights-item-availability-wdw:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-availability i.vtp-icon-i,
.vtp-highlights .module-highlights-item-availability-wdw i.vtp-icon-i {
  position: absolute;
  right: 0;
  top: -12px;
}
.vtp-highlights .module-highlights-item-car-type:before,
.vtp-highlights .module-highlights-item-car-type-wdw:before,
.vtp-highlights .module-highlights-item-prev-use:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -1207px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-car-type:before,
  .vtp-highlights .module-highlights-item-car-type-wdw:before,
  .vtp-highlights .module-highlights-item-prev-use:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-car-type:before,
  .vtp-highlights .module-highlights-item-car-type-wdw:before,
  .vtp-highlights .module-highlights-item-prev-use:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-mileage:before,
.vtp-highlights .module-highlights-item-mileage-wdw:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -987px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-mileage:before,
  .vtp-highlights .module-highlights-item-mileage-wdw:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-mileage:before,
  .vtp-highlights .module-highlights-item-mileage-wdw:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-fuel:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -877px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-fuel:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-fuel:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-voucher:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -1482px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-voucher:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-voucher:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-ps:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -1262px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-ps:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-ps:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-consumption:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -437px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-consumption:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-consumption:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-electric-range:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -657px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-electric-range:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-electric-range:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-electrical-consumption:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -712px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-electrical-consumption:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-electrical-consumption:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-displacement:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -492px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-displacement:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-displacement:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-next-hu:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -1042px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-next-hu:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-next-hu:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-aaa-minimal:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -7040px;
  background-repeat: no-repeat;
  width: 100px;
  height: 64px;
  margin-left: -50px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-aaa-minimal:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-aaa-minimal:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-shaken:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -6552px;
  background-repeat: no-repeat;
  width: 58px;
  height: 58px;
  margin-left: -29px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-shaken:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-shaken:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-warranty:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -1537px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-warranty:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-warranty:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-5fj-warranty:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -7201px;
  background-repeat: no-repeat;
  width: 60px;
  height: 79px;
  margin-left: -30px;
  height: 79px !important;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-5fj-warranty:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-5fj-warranty:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-5fj-warranty dd, .vtp-highlights .module-highlights-item-5fj-warranty dt {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.vtp-highlights .module-highlights-item-5fj-warranty dd.focusable:active, .vtp-highlights .module-highlights-item-5fj-warranty dd.focusable:focus, .vtp-highlights .module-highlights-item-5fj-warranty dt.focusable:active, .vtp-highlights .module-highlights-item-5fj-warranty dt.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.vtp-highlights .module-highlights-aaa:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3252px;
  background-repeat: no-repeat;
  width: 221px;
  height: 30px;
  margin-left: -110.5px;
  height: 30px !important;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-aaa:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-aaa:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-aaa dd, .vtp-highlights .module-highlights-aaa dt {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.vtp-highlights .module-highlights-aaa dd.focusable:active, .vtp-highlights .module-highlights-aaa dd.focusable:focus, .vtp-highlights .module-highlights-aaa dt.focusable:active, .vtp-highlights .module-highlights-aaa dt.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.vtp-highlights .module-highlights-item-drivetrain:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -6103px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-drivetrain:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-drivetrain:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-audi-plus:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -1592px;
  background-repeat: no-repeat;
  width: 82px;
  height: 54px;
  margin-left: -41px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-audi-plus:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-audi-plus:before {
    margin-left: -36px;
  }
}
.vtp-highlights .module-highlights-item-seatcover:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px 0px;
  background-repeat: no-repeat;
  width: 32px;
  height: 42px;
  margin-left: -16px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-seatcover:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-seatcover:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-efficiency:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -547px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-efficiency:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-efficiency:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-acceleration:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -52px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-acceleration:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-acceleration:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-calendar-ma:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -217px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-calendar-ma:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-calendar-ma:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-car-handover-ma:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -272px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-car-handover-ma:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-car-handover-ma:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-charging-station-ma:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -327px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-charging-station-ma:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-charging-station-ma:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-charging-station-voucher-ma:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -382px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-charging-station-voucher-ma:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-charging-station-voucher-ma:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-electric-range-ma:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -602px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-electric-range-ma:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-electric-range-ma:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-fuel-station-ma:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -767px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-fuel-station-ma:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-fuel-station-ma:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-fuel-station-voucher-ma:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -822px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-fuel-station-voucher-ma:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-fuel-station-voucher-ma:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-mileage-ma:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -932px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-mileage-ma:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-mileage-ma:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-power-ma:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -1152px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-power-ma:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-power-ma:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-quattro-ma:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -1317px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-quattro-ma:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-quattro-ma:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-transmission-ma:before {
  background-image: url(../images/sprite-detailpage.png);
  background-position: 0px -1427px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-highlights .module-highlights-item-transmission-ma:before {
    background-size: 82px 1646px;
    background-image: url(../images/sprite-detailpage@2x.png);
  }
}
@media print {
  .vtp-highlights .module-highlights-item-transmission-ma:before {
    margin-left: 0;
  }
}
.vtp-highlights .module-highlights-item-interior-color:before {
  display: none;
}
.vtp-highlights .module-highlights-item-exterior-color:before {
  display: none;
}

.vtp-dealer-info {
  padding: 0 !important;
  margin-top: 12px;
  margin-top: 1rem;
  padding-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.vtp-dealer-info.vtp-mobile-accordion h3 {
  position: absolute;
  left: 4.5%;
  top: 50px;
  z-index: 100;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .vtp-dealer-info.vtp-mobile-accordion h3 {
    position: relative;
    top: 0;
    left: 0;
  }
}
.vtp-dealer-info .container {
  padding: 0;
}
.vtp-dealer-info .content {
  padding: 0 !important;
}
.vtp-dealer-info .vtp-maps {
  height: 500px;
  overflow: hidden;
  background: #f4f4f4;
}
@media only screen and (max-width: 767px) {
  .vtp-dealer-info .vtp-maps {
    position: relative;
    padding-bottom: 30.64%;
    height: 0;
  }
  .vtp-dealer-info .vtp-maps > iframe,
  .vtp-dealer-info .vtp-maps .google-maps {
    position: absolute;
    top: 0;
    left: 0;
  }
  .vtp-dealer-info .vtp-maps #map-canvas {
    width: 100%;
    height: 100%;
  }
  .vtp-dealer-info .vtp-maps #map-canvas img {
    max-width: 256px !important;
  }
}
@media only screen and (max-width: 567px) {
  .vtp-dealer-info .vtp-maps {
    padding-bottom: 62.5%;
  }
}
.vtp-dealer-info .vtp-maps h1 {
  position: absolute;
  z-index: 100;
  top: 2em;
  left: 2em;
}
.vtp-dealer-info .vtp-maps > iframe,
.vtp-dealer-info .vtp-maps .google-maps {
  width: 100%;
  height: 100%;
}
.vtp-dealer-info .vtp-maps #map-canvas {
  width: 100%;
  height: 100%;
}
.vtp-dealer-info .vtp-maps #map-canvas img {
  max-width: 256px !important;
}
.vtp-dealer-info .gm-style {
  font-family: Verdana, sans-serif;
  font-size: 12px;
}
.vtp-dealer-info .gmnoprint {
  width: auto !important;
}
.vtp-dealer-info .vtp-dealer-info-box {
  width: 360px;
  padding: 30px;
  background-color: #fff;
}
.vtp-dealer-info .vtp-dealer-info-box p a {
  border: 0;
  color: inherit;
  font-size: inherit;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .vtp-dealer-info .vtp-dealer-info-box {
    width: 100%;
  }
}
.vtp-dealer-info .vtp-dealer-info-box.wide {
  width: 560px;
}
.vtp-dealer-info .vtp-dealer-info-box.wide .name {
  margin-bottom: 1.5em;
}
.vtp-dealer-info .vtp-dealer-info-box.wide .span-1-2 {
  float: left;
  clear: none;
  width: 49.9%;
  margin-left: 0;
  margin-right: 0;
  padding-right: 30px;
  border-right: 1px solid #ccc;
}
.vtp-dealer-info .vtp-dealer-info-box.wide .span-1-2 + .span-1-2 {
  margin-left: -1px;
  padding-left: 20px;
  padding-right: 0;
  border-right: 0;
  border-left: 1px solid #ccc;
}
@media only screen and (max-width: 767px) {
  .vtp-dealer-info .vtp-dealer-info-box.wide {
    width: 100%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-dealer-info .vtp-dealer-info-box.wide .span-1-2 {
    float: left;
    clear: none;
    width: 99.8%;
    margin-left: 0;
    margin-right: 0;
    padding-right: 0;
    border: 0;
  }
  .vtp-dealer-info .vtp-dealer-info-box.wide .span-1-2 + .span-1-2 {
    margin-top: 2rem;
    margin-left: 0;
    padding: 0;
    border: 0;
  }
}

.vtp-dealer-info-container-print {
  display: none;
}
@media print {
  .vtp-dealer-info-container-print {
    display: block !important;
  }
  .vtp-dealer-info-container-print .container {
    padding-top: 36px;
    padding-top: 3rem;
    border-top: 1px solid #828282;
  }
  .vtp-dealer-info-container-print .vtp-dealer-info-box {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    border-bottom: 1px solid #828282;
  }
  .vtp-dealer-info-container-print .info-box-col {
    width: 100% !important;
  }
  .vtp-dealer-info-container-print .info-box-col-inner {
    width: 100% !important;
  }
  .vtp-dealer-info-container-print .vtp-icon-dealerinfo {
    display: none;
  }
  .vtp-dealer-info-container-print a {
    text-decoration: none;
    padding-left: 0 !important;
  }
  .vtp-dealer-info-container-print a:before {
    background-image: none !important;
  }
  .vtp-dealer-info-container-print .vtp-modal-link-impressum {
    display: none !important;
  }
  .vtp-dealer-info-container-print .vtp-modal.dealer-imprint {
    max-width: 100% !important;
    padding: 0 !important;
    padding-top: 40px;
  }
  .vtp-dealer-info-container-print .vtp-modal {
    display: block;
  }
}

@media print {
  .vtp-dealer-info-container {
    display: none;
  }
}
.vtp-dealer-info-container + .vtp-section.seperated .container:before {
  border: 0;
}

.lt-ie9 .vtp-dealer-info .vtp-dealer-info-box.wide .span-1-2 {
  padding-right: 0;
  border: 0;
}
.lt-ie9 .vtp-dealer-info .vtp-dealer-info-box.wide .span-1-2 + .span-1-2 {
  padding-left: 0;
  border: 0;
}

.vtp-dealer-info-overlay {
  height: 0;
  -webkit-transition: height 0.3s ease-out;
  -o-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out;
}
.vtp-dealer-info-overlay.no-animation {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.vtp-maps .vtp-dealer-info-box .additional-info {
  max-height: 290px;
  overflow: auto;
}

.vtp-dealer-info-box .type {
  padding-bottom: 0.3rem;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
}
.vtp-dealer-info-box .name {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.3;
}
.vtp-dealer-info-box .name + * {
  margin-top: 6px;
}
.vtp-dealer-info-box .vtp-btn, .vtp-dealer-info-box .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-dealer-info-box .vtp-btn {
  margin-top: 25px;
}
.vtp-dealer-info-box .vtp-links, .vtp-dealer-info-box .vtp-footer .footer-links, .vtp-footer .vtp-dealer-info-box .footer-links {
  padding-top: 30px;
  padding-bottom: 12px;
}
.vtp-dealer-info-box .vtp-links li + li, .vtp-dealer-info-box .vtp-footer .footer-links li + li, .vtp-footer .vtp-dealer-info-box .footer-links li + li {
  padding-top: 8px;
}

.vtp-container > section.vtp-dealer-info-no-map {
  padding-top: 48px;
  padding-top: 4rem;
  margin-top: 24px;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .vtp-container > section.vtp-dealer-info-no-map {
    padding-top: 0;
    padding-top: 0;
    margin-top: 0;
    margin-top: 0;
  }
}

.vtp-dealer-info-no-map p a {
  text-decoration: none;
}
.vtp-dealer-info-no-map .vtp-dealer-info-overlay {
  height: auto;
  overflow: visible;
}
.vtp-dealer-info-no-map .vtp-dealer-info-box + .vtp-dealer-info-box {
  margin-top: 48px;
  margin-top: 4rem;
}
.vtp-dealer-info-no-map .vtp-dealer-info-box * + .additional-info {
  padding-top: 9.5px;
}
.vtp-dealer-info-no-map .vtp-dealer-info-box .additional-info,
.vtp-dealer-info-no-map .vtp-dealer-info-box .additional-info p {
  font-size: inherit;
}
.vtp-dealer-info-no-map .vtp-dealer-info-box .name {
  line-height: 20px;
  margin-top: 0;
  margin-bottom: 0;
}
.vtp-dealer-info-no-map .vtp-dealer-info-box .vtp-links, .vtp-dealer-info-no-map .vtp-dealer-info-box .vtp-footer .footer-links, .vtp-footer .vtp-dealer-info-no-map .vtp-dealer-info-box .footer-links {
  padding-top: 0;
}
.vtp-dealer-info-no-map .vtp-dealer-info-box .info-box-col {
  float: left;
  clear: none;
  width: 48.403%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-dealer-info-no-map .vtp-dealer-info-box .info-box-col:last-child {
  margin-right: 0;
}
.vtp-dealer-info-no-map .vtp-dealer-info-box .info-box-col-inner {
  float: left;
  clear: none;
  width: 46.906%;
  margin-left: 0;
  margin-right: 5.988%;
}
.vtp-dealer-info-no-map .vtp-dealer-info-box .info-box-col-inner:last-child {
  margin-right: 0;
}
.vtp-dealer-info-no-map .vtp-dealer-info-box .info-box-col-inner.offset-top {
  padding-top: 18px;
  padding-top: 1.5rem;
}
.vtp-dealer-info-no-map .vtp-dealer-info-box .info-box-col-inner.image {
  text-align: center;
}
@media only screen and (max-width: 800px) {
  .vtp-dealer-info-no-map .vtp-dealer-info-box .info-box-col-inner {
    float: left;
    clear: none;
    width: 99.8%;
    margin-left: 0;
    margin-right: 2.994%;
    padding-bottom: 18px;
    padding-bottom: 1.5rem;
    padding-top: 0 !important;
  }
  .vtp-dealer-info-no-map .vtp-dealer-info-box .info-box-col-inner:nth-of-type(n) {
    margin-right: 2.994%;
    float: left;
    clear: none;
  }
  .vtp-dealer-info-no-map .vtp-dealer-info-box .info-box-col-inner:nth-of-type(1n) {
    margin-right: 0;
    float: right;
  }
  .vtp-dealer-info-no-map .vtp-dealer-info-box .info-box-col-inner:nth-of-type(1n + 1) {
    clear: both;
  }
  .vtp-dealer-info-no-map .vtp-dealer-info-box .info-box-col-inner.image {
    text-align: left;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-dealer-info-no-map .vtp-dealer-info-box .info-box-col {
    float: left;
    clear: none;
    width: 99.8%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-dealer-info-no-map .vtp-dealer-info-box .info-box-col:nth-of-type(n) {
    margin-right: 2.994%;
    float: left;
    clear: none;
  }
  .vtp-dealer-info-no-map .vtp-dealer-info-box .info-box-col:nth-of-type(1n) {
    margin-right: 0;
    float: right;
  }
  .vtp-dealer-info-no-map .vtp-dealer-info-box .info-box-col:nth-of-type(1n + 1) {
    clear: both;
  }
}

@media only screen and (max-width: 767px) {
  .vtp-dealer-info {
    margin-top: 0;
  }
  .vtp-dealer-info-no-map {
    border-top: 0;
  }
}
.infowindow-content {
  display: block;
  min-width: 400px;
}

.BMap_pop .BMap_top {
  height: 0 !important;
  border-top: 0 !important;
}

.BMap_pop .BMap_center {
  height: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
}

.BMap_pop .BMap_bottom {
  height: 0 !important;
  border-bottom: 0 !important;
}

.BMap_pop > div > div {
  height: 0 !important;
  border: 0 !important;
}

.BMap_pop > img {
  display: none !important;
}

.BMap_shadow {
  display: none !important;
}

.vtp-modal.dealer-imprint {
  margin: 0 auto;
  padding: 40px 4%;
}
@media only screen and (max-width: 1023px) {
  .vtp-modal.dealer-imprint {
    margin: 0 12%;
    padding: 40px 8%;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-modal.dealer-imprint {
    padding: 40px 4%;
    margin: 0;
  }
}
.vtp-modal.dealer-imprint .h3, .vtp-modal.dealer-imprint .lead, .vtp-modal.dealer-imprint .vtp-modals dt, .vtp-modals .vtp-modal.dealer-imprint dt, .vtp-modal.dealer-imprint .vtp-range-slider .slider-label, .vtp-range-slider .vtp-modal.dealer-imprint .slider-label, .vtp-modal.dealer-imprint .vtp-dealer-info-box .name, .vtp-dealer-info-box .vtp-modal.dealer-imprint .name {
  margin-top: 34px;
  margin-bottom: 18px;
  font-size: 26px;
}
@media only screen and (max-width: 567px) {
  .vtp-modal.dealer-imprint .h3, .vtp-modal.dealer-imprint .lead, .vtp-modal.dealer-imprint .vtp-modals dt, .vtp-modals .vtp-modal.dealer-imprint dt, .vtp-modal.dealer-imprint .vtp-range-slider .slider-label, .vtp-range-slider .vtp-modal.dealer-imprint .slider-label, .vtp-modal.dealer-imprint .vtp-dealer-info-box .name, .vtp-dealer-info-box .vtp-modal.dealer-imprint .name {
    font-size: 18px;
  }
}
.vtp-modal.dealer-imprint h5 {
  margin-top: 4px;
  font-size: 12px;
  padding-right: 50%;
}
@media only screen and (max-width: 567px) {
  .vtp-modal.dealer-imprint h5 {
    padding-right: 0;
  }
}
.vtp-modal.dealer-imprint h6 {
  margin-top: 25px;
  font-size: 12px;
}
.vtp-modal.dealer-imprint .copy-text, .vtp-modal.dealer-imprint .vtp-features .content, .vtp-features .vtp-modal.dealer-imprint .content, .vtp-modal.dealer-imprint .vtp-technical-data .content, .vtp-technical-data .vtp-modal.dealer-imprint .content, .vtp-modal.dealer-imprint .vtp-consumption .content, .vtp-consumption .vtp-modal.dealer-imprint .content {
  margin-bottom: 4em;
}
.vtp-modal.dealer-imprint .dealer-imprint-info {
  *zoom: 1;
  margin-bottom: 4em;
}
.vtp-modal.dealer-imprint .dealer-imprint-info:before, .vtp-modal.dealer-imprint .dealer-imprint-info:after {
  content: "";
  display: table;
}
.vtp-modal.dealer-imprint .dealer-imprint-info:after {
  clear: both;
}
.vtp-modal.dealer-imprint .dealer-imprint-info .copy-text, .vtp-modal.dealer-imprint .dealer-imprint-info .vtp-features .content, .vtp-features .vtp-modal.dealer-imprint .dealer-imprint-info .content, .vtp-modal.dealer-imprint .dealer-imprint-info .vtp-technical-data .content, .vtp-technical-data .vtp-modal.dealer-imprint .dealer-imprint-info .content, .vtp-modal.dealer-imprint .dealer-imprint-info .vtp-consumption .content, .vtp-consumption .vtp-modal.dealer-imprint .dealer-imprint-info .content {
  float: left;
  text-align: inherit;
  width: 50%;
  margin-left: 0%;
  margin-right: 0%;
  padding-right: 30px;
}
.vtp-modal.dealer-imprint .dealer-imprint-info .copy-text p, .vtp-modal.dealer-imprint .dealer-imprint-info .vtp-features .content p, .vtp-features .vtp-modal.dealer-imprint .dealer-imprint-info .content p, .vtp-modal.dealer-imprint .dealer-imprint-info .vtp-technical-data .content p, .vtp-technical-data .vtp-modal.dealer-imprint .dealer-imprint-info .content p, .vtp-modal.dealer-imprint .dealer-imprint-info .vtp-consumption .content p, .vtp-consumption .vtp-modal.dealer-imprint .dealer-imprint-info .content p {
  font-size: 12px;
}
@media only screen and (max-width: 567px) {
  .vtp-modal.dealer-imprint .dealer-imprint-info .copy-text, .vtp-modal.dealer-imprint .dealer-imprint-info .vtp-features .content, .vtp-features .vtp-modal.dealer-imprint .dealer-imprint-info .content, .vtp-modal.dealer-imprint .dealer-imprint-info .vtp-technical-data .content, .vtp-technical-data .vtp-modal.dealer-imprint .dealer-imprint-info .content, .vtp-modal.dealer-imprint .dealer-imprint-info .vtp-consumption .content, .vtp-consumption .vtp-modal.dealer-imprint .dealer-imprint-info .content {
    float: none;
    width: 100%;
  }
}
.vtp-modal.dealer-imprint .dealer-imprint-imprint {
  border-top: 1px solid #ccc;
  margin-top: 45px;
  padding-top: 44px;
}

.vtp-pagination {
  display: block;
  padding-top: 50px;
  padding-bottom: 50px;
}
.vtp-pagination > div:first-child {
  float: right;
  text-align: right;
}
.vtp-pagination .vtp-btn.back, .vtp-pagination .vtp-compare-bar.compare-enabled .action-holder .back.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-pagination .back.vtp-btn {
  margin-right: 20px;
}
@media only screen and (max-width: 568px) {
  .vtp-pagination {
    padding-top: 30px;
    padding-bottom: 15px;
  }
  .vtp-pagination .btn-back {
    float: left;
    margin-right: 20px;
  }
  .vtp-pagination .vtp-backlink {
    float: none;
    margin-top: 15px;
    display: block;
  }
}

.vtp-media-teaser .row,
.vtp-warranty .row {
  margin: 24px 0;
  margin: 2rem 0;
}
.vtp-media-teaser .row > aside,
.vtp-media-teaser .row > div,
.vtp-warranty .row > aside,
.vtp-warranty .row > div {
  float: left;
  clear: none;
  width: 48.403%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-media-teaser .row > aside:last-child,
.vtp-media-teaser .row > div:last-child,
.vtp-warranty .row > aside:last-child,
.vtp-warranty .row > div:last-child {
  margin-right: 0;
}
.vtp-media-teaser .row > aside:first-child,
.vtp-media-teaser .row > div:first-child,
.vtp-warranty .row > aside:first-child,
.vtp-warranty .row > div:first-child {
  margin-bottom: 24px;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 660px) {
  .vtp-media-teaser .row > aside,
  .vtp-media-teaser .row > div,
  .vtp-warranty .row > aside,
  .vtp-warranty .row > div {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-media-teaser .row > aside:first-child,
  .vtp-media-teaser .row > div:first-child,
  .vtp-warranty .row > aside:first-child,
  .vtp-warranty .row > div:first-child {
    margin-left: auto;
  }
  .vtp-media-teaser .row > aside:last-child,
  .vtp-media-teaser .row > div:last-child,
  .vtp-warranty .row > aside:last-child,
  .vtp-warranty .row > div:last-child {
    margin-right: auto;
  }
}
.vtp-media-teaser .vtp-checklist .vtp-btn, .vtp-media-teaser .vtp-checklist .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-media-teaser .vtp-checklist .vtp-btn,
.vtp-warranty .vtp-checklist .vtp-btn,
.vtp-warranty .vtp-checklist .vtp-compare-bar.compare-enabled .action-holder .vtp-btn,
.vtp-compare-bar.compare-enabled .action-holder .vtp-warranty .vtp-checklist .vtp-btn {
  margin-top: 12px;
  margin-top: 1rem;
}
.vtp-media-teaser .vtp-warranty-sources,
.vtp-warranty .vtp-warranty-sources {
  margin-bottom: 24px;
  margin-bottom: 2rem;
}
.vtp-media-teaser .print-only,
.vtp-warranty .print-only {
  display: none;
}
@media print {
  .vtp-media-teaser,
  .vtp-warranty {
    padding-bottom: 0;
  }
  .vtp-media-teaser footer,
  .vtp-warranty footer {
    padding-top: 0 !important;
  }
  .vtp-media-teaser .container,
  .vtp-warranty .container {
    border-top: 1px solid #828282;
    padding-top: 36px;
    padding-top: 3rem;
  }
  .vtp-media-teaser .print-only,
  .vtp-warranty .print-only {
    display: block;
  }
  .vtp-media-teaser a:after,
  .vtp-warranty a:after {
    display: none;
  }
  .vtp-media-teaser .vtp-videoplayer,
  .vtp-warranty .vtp-videoplayer {
    display: none;
  }
}

.vtp-financing-calculator {
  padding: 20px 4% 20px;
}
@media only screen and (max-width: 568px) {
  .vtp-financing-calculator .stack-m {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-financing-calculator .stack-m:first-child {
    margin-left: auto;
  }
  .vtp-financing-calculator .stack-m:last-child {
    margin-right: auto;
  }
}
.vtp-financing-calculator .error {
  color: #c03;
}
.vtp-financing-calculator .transitionOut {
  top: 0;
  left: 0;
  position: absolute;
}
.vtp-financing-calculator #product-descriptions {
  position: relative;
}
.vtp-financing-calculator #product-descriptions .vtp-visible, .vtp-financing-calculator #product-descriptions .vtp-tooltip {
  -webkit-animation-duration: 200ms;
  -o-animation-duration: 200ms;
  animation-duration: 200ms;
}
.vtp-financing-calculator label {
  width: 100%;
}
.vtp-financing-calculator .vtp-tooltip li {
  margin: 3px 0;
  position: relative;
  padding-left: 12px;
  list-style-type: none;
}
.vtp-financing-calculator .vtp-tooltip li:before {
  content: "•";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.vtp-financing-calculator .h3, .vtp-financing-calculator .lead, .vtp-financing-calculator .vtp-modals dt, .vtp-modals .vtp-financing-calculator dt, .vtp-financing-calculator .vtp-range-slider .slider-label, .vtp-range-slider .vtp-financing-calculator .slider-label, .vtp-financing-calculator .vtp-dealer-info-box .name, .vtp-dealer-info-box .vtp-financing-calculator .name {
  line-height: 1.4;
  width: 100%;
  max-width: 600px;
}
.vtp-financing-calculator .vtp-btn.cancel, .vtp-financing-calculator .vtp-compare-bar.compare-enabled .action-holder .cancel.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-financing-calculator .cancel.vtp-btn {
  float: left;
}
.vtp-financing-calculator fieldset {
  margin-top: 2em;
  margin-bottom: 1em;
}
.vtp-financing-calculator .vtp-products-select-list {
  margin-bottom: 2em;
}
.vtp-financing-calculator .vtp-products-select-list label {
  margin-right: 1.4em;
}
.vtp-financing-calculator footer {
  padding-top: 4em;
  padding-right: 1em;
  font-family: Verdana, sans-serif;
  font-size: 10px;
}
.vtp-financing-calculator footer a {
  text-decoration: underline;
  font-size: 10px;
}
@media only screen and (max-width: 767px) {
  .vtp-financing-calculator label {
    top: 0;
    display: inline-block;
  }
  .vtp-financing-calculator label i {
    position: absolute;
    top: 0;
    right: 0;
  }
  .vtp-financing-calculator .vtp-tooltip {
    left: auto;
    right: 0;
  }
}
@media only screen and (min-width: 767px) {
  .vtp-financing-calculator input {
    max-width: 250px;
  }
  .vtp-financing-calculator label {
    width: auto;
  }
  .vtp-financing-calculator .value {
    width: 250px;
  }
  .vtp-financing-calculator .value:after {
    content: " ";
    display: inline-block;
    height: 20px;
    width: 1px;
  }
}
@media only screen and (min-width: 568px) {
  .vtp-financing-calculator {
    padding-top: 70px;
  }
  .vtp-financing-calculator fieldset {
    margin-top: 4em;
    margin-bottom: 2em;
  }
  .vtp-financing-calculator .vtp-btn.cancel, .vtp-financing-calculator .vtp-compare-bar.compare-enabled .action-holder .cancel.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-financing-calculator .cancel.vtp-btn {
    float: none;
  }
  .vtp-financing-calculator .vtp-products-select-list {
    margin-bottom: 2em;
  }
}

.ie9 .vtp-financing-calculator label,
.lt-ie9 .vtp-financing-calculator label {
  width: auto;
}
.ie9 .vtp-financing-calculator input[type=number],
.ie9 .vtp-financing-calculator input[type=email],
.ie9 .vtp-financing-calculator input[type=text],
.lt-ie9 .vtp-financing-calculator input[type=number],
.lt-ie9 .vtp-financing-calculator input[type=email],
.lt-ie9 .vtp-financing-calculator input[type=text] {
  padding-top: 0;
  padding-bottom: 0;
  width: 250px;
}

.vtp-modal-form-fields .label {
  font-size: 12px;
  font-size: 1rem;
  line-height: 19.2px;
  line-height: 1.6rem;
  font-family: Verdana, sans-serif;
  font-weight: 700;
}
.vtp-modal-form-fields .label.vtp-form-info {
  margin-top: 10px;
  margin-top: 0.8333333333rem;
}
.vtp-modal-form-fields fieldset:after,
.vtp-modal-form-fields .fieldset:after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  border-top: 1px solid #d7dadb;
  margin: 24px 0;
  margin: 2rem 0;
}
.vtp-modal-form-fields fieldset.blank div:last-child, .vtp-modal-form-fields fieldset.vtp-form-resultlist div:last-child,
.vtp-modal-form-fields .fieldset.blank div:last-child,
.vtp-modal-form-fields .fieldset.vtp-form-resultlist div:last-child {
  margin-bottom: 0;
}
.vtp-modal-form-fields fieldset.blank:after, .vtp-modal-form-fields fieldset.vtp-form-resultlist:after,
.vtp-modal-form-fields .fieldset.blank:after,
.vtp-modal-form-fields .fieldset.vtp-form-resultlist:after {
  display: none;
}
.vtp-modal-form-fields fieldset.vtp-form-resultlist,
.vtp-modal-form-fields .fieldset.vtp-form-resultlist {
  margin-top: 48px;
  margin-top: 4rem;
}
.vtp-modal-form-fields fieldset.vtp-form-resultlist legend,
.vtp-modal-form-fields .fieldset.vtp-form-resultlist legend {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d7dadb;
  margin-bottom: 30px;
  margin-bottom: 2.5rem;
  padding-bottom: 5px;
  padding-bottom: 0.4166666667rem;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
}
.vtp-modal-form-fields fieldset.vtp-form-resultlist .control-group,
.vtp-modal-form-fields .fieldset.vtp-form-resultlist .control-group {
  margin-bottom: 0;
}
.vtp-modal-form-fields fieldset.vtp-form-resultlist label,
.vtp-modal-form-fields .fieldset.vtp-form-resultlist label {
  display: block;
  clear: both;
  float: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.vtp-modal-form-fields fieldset.vtp-form-resultlist label:first-child,
.vtp-modal-form-fields .fieldset.vtp-form-resultlist label:first-child {
  margin-left: auto;
}
.vtp-modal-form-fields fieldset.vtp-form-resultlist label:last-child,
.vtp-modal-form-fields .fieldset.vtp-form-resultlist label:last-child {
  margin-right: auto;
}
.vtp-modal-form-fields fieldset.vtp-form-resultlist .label,
.vtp-modal-form-fields .fieldset.vtp-form-resultlist .label {
  font-weight: 400;
  width: 100%;
  margin-bottom: 20px;
  margin-bottom: 1.6666666667rem;
}
.vtp-modal-form-fields fieldset.vtp-form-resultlist .label p,
.vtp-modal-form-fields .fieldset.vtp-form-resultlist .label p {
  margin: 0;
}
.vtp-modal-form-fields fieldset.vtp-form-resultlist .label p.vtp-result-title,
.vtp-modal-form-fields .fieldset.vtp-form-resultlist .label p.vtp-result-title {
  font-weight: 700;
}
.vtp-modal-form-fields fieldset.vtp-form-resultlist label:last-child,
.vtp-modal-form-fields .fieldset.vtp-form-resultlist label:last-child {
  margin-bottom: 0;
}
.vtp-modal-form-fields .control-group,
.vtp-modal-form-fields .text-group {
  *zoom: 1;
  margin-bottom: 20px;
  margin-bottom: 1.6666666667rem;
}
.vtp-modal-form-fields .control-group:before, .vtp-modal-form-fields .control-group:after,
.vtp-modal-form-fields .text-group:before,
.vtp-modal-form-fields .text-group:after {
  content: "";
  display: table;
}
.vtp-modal-form-fields .control-group:after,
.vtp-modal-form-fields .text-group:after {
  clear: both;
}
@media only screen and (max-width: 660px) {
  .vtp-modal-form-fields .control-group.unstack-primary-controls > .label,
  .vtp-modal-form-fields .text-group.unstack-primary-controls > .label {
    margin-bottom: -5px;
    margin-bottom: -0.4166666667rem;
  }
}
.vtp-modal-form-fields .control-group.unstack-primary-controls .controls > label,
.vtp-modal-form-fields .control-group.unstack-primary-controls .controls > .label,
.vtp-modal-form-fields .text-group.unstack-primary-controls .controls > label,
.vtp-modal-form-fields .text-group.unstack-primary-controls .controls > .label {
  margin-bottom: 0;
}
@media only screen and (max-width: 660px) {
  .vtp-modal-form-fields .control-group.unstack-primary-controls .controls > label,
  .vtp-modal-form-fields .control-group.unstack-primary-controls .controls > .label,
  .vtp-modal-form-fields .text-group.unstack-primary-controls .controls > label,
  .vtp-modal-form-fields .text-group.unstack-primary-controls .controls > .label {
    margin-top: 10px;
    margin-top: 0.8333333333rem;
  }
}
.vtp-modal-form-fields .control-group > label,
.vtp-modal-form-fields .control-group > .label,
.vtp-modal-form-fields .text-group > label,
.vtp-modal-form-fields .text-group > .label {
  float: left;
  clear: none;
  width: 28.6093333333%;
  margin-left: 0;
  margin-right: 6.986%;
  margin-bottom: 0;
}
.vtp-modal-form-fields .control-group > label:last-child,
.vtp-modal-form-fields .control-group > .label:last-child,
.vtp-modal-form-fields .text-group > label:last-child,
.vtp-modal-form-fields .text-group > .label:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 800px) {
  .vtp-modal-form-fields .control-group > label,
  .vtp-modal-form-fields .control-group > .label,
  .vtp-modal-form-fields .text-group > label,
  .vtp-modal-form-fields .text-group > .label {
    float: left;
    clear: none;
    width: 35.55375%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-modal-form-fields .control-group > label:last-child,
  .vtp-modal-form-fields .control-group > .label:last-child,
  .vtp-modal-form-fields .text-group > label:last-child,
  .vtp-modal-form-fields .text-group > .label:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 660px) {
  .vtp-modal-form-fields .control-group > label,
  .vtp-modal-form-fields .control-group > .label,
  .vtp-modal-form-fields .text-group > label,
  .vtp-modal-form-fields .text-group > .label {
    margin-bottom: 5px;
    margin-bottom: 0.4166666667rem;
  }
}
.vtp-modal-form-fields .control-group > label > label,
.vtp-modal-form-fields .control-group > .label > label,
.vtp-modal-form-fields .text-group > label > label,
.vtp-modal-form-fields .text-group > .label > label {
  margin-bottom: 0;
}
.vtp-modal-form-fields .control-group > .controls,
.vtp-modal-form-fields .text-group > .controls {
  *zoom: 1;
  float: left;
  clear: none;
  width: 46.407%;
  margin-left: 0;
  margin-right: 6.986%;
}
.vtp-modal-form-fields .control-group > .controls:before, .vtp-modal-form-fields .control-group > .controls:after,
.vtp-modal-form-fields .text-group > .controls:before,
.vtp-modal-form-fields .text-group > .controls:after {
  content: "";
  display: table;
}
.vtp-modal-form-fields .control-group > .controls:after,
.vtp-modal-form-fields .text-group > .controls:after {
  clear: both;
}
.vtp-modal-form-fields .control-group > .controls:last-child,
.vtp-modal-form-fields .text-group > .controls:last-child {
  margin-right: 0;
}
.vtp-modal-form-fields .control-group > .controls.no-label,
.vtp-modal-form-fields .text-group > .controls.no-label {
  float: left;
  clear: none;
  width: 46.407%;
  margin-left: 35.5953333333%;
  margin-right: 6.986%;
}
.vtp-modal-form-fields .control-group > .controls.no-label:last-child,
.vtp-modal-form-fields .text-group > .controls.no-label:last-child {
  margin-right: 0;
}
.vtp-modal-form-fields .control-group > .controls.no-label.vtp-form-nav,
.vtp-modal-form-fields .text-group > .controls.no-label.vtp-form-nav {
  text-align: right;
  margin-top: 30px;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 800px) {
  .vtp-modal-form-fields .control-group > .controls,
  .vtp-modal-form-fields .text-group > .controls {
    float: left;
    clear: none;
    width: 61.25225%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-modal-form-fields .control-group > .controls:last-child,
  .vtp-modal-form-fields .text-group > .controls:last-child {
    margin-right: 0;
  }
  .vtp-modal-form-fields .control-group > .controls.no-label,
  .vtp-modal-form-fields .text-group > .controls.no-label {
    float: left;
    clear: none;
    width: 61.25225%;
    margin-left: 38.54775%;
    margin-right: 2.994%;
  }
  .vtp-modal-form-fields .control-group > .controls.no-label:last-child,
  .vtp-modal-form-fields .text-group > .controls.no-label:last-child {
    margin-right: 0;
  }
}
.vtp-modal-form-fields .control-group > .controls .text-field-row,
.vtp-modal-form-fields .text-group > .controls .text-field-row {
  *zoom: 1;
}
.vtp-modal-form-fields .control-group > .controls .text-field-row:before, .vtp-modal-form-fields .control-group > .controls .text-field-row:after,
.vtp-modal-form-fields .text-group > .controls .text-field-row:before,
.vtp-modal-form-fields .text-group > .controls .text-field-row:after {
  content: "";
  display: table;
}
.vtp-modal-form-fields .control-group > .controls .text-field-row:after,
.vtp-modal-form-fields .text-group > .controls .text-field-row:after {
  clear: both;
}
.vtp-modal-form-fields .control-group > .controls .split-input-large,
.vtp-modal-form-fields .text-group > .controls .split-input-large {
  float: left;
  clear: none;
  width: 68.6624%;
  margin-left: 0;
  margin-right: 3.992%;
  min-width: 0;
}
.vtp-modal-form-fields .control-group > .controls .split-input-large:nth-of-type(n),
.vtp-modal-form-fields .text-group > .controls .split-input-large:nth-of-type(n) {
  margin-right: 3.992%;
  float: left;
  clear: none;
}
.vtp-modal-form-fields .control-group > .controls .split-input-large:nth-of-type(2n),
.vtp-modal-form-fields .text-group > .controls .split-input-large:nth-of-type(2n) {
  margin-right: 0;
  float: right;
}
.vtp-modal-form-fields .control-group > .controls .split-input-large:nth-of-type(2n + 1),
.vtp-modal-form-fields .text-group > .controls .split-input-large:nth-of-type(2n + 1) {
  clear: both;
}
.vtp-modal-form-fields .control-group > .controls .split-input-medium,
.vtp-modal-form-fields .text-group > .controls .split-input-medium {
  float: left;
  clear: none;
  width: 27.1456%;
  margin-left: 0;
  margin-right: 3.992%;
  min-width: 0;
  padding-right: 0.8em;
}
.vtp-modal-form-fields .control-group > .controls .split-input-medium:last-child,
.vtp-modal-form-fields .text-group > .controls .split-input-medium:last-child {
  margin-right: 0;
}
.vtp-modal-form-fields .control-group > .controls .split-input-small,
.vtp-modal-form-fields .text-group > .controls .split-input-small {
  float: left;
  clear: none;
  width: 16.7664%;
  margin-left: 0;
  margin-right: 3.992%;
  min-width: 0;
  padding-right: 0.8em;
}
.vtp-modal-form-fields .control-group > .controls .split-input-small:last-child,
.vtp-modal-form-fields .text-group > .controls .split-input-small:last-child {
  margin-right: 0;
}
.vtp-modal-form-fields .control-group > .controls > div:last-of-type,
.vtp-modal-form-fields .control-group > .controls > label:last-of-type,
.vtp-modal-form-fields .control-group > .controls > div:last-child,
.vtp-modal-form-fields .text-group > .controls > div:last-of-type,
.vtp-modal-form-fields .text-group > .controls > label:last-of-type,
.vtp-modal-form-fields .text-group > .controls > div:last-child {
  margin-bottom: 0;
}
.vtp-modal-form-fields .control-group > .controls > label,
.vtp-modal-form-fields .control-group > .controls > .label,
.vtp-modal-form-fields .text-group > .controls > label,
.vtp-modal-form-fields .text-group > .controls > .label {
  margin-bottom: 20px;
  margin-bottom: 1.6666666667rem;
}
.vtp-modal-form-fields .control-group > .controls > div:last-child label,
.vtp-modal-form-fields .control-group > .controls > div:last-child .label,
.vtp-modal-form-fields .text-group > .controls > div:last-child label,
.vtp-modal-form-fields .text-group > .controls > div:last-child .label {
  margin-bottom: 0;
}
.vtp-modal-form-fields .control-group > .secondary-controls,
.vtp-modal-form-fields .text-group > .secondary-controls {
  padding-left: 65px;
  padding-left: 5.4166666667rem;
}
@media only screen and (max-width: 660px) {
  .vtp-modal-form-fields .control-group > .secondary-controls,
  .vtp-modal-form-fields .text-group > .secondary-controls {
    padding-left: 0;
  }
}
.vtp-modal-form-fields .control-group.stack > label,
.vtp-modal-form-fields .control-group.stack > .label,
.vtp-modal-form-fields .control-group.stack > .controls,
.vtp-modal-form-fields .control-group.stack > .controls.no-label,
.vtp-modal-form-fields .text-group.stack > label,
.vtp-modal-form-fields .text-group.stack > .label,
.vtp-modal-form-fields .text-group.stack > .controls,
.vtp-modal-form-fields .text-group.stack > .controls.no-label {
  display: block;
  clear: both;
  float: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.vtp-modal-form-fields .control-group.stack > label:first-child,
.vtp-modal-form-fields .control-group.stack > .label:first-child,
.vtp-modal-form-fields .control-group.stack > .controls:first-child,
.vtp-modal-form-fields .control-group.stack > .controls.no-label:first-child,
.vtp-modal-form-fields .text-group.stack > label:first-child,
.vtp-modal-form-fields .text-group.stack > .label:first-child,
.vtp-modal-form-fields .text-group.stack > .controls:first-child,
.vtp-modal-form-fields .text-group.stack > .controls.no-label:first-child {
  margin-left: auto;
}
.vtp-modal-form-fields .control-group.stack > label:last-child,
.vtp-modal-form-fields .control-group.stack > .label:last-child,
.vtp-modal-form-fields .control-group.stack > .controls:last-child,
.vtp-modal-form-fields .control-group.stack > .controls.no-label:last-child,
.vtp-modal-form-fields .text-group.stack > label:last-child,
.vtp-modal-form-fields .text-group.stack > .label:last-child,
.vtp-modal-form-fields .text-group.stack > .controls:last-child,
.vtp-modal-form-fields .text-group.stack > .controls.no-label:last-child {
  margin-right: auto;
}
.vtp-modal-form-fields .control-group.stack > .controls,
.vtp-modal-form-fields .text-group.stack > .controls {
  margin-bottom: 20px;
  margin-bottom: 1.6666666667rem;
}
.vtp-modal-form-fields .control-group.stack > .controls:last-child,
.vtp-modal-form-fields .text-group.stack > .controls:last-child {
  margin-bottom: 0;
}
.vtp-modal-form-fields .extras-group {
  margin-bottom: 24px;
  margin-bottom: 2rem;
  list-style-type: none;
}
.vtp-modal-form-fields .extras-group > label,
.vtp-modal-form-fields .extras-group > .label {
  float: left;
  clear: none;
  width: 64.2046666667%;
  margin-left: 0;
  margin-right: 6.986%;
}
.vtp-modal-form-fields .extras-group > label:last-child,
.vtp-modal-form-fields .extras-group > .label:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 800px) {
  .vtp-modal-form-fields .extras-group > label,
  .vtp-modal-form-fields .extras-group > .label {
    float: left;
    clear: none;
    width: 64.2046666667%;
    margin-left: 0;
    margin-right: 6.986%;
  }
  .vtp-modal-form-fields .extras-group > label:last-child,
  .vtp-modal-form-fields .extras-group > .label:last-child {
    margin-right: 0;
  }
}
.vtp-modal-form-fields .extras-group > .controls {
  float: left;
  clear: none;
  width: 28.6093333333%;
  margin-left: 0;
  margin-right: 6.986%;
  margin-right: 0;
  text-align: right;
}
.vtp-modal-form-fields .extras-group > .controls:last-child {
  margin-right: 0;
}
.vtp-modal-form-fields .extras-group p.label {
  margin-bottom: 24px;
  margin-bottom: 2rem;
}
.vtp-modal-form-fields .extras-group p.sup {
  margin-top: 24px;
  margin-top: 2rem;
  *zoom: 1;
}
.vtp-modal-form-fields .extras-group p.sup:before, .vtp-modal-form-fields .extras-group p.sup:after {
  content: "";
  display: table;
}
.vtp-modal-form-fields .extras-group p.sup:after {
  clear: both;
}
.vtp-modal-form-fields .extras-group p.warning {
  color: #c03;
}
.vtp-modal-form-fields .desktop .control-group .controls .radio-primary,
.vtp-modal-form-fields .desktop .control-group .controls .radio-primary + label,
.vtp-modal-form-fields .desktop .control-group .controls .checkbox-primary,
.vtp-modal-form-fields .desktop .control-group .controls .checkbox-primary + label {
  top: -5px;
}
@media only screen and (max-width: 660px) {
  .vtp-modal-form-fields .text-group > .label {
    margin-bottom: 0;
  }
  .vtp-modal-form-fields .text-group > .label.mobile-primary-label {
    margin-bottom: 30px;
    margin-bottom: 2.5rem;
  }
  .vtp-modal-form-fields .text-group.top-text-group {
    margin-bottom: 40px;
    margin-bottom: 3.3333333333rem;
  }
  .vtp-modal-form-fields .control-group > label,
  .vtp-modal-form-fields .control-group > .label,
  .vtp-modal-form-fields .control-group > .controls,
  .vtp-modal-form-fields .control-group > .controls.no-label,
  .vtp-modal-form-fields .text-group.mobile-stack > label,
  .vtp-modal-form-fields .text-group.mobile-stack > .label,
  .vtp-modal-form-fields .text-group.mobile-stack > .controls,
  .vtp-modal-form-fields .text-group.mobile-stack > .controls.no-label {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-modal-form-fields .control-group > label:first-child,
  .vtp-modal-form-fields .control-group > .label:first-child,
  .vtp-modal-form-fields .control-group > .controls:first-child,
  .vtp-modal-form-fields .control-group > .controls.no-label:first-child,
  .vtp-modal-form-fields .text-group.mobile-stack > label:first-child,
  .vtp-modal-form-fields .text-group.mobile-stack > .label:first-child,
  .vtp-modal-form-fields .text-group.mobile-stack > .controls:first-child,
  .vtp-modal-form-fields .text-group.mobile-stack > .controls.no-label:first-child {
    margin-left: auto;
  }
  .vtp-modal-form-fields .control-group > label:last-child,
  .vtp-modal-form-fields .control-group > .label:last-child,
  .vtp-modal-form-fields .control-group > .controls:last-child,
  .vtp-modal-form-fields .control-group > .controls.no-label:last-child,
  .vtp-modal-form-fields .text-group.mobile-stack > label:last-child,
  .vtp-modal-form-fields .text-group.mobile-stack > .label:last-child,
  .vtp-modal-form-fields .text-group.mobile-stack > .controls:last-child,
  .vtp-modal-form-fields .text-group.mobile-stack > .controls.no-label:last-child {
    margin-right: auto;
  }
}
.vtp-modal-form-fields .vtp-form-summary {
  margin-bottom: 20px;
  margin-bottom: 1.6666666667rem;
  font-size: 12px;
  font-size: 1rem;
  line-height: 19.2px;
  line-height: 1.6rem;
}
.vtp-modal-form-fields .vtp-form-summary p {
  margin: 0;
}
@media only screen and (max-width: 660px) {
  .vtp-modal-form-fields .vtp-form-summary p.label {
    margin-bottom: 0;
  }
}
.vtp-modal-form-fields .vtp-form-summary.top-summary {
  margin-bottom: 40px;
  margin-bottom: 3.3333333333rem;
}
@media only screen and (max-width: 660px) {
  .vtp-modal-form-fields .vtp-form-summary.top-summary {
    margin-bottom: 30px;
    margin-bottom: 2.5rem;
  }
}
.vtp-modal-form-fields .vtp-form-extras {
  font-weight: 700;
  list-style-type: none;
}
.vtp-modal-form-fields .vtp-form-extras li {
  margin: 1em 0;
}
.vtp-modal-form-fields .vtp-form-extras .price {
  float: right;
  font-weight: 400;
}
.vtp-modal-form-fields .control-group .controls label {
  font-weight: 400;
}
.vtp-modal-form-fields .checkbox-primary + label, .vtp-modal-form-fields .checkbox-primary + .label,
.vtp-modal-form-fields .radio-primary + label,
.vtp-modal-form-fields .radio-primary + .label {
  margin-top: 0;
}
.vtp-modal-form-fields .checkbox-primary.unstack + label, .vtp-modal-form-fields .checkbox-primary.unstack + .label,
.vtp-modal-form-fields .radio-primary.unstack + label,
.vtp-modal-form-fields .radio-primary.unstack + .label {
  min-width: 0;
  margin-right: 30px;
  margin-right: 2.5rem;
}
@media only screen and (max-width: 660px) {
  .vtp-modal-form-fields .checkbox-primary.unstack + label, .vtp-modal-form-fields .checkbox-primary.unstack + .label,
  .vtp-modal-form-fields .radio-primary.unstack + label,
  .vtp-modal-form-fields .radio-primary.unstack + .label {
    margin-right: 36px;
    margin-right: 3rem;
  }
}
.vtp-modal-form-fields .checkbox-primary.unstack + label:last-child, .vtp-modal-form-fields .checkbox-primary.unstack + .label:last-child,
.vtp-modal-form-fields .radio-primary.unstack + label:last-child,
.vtp-modal-form-fields .radio-primary.unstack + .label:last-child {
  margin-right: 0;
}
.vtp-modal-form-fields .vtp-form-nav {
  margin-top: 48px;
  margin-top: 4rem;
  text-align: right;
}
@media only screen and (max-width: 660px) {
  .vtp-modal-form-fields {
    padding: 20px 4%;
  }
  .vtp-modal-form-fields.collapse-content {
    padding: 48px 4% 20px 4%;
    display: none;
  }
  .vtp-modal-form-fields.collapse-content.collapse-visible {
    display: block;
  }
}

.vtp-dealer-inquiry .vtp-modal-form-hints {
  margin: 0 0 36px 0;
}
.vtp-dealer-inquiry .vtp-modal-form-hints .vtp-wrapper {
  margin: 0 0 36px 0;
}
.vtp-dealer-inquiry .vtp-modal-form-hints .vtp-hint {
  display: none;
}
.vtp-dealer-inquiry h1 {
  margin-bottom: 40px;
  margin-bottom: 3.3333333333rem;
  margin-top: 70px;
  margin-top: 5.8333333333rem;
}
.vtp-dealer-inquiry .tab-content > div .collapse-toggle {
  padding-left: 24px;
  padding-left: 2rem;
}
.vtp-dealer-inquiry .tab-content > div .collapse-toggle:before {
  line-height: 1em;
  top: 15px;
  left: 4%;
}
.vtp-dealer-inquiry .tab-content > div .collapse-toggle.disabled {
  color: #b0b6b8;
}
.vtp-dealer-inquiry .tab-content > div .collapse-toggle.disabled:after {
  display: none;
}
.vtp-dealer-inquiry .tab-content > div:nth-child(1) > .collapse-toggle:before {
  content: 1;
}
.vtp-dealer-inquiry .tab-content > div:nth-child(2) > .collapse-toggle:before {
  content: 2;
}
.vtp-dealer-inquiry .tab-content > div:nth-child(3) > .collapse-toggle:before {
  content: 3;
}
.vtp-dealer-inquiry .tab-content > div:nth-child(4) > .collapse-toggle:before {
  content: 4;
}
.vtp-dealer-inquiry .tab-content > div:nth-child(5) > .collapse-toggle:before {
  content: 5;
}
.vtp-dealer-inquiry .tab-content > div .collapse-toggle:before,
.vtp-dealer-inquiry .vtp-form-steps > li a:before {
  position: absolute;
  margin-right: 10px;
  margin-right: 0.8333333333rem;
  font-size: 36px;
}
.vtp-dealer-inquiry .vtp-btn.submit, .vtp-dealer-inquiry .vtp-compare-bar.compare-enabled .action-holder .submit.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-dealer-inquiry .submit.vtp-btn {
  margin-bottom: 28px;
  margin-bottom: 2.3333333333rem;
}
.vtp-dealer-inquiry .vtp-btn.primary, .vtp-dealer-inquiry .vtp-compare-bar.compare-enabled .action-holder .primary.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-dealer-inquiry .primary.vtp-btn {
  margin-bottom: 0;
}
.vtp-dealer-inquiry .vtp-btn#send-inquiry-btn[disabled] {
  background-color: #6d7579;
  opacity: 1;
}
.vtp-dealer-inquiry footer {
  *zoom: 1;
  border-top: none;
  font-family: Verdana, sans-serif;
  margin-top: 0;
  padding-top: 0;
}
.vtp-dealer-inquiry footer:before, .vtp-dealer-inquiry footer:after {
  content: "";
  display: table;
}
.vtp-dealer-inquiry footer:after {
  clear: both;
}
.vtp-dealer-inquiry footer > div {
  margin-bottom: 20px;
  margin-bottom: 1.6666666667rem;
  float: left;
  clear: none;
  width: 82.0023333333%;
  margin-left: 0;
  margin-right: 6.986%;
}
.vtp-dealer-inquiry footer > div:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 660px) {
  .vtp-dealer-inquiry footer > div {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-dealer-inquiry footer > div:first-child {
    margin-left: auto;
  }
  .vtp-dealer-inquiry footer > div:last-child {
    margin-right: auto;
  }
}
.vtp-dealer-inquiry footer > div:last-child {
  margin-bottom: 0;
}
.vtp-dealer-inquiry footer p {
  margin: 0;
}
.vtp-dealer-inquiry footer p, .vtp-dealer-inquiry footer h3.label {
  font-size: 10px;
}
@media only screen and (max-width: 660px) {
  .vtp-dealer-inquiry h1 {
    margin: 24px 0;
    margin: 2rem 0;
  }
  .vtp-dealer-inquiry .form-hide-mobile {
    display: none;
  }
  .vtp-dealer-inquiry .vtp-tab-accordion .vtp-tab-pane {
    display: block !important;
  }
  .vtp-dealer-inquiry .vtp-form-steps {
    display: none;
  }
  .vtp-dealer-inquiry .collapse-toggle {
    display: block;
    left: auto;
    width: 100%;
  }
  .vtp-dealer-inquiry .checkbox-primary + label, .vtp-dealer-inquiry .checkbox-primary + .label,
  .vtp-dealer-inquiry .radio-primary + label,
  .vtp-dealer-inquiry .radio-primary + .label {
    padding-left: 40px;
    padding-right: 0;
  }
  .vtp-dealer-inquiry .checkbox-primary + label.mobile-half, .vtp-dealer-inquiry .checkbox-primary + .label.mobile-half,
  .vtp-dealer-inquiry .radio-primary + label.mobile-half,
  .vtp-dealer-inquiry .radio-primary + .label.mobile-half {
    float: left;
    clear: none;
    width: 49.9%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-dealer-inquiry .checkbox-primary + label.mobile-half:nth-of-type(n), .vtp-dealer-inquiry .checkbox-primary + .label.mobile-half:nth-of-type(n),
  .vtp-dealer-inquiry .radio-primary + label.mobile-half:nth-of-type(n),
  .vtp-dealer-inquiry .radio-primary + .label.mobile-half:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-dealer-inquiry .checkbox-primary + label.mobile-half:nth-of-type(2n), .vtp-dealer-inquiry .checkbox-primary + .label.mobile-half:nth-of-type(2n),
  .vtp-dealer-inquiry .radio-primary + label.mobile-half:nth-of-type(2n),
  .vtp-dealer-inquiry .radio-primary + .label.mobile-half:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .vtp-dealer-inquiry .checkbox-primary + label.mobile-half:nth-of-type(2n + 1), .vtp-dealer-inquiry .checkbox-primary + .label.mobile-half:nth-of-type(2n + 1),
  .vtp-dealer-inquiry .radio-primary + label.mobile-half:nth-of-type(2n + 1),
  .vtp-dealer-inquiry .radio-primary + .label.mobile-half:nth-of-type(2n + 1) {
    clear: both;
  }
  .vtp-dealer-inquiry .checkbox-primary + label:before, .vtp-dealer-inquiry .checkbox-primary + .label:before,
  .vtp-dealer-inquiry .radio-primary + label:before,
  .vtp-dealer-inquiry .radio-primary + .label:before {
    display: inline-block;
  }
  .vtp-dealer-inquiry .checkbox-primary + label:after, .vtp-dealer-inquiry .checkbox-primary + label.mobile-half:after, .vtp-dealer-inquiry .checkbox-primary + .label:after, .vtp-dealer-inquiry .checkbox-primary + .label.mobile-half:after,
  .vtp-dealer-inquiry .radio-primary + label:after,
  .vtp-dealer-inquiry .radio-primary + label.mobile-half:after,
  .vtp-dealer-inquiry .radio-primary + .label:after,
  .vtp-dealer-inquiry .radio-primary + .label.mobile-half:after {
    display: none;
  }
}

.vtp-vehicle-conditions .vtp-vehicle-conditions-list .vehicle-conditions-icon {
  background-image: url("../images/detailpage/system-save-as-large.png");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 50px;
  min-height: 50px;
  float: left;
  clear: none;
  width: 22.7045%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-vehicle-conditions .vtp-vehicle-conditions-list .vehicle-conditions-icon:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 800px) {
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list .vehicle-conditions-icon {
    float: left;
    clear: none;
    width: 74.1015%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list .vehicle-conditions-icon:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 940px) {
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list .vehicle-conditions-icon {
    float: left;
    clear: none;
    width: 22.7045%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list .vehicle-conditions-icon:last-child {
    margin-right: 0;
  }
}
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul {
  float: left;
  float: left;
  clear: none;
  width: 74.1015%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 800px) {
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 940px) {
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul {
    float: left;
    clear: none;
    width: 74.1015%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-vehicle-conditions .vtp-vehicle-conditions-list ul:last-child {
    margin-right: 0;
  }
}
.vtp-vehicle-conditions .vtp-vehicle-conditions-list ul li {
  margin-bottom: 12px;
  margin-bottom: 1rem;
}
@media print {
  .vtp-vehicle-conditions {
    display: none;
  }
}

.vtp-online-reservation-inquiry .modal-dialog-controls {
  margin-top: 36px;
}
@media only screen and (min-width: 1024px) {
  .vtp-online-reservation-inquiry .modal-dialog-controls {
    margin-top: 42px;
  }
}
@media only screen and (min-width: 1440px) {
  .vtp-online-reservation-inquiry .modal-dialog-controls {
    margin-top: 54px;
  }
}
@media only screen and (min-width: 1920px) {
  .vtp-online-reservation-inquiry .modal-dialog-controls {
    margin-top: 66px;
  }
}
.vtp-online-reservation-inquiry .vtp-btn.submit:after, .vtp-online-reservation-inquiry .vtp-compare-bar.compare-enabled .action-holder .submit.vtp-btn:after, .vtp-compare-bar.compare-enabled .action-holder .vtp-online-reservation-inquiry .submit.vtp-btn:after {
  content: none;
}
.vtp-online-reservation-inquiry .online-reservation-log {
  margin-top: 36px;
}
@media only screen and (min-width: 1024px) {
  .vtp-online-reservation-inquiry .online-reservation-log {
    margin-top: 42px;
  }
}
@media only screen and (min-width: 1440px) {
  .vtp-online-reservation-inquiry .online-reservation-log {
    margin-top: 54px;
  }
}
@media only screen and (min-width: 1920px) {
  .vtp-online-reservation-inquiry .online-reservation-log {
    margin-top: 66px;
  }
}
.vtp-online-reservation-inquiry .copy-text p:last-of-type, .vtp-online-reservation-inquiry .vtp-features .content p:last-of-type, .vtp-features .vtp-online-reservation-inquiry .content p:last-of-type, .vtp-online-reservation-inquiry .vtp-technical-data .content p:last-of-type, .vtp-technical-data .vtp-online-reservation-inquiry .content p:last-of-type, .vtp-online-reservation-inquiry .vtp-consumption .content p:last-of-type, .vtp-consumption .vtp-online-reservation-inquiry .content p:last-of-type {
  margin-top: 36px;
}
.vtp-online-reservation-inquiry label,
.vtp-online-reservation-inquiry .label {
  cursor: default;
}

.vtp-filter-bar ul {
  float: none;
  position: relative;
}
.vtp-filter-bar ul[data-items] {
  padding-right: 235px;
}
.vtp-filter-bar li .selected-filter {
  display: none;
}
.vtp-filter-bar li.vtp-resultcount {
  padding: 0;
  margin: 0;
  height: 40px;
}
.vtp-filter-bar li.vtp-resultcount a {
  padding: 24px;
}
.vtp-filter-bar li.vtp-resultcount a .additionalText {
  display: none;
}
.vtp-filter-bar li.vtp-resultcount a.result-0-btn {
  padding: 18px 24px 18px;
  font-size: 10px;
}
.vtp-filter-bar li.vtp-resultcount a.result-0-btn .additionalText {
  display: inline;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-bar li:before {
    display: none;
  }
}
.vtp-filter-bar .vtp-resultcount {
  position: absolute;
  right: 15px;
  margin: 0;
  height: 40px;
  height: 3.3333333333rem;
}
.vtp-filter-bar .vtp-resultcount.active a {
  color: #fff;
}
.vtp-filter-bar .vtp-resultcount.active a:after {
  border: none;
}
.vtp-filter-bar .vtp-resultcount:before {
  display: none;
}
.vtp-filter-bar .vtp-resultcount.disabled .result-btn {
  background-color: #424242 !important;
}
.vtp-filter-bar .result-btn {
  display: block;
  padding: 10px 10px 9px;
  font-size: 13px;
  line-height: 1.6;
  font-family: Verdana, sans-serif;
  font-weight: 700;
  float: left;
  text-align: center;
  overflow: hidden;
}
.vtp-filter-bar .result-btn:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -650px;
  background-repeat: no-repeat;
  width: 8px;
  height: 12px;
  position: absolute;
  top: 50%;
  margin-top: -6px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-bar .result-btn:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-filter-bar .result-btn .spinner {
  width: 45px;
  height: 8px;
  margin-right: 2px;
  display: none;
}
.vtp-filter-bar .result-btn.active,
.vtp-filter-bar .vtp-resultcount.active .result-btn {
  background-color: #c6c9cb;
  pointer-events: none;
}
.vtp-filter-bar .result-btn.active:after,
.vtp-filter-bar .vtp-resultcount.active .result-btn:after {
  display: none !important;
}
.vtp-filter-bar .result-btn.disabled,
.vtp-filter-bar .vtp-resultcount.active .result-btn.disabled {
  background-color: #6d7579;
  opacity: 1;
}
.vtp-filter-bar .result-btn.disabled .num,
.vtp-filter-bar .vtp-resultcount.active .result-btn.disabled .num {
  display: none;
}
.vtp-filter-bar .result-btn.disabled .spinner,
.vtp-filter-bar .vtp-resultcount.active .result-btn.disabled .spinner {
  display: inline-block;
}

.vtp-mobile-breadcrumb {
  display: none;
}

@media only screen and (max-width: 1280px) {
  .vtp-filter-bar #filter-area-search {
    top: 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .vtp-filter-bar ul[data-items] {
    padding-right: 165px;
  }
  .vtp-filter-bar li {
    margin-right: 2%;
    padding-left: 2%;
  }
  .vtp-filter-bar .result-btn {
    width: auto;
  }
}
@media only screen and (max-width: 940px) {
  .vtp-filter-bar li {
    margin-right: 1%;
  }
  .vtp-filter-bar #filter-area-search .content.text {
    left: -70%;
  }
  .vtp-filter-bar .vtp-flyout .content:before {
    left: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-filter-bar {
    display: block;
    position: static;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
  }
  .vtp-filter-bar .vtp-area-result-list,
  .vtp-filter-bar .error {
    display: none;
  }
  .vtp-filter-bar ul[data-items] {
    padding-right: 0;
  }
  .vtp-filter-bar ul[data-items] li {
    *zoom: 1;
    display: block !important;
    float: none;
    padding-right: 0;
    padding-left: 0;
    margin: 0;
    height: auto;
    text-align: left;
    border-bottom: 1px solid #424242;
  }
  .vtp-filter-bar ul[data-items] li:before, .vtp-filter-bar ul[data-items] li:after {
    content: "";
    display: table;
  }
  .vtp-filter-bar ul[data-items] li:after {
    clear: both;
  }
  .vtp-filter-bar ul[data-items] li.save-search-btn-container {
    border-bottom: 0px;
  }
  .vtp-filter-bar ul[data-items] li.vtp-resultcount {
    padding: 0;
    border-bottom: 0;
  }
  .vtp-filter-bar ul[data-items] li.vtp-resultcount:before {
    display: none;
  }
  .vtp-filter-bar ul[data-items] li:first-child {
    margin-left: 0;
  }
  .vtp-filter-bar ul[data-items] li:before {
    display: none;
  }
  .vtp-filter-bar ul[data-items] li:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -606px;
    background-repeat: no-repeat;
    width: 8px;
    height: 12px;
    position: absolute;
    content: "";
    display: inline-block;
    margin-left: 0.5em;
    margin-top: 0;
    top: 24px;
    right: 4%;
    border: 0;
    visibility: visible !important;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .vtp-filter-bar ul[data-items] li:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .vtp-filter-bar ul[data-items] li.vtp-resultcount:after {
    display: none;
  }
  .vtp-filter-bar ul[data-items] li a,
  .vtp-filter-bar ul[data-items] li a:last-child {
    padding: 20px 4%;
    font-family: "AudiTypeExtBold", Verdana, sans-serif;
    font-weight: 700;
    height: 60px;
    font-size: 14px;
    font-size: 1.1666666667rem;
  }
  .vtp-filter-bar ul[data-items] li a .selected-filter,
  .vtp-filter-bar ul[data-items] li a:last-child .selected-filter {
    font-family: "AudiTypeExtNormal", Verdana, sans-serif;
    color: #424242;
  }
  .vtp-filter-bar ul[data-items] li a.result-0-btn {
    padding: 10px 4% 0px 4%;
    font-size: 12px;
  }
  .vtp-filter-bar ul[data-items] li a {
    *zoom: 1;
    height: 60px;
    height: 5rem;
  }
  .vtp-filter-bar ul[data-items] li a:before, .vtp-filter-bar ul[data-items] li a:after {
    content: "";
    display: table;
  }
  .vtp-filter-bar ul[data-items] li a:after {
    clear: both;
  }
  .vtp-filter-bar ul[data-items] li a > span {
    display: inline-block;
    width: 50%;
    float: left;
  }
  .vtp-filter-bar ul[data-items] li a.result-btn {
    display: block;
    float: none;
    width: 100%;
    margin: 0;
    height: 60px;
    height: 5rem;
  }
  .vtp-filter-bar ul[data-items] li a.result-btn > span {
    float: none;
    width: auto;
  }
  .vtp-filter-bar ul[data-items] li a.result-btn:after {
    display: inline-block;
  }
  .vtp-filter-bar ul[data-items] li a.result-btn span.additionalText {
    display: none;
  }
  .vtp-filter-bar ul[data-items] li a.result-0-btn span.additionalText {
    display: inline;
    float: none;
    width: auto;
  }
  .vtp-filter-bar ul[data-items] li.active a:after {
    border: 0;
  }
  .vtp-filter-bar ul[data-items] li .selected-filter {
    display: inline;
    float: right;
    margin-right: 27px;
  }
  .vtp-filter-bar .vtp-resultcount {
    position: static;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    position: sticky;
    bottom: 0;
    width: 100%;
    height: 92px;
    top: auto;
    right: auto;
    padding: 20px 4%;
    margin-right: 0;
    z-index: 2500;
  }
  .vtp-filter-bar .vtp-resultcount:after {
    background: none;
  }
  .vtp-filter-bar .vtp-resultcount.fixedsticky-on {
    position: fixed;
    z-index: 4500;
  }
  .vtp-filter-bar ul[data-items] li.area-search {
    border-bottom: none;
  }
  .vtp-filter-bar ul[data-items] li.area-search:after, .vtp-filter-bar ul[data-items] li.area-search > a,
  .vtp-filter-bar ul[data-items] li.area-search button {
    display: none;
  }
  .vtp-filter-bar ul[data-items] li.area-search .vtp-flyout .content {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .vtp-filter-bar ul[data-items] li.area-search .vtp-flyout .content:before {
    display: none;
  }
  .vtp-filter-bar #filter-area-search {
    display: block;
    position: relative;
    margin: 0;
    left: auto;
    top: auto;
  }
  .vtp-filter-bar #filter-area-search:after {
    display: none;
  }
  .vtp-filter-bar #filter-area-search input,
  .vtp-filter-bar #filter-area-search .content.text,
  .vtp-filter-bar #filter-area-search .control-group {
    width: 100%;
  }
  .vtp-filter-bar #filter-area-search .control-group {
    padding-right: 85px;
  }
  .vtp-filter-bar #filter-area-search .content.text {
    left: auto;
    padding: 20px 4% 0;
  }
  .vtp-filter-bar #filter-area-search .custom-select.push-left {
    width: 85px;
    position: absolute;
    right: 4%;
  }
  .vtp-filter-bar #filter-area-search .vtp-area-btn-locate {
    right: 100px;
  }
  .vtp-mobile-breadcrumb {
    padding-top: 0;
    padding-right: 17px;
    max-height: 22px;
    font-family: Verdana, sans-serif;
    font-size: 12;
    font-weight: 400;
    overflow: hidden;
    text-align: right;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #808080;
  }
}
.vtp-breadcrumb-additionalitem {
  display: inline-block;
  position: relative;
}
.vtp-breadcrumb-additionalitem.active {
  position: absolute;
  top: 0;
  right: 0;
}

.vtp-breadcrumb-item {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 5px 25px 5px 10px;
  font-size: 11px;
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  margin-right: 10px;
  margin-bottom: 10px;
  color: #000;
}
.vtp-breadcrumb-item:after {
  content: "";
  display: inline-block;
  padding-left: 5px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -34px;
  background-repeat: no-repeat;
  width: 7px;
  height: 7px;
  font-family: Verdana, sans-serif;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-breadcrumb-item:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-breadcrumb-item:hover:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -51px;
  background-repeat: no-repeat;
  width: 7px;
  height: 7px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-breadcrumb-item:hover:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-breadcrumb-item.save-search-breadcrumb {
  display: none;
  margin-right: 0;
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  color: #000;
}
.vtp-breadcrumb-item.save-search-breadcrumb a {
  padding-left: 0;
  font-size: 11px;
}
.vtp-breadcrumb-item.save-search-breadcrumb a:before {
  width: 0px;
  height: 0px;
}
.vtp-breadcrumb-item.save-search-breadcrumb:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px 0px;
  background-repeat: no-repeat;
  width: 5px;
  height: 7px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-breadcrumb-item.save-search-breadcrumb:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-breadcrumb-item.save-search-breadcrumb:hover:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -17px;
  background-repeat: no-repeat;
  width: 5px;
  height: 7px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-breadcrumb-item.save-search-breadcrumb:hover:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

#vtp-breadcrumps-collapse {
  position: relative !important;
}

.vtp-expand-breadcrumbs {
  float: left;
  display: none;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  font-weight: 700;
  position: relative;
  margin-right: 10px;
  background: white;
  z-index: 100;
  color: #000;
}
.vtp-expand-breadcrumbs .vtp-breadcrumb-item {
  margin-right: 0;
}
.vtp-expand-breadcrumbs .vtp-breadcrumb-item:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -102px;
  background-repeat: no-repeat;
  width: 7px;
  height: 7px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-expand-breadcrumbs .vtp-breadcrumb-item:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-expand-breadcrumbs .vtp-breadcrumb-item:hover:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -119px;
  background-repeat: no-repeat;
  width: 7px;
  height: 7px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-expand-breadcrumbs .vtp-breadcrumb-item:hover:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-expand-breadcrumbs > .vtp-breadcrumb-item {
  float: none;
}
.vtp-expand-breadcrumbs [data-state=active] {
  display: none;
}
.vtp-expand-breadcrumbs.active [data-state=inactive] {
  display: none;
}
.vtp-expand-breadcrumbs.active [data-state=active] {
  display: block;
}
.vtp-expand-breadcrumbs.active [data-state=active]:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -68px;
  background-repeat: no-repeat;
  width: 7px;
  height: 7px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-expand-breadcrumbs.active [data-state=active]:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-expand-breadcrumbs.active [data-state=active]:hover:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -85px;
  background-repeat: no-repeat;
  width: 7px;
  height: 7px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-expand-breadcrumbs.active [data-state=active]:hover:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.vtp-filter-breadcrumb {
  padding-top: 19.00008px;
  padding-top: 1.58334rem;
  *zoom: 1;
  width: auto;
  max-width: 1280px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 4%;
  padding-right: 4%;
}
.vtp-filter-breadcrumb.deactive {
  padding-top: 0;
  height: 0;
}
.vtp-filter-breadcrumb:before, .vtp-filter-breadcrumb:after {
  content: "";
  display: table;
}
.vtp-filter-breadcrumb:after {
  clear: both;
}
@media only screen and (min-width: 1280px) {
  .vtp-filter-breadcrumb {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.vtp-filter-breadcrumb .container {
  height: 32px;
  overflow: hidden;
  -webkit-transition: height 100ms ease-in-out;
  -o-transition: height 100ms ease-in-out;
  transition: height 100ms ease-in-out;
}
.vtp-filter-breadcrumb .vtp-breadcrumbs {
  padding-right: 240px;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
}
.vtp-filter-breadcrumb .vtp-breadcrumbs .vtp-breadcrumb-item {
  float: left;
}
.vtp-filter-breadcrumb .vtp-seo-links {
  position: absolute;
  top: 100%;
}

.vtp-container > section.vtp-filter-breadcrumb {
  padding-top: 30px;
  padding-top: 2.5rem;
  padding-bottom: 30px;
  padding-bottom: 2.5rem;
}

.vtp-market-ca .vtp-filter-breadcrumb [data-table=t_geo],
.vtp-market-uk .vtp-filter-breadcrumb [data-table=t_geo] {
  display: none;
}

@media only screen and (max-width: 767px) {
  .vtp-filter-breadcrumb {
    display: none;
  }
  .vtp-container > section.vtp-filter-breadcrumb {
    padding-bottom: 18px;
    padding-bottom: 1.5rem;
  }
}
.vtp-filter-panels-container {
  position: relative;
  min-width: 320px;
  /** 4-2-1 Grid for filters **/
  /** 2-1-1 Grid for filters **/
  /**  breakpoints **/
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panels-container .vtp-filter-fields fieldset:last-child {
    margin-bottom: 0;
  }
}
.vtp-filter-panels-container .vtp-filter-fields legend {
  width: 100%;
}
.vtp-filter-panels-container .vtp-filter-fields .control-group {
  margin-bottom: 0;
}
@media only screen and (max-width: 567px) {
  .vtp-filter-panels-container .vtp-filter-fields .control-group:before {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-top: 1px solid #d7dadb;
  }
  .vtp-filter-panels-container .vtp-filter-fields .control-group:last-chlid {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
}
.vtp-filter-panels-container legend {
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
  line-height: 1.1;
}
.vtp-filter-panels-container .vtp-locations-maps .vtp-locations-seperator:after, .vtp-locations-maps .vtp-filter-panels-container .vtp-locations-seperator:after, .vtp-filter-panels-container .vtp-module-seperator:after,
.vtp-filter-panels-container .vtp-module-seperator-narrow:after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d7dadb;
  margin-bottom: 48px;
  margin-bottom: 4rem;
  padding-top: 48px;
  padding-top: 4rem;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panels-container .vtp-locations-maps .vtp-locations-seperator:after, .vtp-locations-maps .vtp-filter-panels-container .vtp-locations-seperator:after, .vtp-filter-panels-container .vtp-module-seperator:after,
  .vtp-filter-panels-container .vtp-module-seperator-narrow:after {
    padding-top: 0;
    border: none;
  }
}
.vtp-filter-panels-container .vtp-module-seperator > fieldset,
.vtp-filter-panels-container .vtp-module-seperator > div,
.vtp-filter-panels-container .vtp-module-seperator > ul {
  margin-bottom: 0;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panels-container .vtp-module-seperator > fieldset,
  .vtp-filter-panels-container .vtp-module-seperator > div,
  .vtp-filter-panels-container .vtp-module-seperator > ul {
    margin-bottom: 48px;
    margin-bottom: 4rem;
  }
}
.vtp-filter-panels-container .vtp-module-seperator-narrow:after {
  padding-top: 18px;
  padding-top: 1.5rem;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panels-container .vtp-module-seperator-narrow:after {
    margin: 0;
    padding-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-filter-panels-container .vtp-section.vtp-module-seperator:after,
  .vtp-filter-panels-container .vtp-section.vtp-module-seperator-narrow:after {
    border: none;
  }
}
.vtp-filter-panels-container .vtp-link.back, .vtp-filter-panels-container .back.vtp-breadcrumb-item {
  display: none;
}
.vtp-filter-panels-container .vtp-btn.toggle, .vtp-filter-panels-container .vtp-compare-bar.compare-enabled .action-holder .toggle.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-filter-panels-container .toggle.vtp-btn {
  padding: 14px 20px 14px;
}
.vtp-filter-panels-container label,
.vtp-filter-panels-container .label {
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
}
.vtp-filter-panels-container label span,
.vtp-filter-panels-container .label span {
  font-weight: 400;
}
.vtp-filter-panels-container label .vtp-label-text-aaa,
.vtp-filter-panels-container .label .vtp-label-text-aaa {
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .vtp-filter-panels-container .vtp-filter-panel-locations .vtp-module-seperator:after {
    padding-top: 0;
    border: none;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-filter-panels-container {
    overflow: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-overflow-scrolling: touch;
    z-index: 4000;
    background: rgba(0, 0, 0, 0.2) url(../images/filterpage/loader_big.gif) no-repeat center;
    -webkit-transition: background 75ms ease-in-out;
    -o-transition: background 75ms ease-in-out;
    transition: background 75ms ease-in-out;
  }
  .native-sticky-active .vtp-page-results .vtp-filter-panels-container {
    overflow: visible;
    overflow-y: visible;
  }
  .loaded .vtp-filter-panels-container {
    display: none;
  }
  .vtp-filter-panel-initialized .vtp-filter-panels-container {
    background-color: rgba(222, 222, 222, 0);
    background-image: none;
  }
  .vtp-filter-panels-container.open {
    background-color: rgba(222, 222, 222, 0.15);
    display: block;
  }
  .vtp-filter-panels-container.mask {
    background-color: rgb(255, 255, 255);
  }
  .vtp-filter-panels-container .vtp-filter-panels-container-row section {
    padding-bottom: 70px;
    padding-bottom: 5.8333333333rem;
  }
  .vtp-filter-panels-container .vtp-link.back, .vtp-filter-panels-container .back.vtp-breadcrumb-item {
    display: block;
  }
}
.vtp-filter-panels-container .vtp-title,
.vtp-filter-panels-container .h3,
.vtp-filter-panels-container .lead,
.vtp-filter-panels-container .vtp-modals dt,
.vtp-modals .vtp-filter-panels-container dt,
.vtp-filter-panels-container .vtp-range-slider .slider-label,
.vtp-range-slider .vtp-filter-panels-container .slider-label,
.vtp-filter-panels-container .vtp-dealer-info-box .name,
.vtp-dealer-info-box .vtp-filter-panels-container .name,
.vtp-filter-panels-container legend {
  margin-bottom: 20px;
  margin-bottom: 1.6666666667rem;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panels-container .vtp-title,
  .vtp-filter-panels-container .h3,
  .vtp-filter-panels-container .lead,
  .vtp-filter-panels-container .vtp-modals dt,
  .vtp-modals .vtp-filter-panels-container dt,
  .vtp-filter-panels-container .vtp-range-slider .slider-label,
  .vtp-range-slider .vtp-filter-panels-container .slider-label,
  .vtp-filter-panels-container .vtp-dealer-info-box .name,
  .vtp-dealer-info-box .vtp-filter-panels-container .name,
  .vtp-filter-panels-container legend {
    margin-bottom: 15px;
    margin-bottom: 1.25rem;
  }
}
.vtp-filter-panels-container .vtp-range-slider .slider-label {
  margin-bottom: 30px;
  margin-bottom: 2.5rem;
}
.vtp-filter-panels-container .vtp-cmp-group label {
  display: block;
}
.vtp-filter-panels-container .vtp-cmp-group label,
.vtp-filter-panels-container .vtp-cmp-group fieldset {
  margin-bottom: 0;
}
.vtp-filter-panels-container .vtp-warranty-group fieldset {
  margin-bottom: 0;
}
.vtp-filter-panels-container .vtp-warranty-group fieldset label {
  margin-bottom: 0;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-panels-container .vtp-warranty-group fieldset:first-child label {
    margin-bottom: 12px;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panels-container .vtp-warranty-group fieldset:first-child label {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panels-container .vtp-warranty-group {
    position: relative;
    top: -1px;
  }
}

.vtp-filter-panel.transitionOut {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.vtp-filter-panel > .container > .vtp-link.back, .vtp-filter-panel > .container > .back.vtp-breadcrumb-item {
  padding-top: 30px;
  padding-top: 2.5rem;
  padding-bottom: 30px;
  padding-bottom: 2.5rem;
}
.vtp-filter-panel.vtp-results-page > .container > .vtp-link.back, .vtp-filter-panel.vtp-results-page > .container > .back.vtp-breadcrumb-item {
  padding-top: 0;
}
@media only screen and (max-width: 767px) {
  .vtp-filter-panel {
    opacity: 0;
    pointer-events: none;
    min-height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #fff;
    z-index: 1;
  }
  .vtp-filter-panel.transitionOut {
    -webkit-animation-duration: 200ms;
    -o-animation-duration: 200ms;
    animation-duration: 200ms;
  }
  .vtp-filter-panel-initialized .vtp-filter-panel {
    opacity: 1;
    pointer-events: auto;
  }
}

.resultcount,
.groupcount {
  font-family: Verdana, sans-serif;
  font-weight: 400;
  display: inline-block;
  opacity: 1;
  -webkit-transition: opacity 100ms ease;
  -o-transition: opacity 100ms ease;
  transition: opacity 100ms ease;
}
.slider-label .resultcount,
.slider-label .groupcount {
  font-size: 0.7em;
}
.resultcount.hide,
.groupcount.hide {
  opacity: 0;
}
.resultcount.block,
.groupcount.block {
  display: block;
}

label .has-info,
.label .has-info {
  display: inline-block;
  height: 13.2px;
  height: 1.1rem;
}

/** Input field with image before checkbox **/
.vtp-filter-inline-image {
  display: table;
  width: 100%;
  margin-bottom: 48px;
  margin-bottom: 4rem;
}
.vtp-filter-inline-image i,
.vtp-filter-inline-image [class*=vtp-icon-highlights-] {
  display: table-cell;
  vertical-align: top;
  top: 0;
  margin-left: 0;
  margin-right: 24px;
  margin-right: 2rem;
}
.vtp-filter-inline-image label,
.vtp-filter-inline-image .label {
  margin-top: 0;
  margin-left: 12px;
  margin-left: 1rem;
}
.vtp-filter-inline-image label span:not([class*=visible-]),
.vtp-filter-inline-image .label span:not([class*=visible-]) {
  display: inline-block;
}
.vtp-filter-inline-image .has-info {
  display: inline-block;
  height: 13.2px;
  height: 1.1rem;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-inline-image i {
    min-width: 80px;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-inline-image {
    margin-bottom: 0;
  }
  .vtp-filter-inline-image:before {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-top: 1px solid #d7dadb;
  }
  .vtp-filter-inline-image i {
    display: none;
  }
  .vtp-filter-inline-image .checkbox-primary + label,
  .vtp-filter-inline-image .checkbox-primary + .label {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
    padding-right: 60px;
    padding-right: 5rem;
  }
}

/** Input field with image after checkbox DE **/
.vtp-inc-buyonline fieldset {
  float: left;
}
.vtp-inc-buyonline .control-group {
  margin-bottom: 0;
}
.vtp-inc-buyonline i,
.vtp-inc-buyonline [class*=vtp-icon-highlights-] {
  display: inline-block;
  vertical-align: middle;
  top: 0;
  margin-left: 15px;
}
@media only screen and (max-width: 940px) {
  .vtp-inc-buyonline fieldset:first-child label {
    margin-bottom: 0 !important;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-inc-buyonline .control-group .has-info {
    position: relative;
    margin-top: -4px;
    top: 4px;
  }
  .vtp-inc-buyonline i {
    display: none;
  }
}
@media only screen and (max-width: 567px) {
  .vtp-inc-buyonline fieldset:last-child label {
    width: 100%;
  }
  .vtp-inc-buyonline label:before {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-top: 1px solid #d7dadb;
  }
}

.vtp-page-filter .vtp-modal footer {
  padding-left: 4%;
  padding-right: 4%;
}
.vtp-page-filter .vtp-modal .container:first-child {
  border: none;
  padding-top: 0;
}
.vtp-page-filter .vtp-modal .container footer {
  padding-left: 0;
  padding-right: 0;
}

.ie9 #vtp-filter-locations .vtp-module-seperator,
.ie9 #vtp-filter-locations .vtp-module-seperator-narrow {
  padding-bottom: 4rem;
  content: "";
  display: block;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d7dadb;
  margin-bottom: 48px;
  margin-bottom: 4rem;
  padding-top: 48px;
  padding-top: 4rem;
  padding-bottom: 48px;
  padding-bottom: 4rem;
}
@media only screen and (max-width: 568px) {
  .ie9 #vtp-filter-locations .vtp-module-seperator,
  .ie9 #vtp-filter-locations .vtp-module-seperator-narrow {
    padding-top: 0;
    border: none;
  }
}

.vtp-condition-fields.vtp-warranty-group fieldset.vtp-buyOnline-filter {
  display: none;
}

.vtp-filter-panel-colors .flex-center {
  margin-bottom: 30px;
  margin-bottom: 2.5rem;
}
.vtp-filter-panel-colors label {
  display: block;
  text-align: left;
}
.vtp-filter-panel-colors .h3, .vtp-filter-panel-colors .lead, .vtp-filter-panel-colors .vtp-modals dt, .vtp-modals .vtp-filter-panel-colors dt, .vtp-filter-panel-colors .vtp-range-slider .slider-label, .vtp-range-slider .vtp-filter-panel-colors .slider-label, .vtp-filter-panel-colors .vtp-dealer-info-box .name, .vtp-dealer-info-box .vtp-filter-panel-colors .name {
  margin-bottom: 18px;
  margin-bottom: 1.5rem;
}
.vtp-filter-panel-colors .vtp-filter-select-all {
  margin-bottom: 0;
}
.vtp-filter-panel-colors .colors-item {
  min-height: 102px;
  background: #f00;
}
.vtp-filter-panel-colors .tile {
  display: block;
  position: relative;
  height: 102px;
  width: 102px;
  margin-right: 25px;
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -1965px;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-color: #fff;
  margin-left: 0;
  top: 0;
  margin-bottom: 10px;
  z-index: -1;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .tile {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-filter-panel-colors .colors-grid {
  *zoom: 1;
  margin-right: -4%;
}
.vtp-filter-panel-colors .colors-grid:before, .vtp-filter-panel-colors .colors-grid:after {
  content: "";
  display: table;
}
.vtp-filter-panel-colors .colors-grid:after {
  clear: both;
}
.vtp-filter-panel-colors .colors-grid li {
  width: 102px;
  width: 8.5rem;
  float: left;
  position: relative;
  margin-top: 36px;
  margin-top: 3rem;
  margin-right: 4%;
}
.vtp-filter-panel-colors .colors-grid label {
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
  min-height: 0;
  white-space: nowrap;
}
.vtp-filter-panel-colors .colors-grid label:before {
  top: 0;
  z-index: 2;
  display: block;
  right: 0;
  margin-right: -14px;
  margin-top: -14px;
  margin-left: 0;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .colors-grid label:before {
    display: none;
  }
}
.vtp-filter-panel-colors .colors-grid label .resultcount {
  display: block;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .colors-grid label .resultcount {
    display: inline-block;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .colors-grid li {
    float: none;
    height: 80px;
  }
  .vtp-filter-panel-colors .colors-grid .tile {
    position: absolute;
    top: 13px;
    left: 0;
    margin-right: 0;
  }
  .vtp-filter-panel-colors .colors-grid label {
    top: 0;
    height: 100%;
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    padding-left: 63px;
  }
}
.vtp-filter-panel-colors .upholstery-grid {
  *zoom: 1;
}
.vtp-filter-panel-colors .upholstery-grid:before, .vtp-filter-panel-colors .upholstery-grid:after {
  content: "";
  display: table;
}
.vtp-filter-panel-colors .upholstery-grid:after {
  clear: both;
}
.vtp-filter-panel-colors .upholstery-grid li {
  float: left;
  position: relative;
  margin-right: 4%;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .upholstery-grid:before {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-top: 1px solid #d7dadb;
  }
}
.vtp-filter-panel-colors .fl-colors-all,
.vtp-filter-panel-colors fieldset .control-group {
  margin-bottom: 0;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .vtp-btn.toggle, .vtp-filter-panel-colors .vtp-compare-bar.compare-enabled .action-holder .toggle.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-filter-panel-colors .toggle.vtp-btn {
    width: 50%;
    margin-top: 0;
  }
  .vtp-filter-panel-colors .vtp-filter-select-all label {
    margin-top: 0;
    margin-bottom: 11px;
    margin-top: 10px;
  }
  .vtp-filter-panel-colors .interior-items .control-group:before,
  .vtp-filter-panel-colors .exterior-items .control-group:before {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-top: 1px solid #d7dadb;
  }
  .vtp-filter-panel-colors .interior-items ul > li,
  .vtp-filter-panel-colors .exterior-items ul > li {
    width: 100%;
    margin: 0;
    padding: 0;
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
  .vtp-filter-panel-colors .interior-items .upholstery-grid > li:last-child,
  .vtp-filter-panel-colors .exterior-items .upholstery-grid > li:last-child {
    border-bottom: 0;
  }
  .vtp-filter-panel-colors .interior-items .colors-grid,
  .vtp-filter-panel-colors .exterior-items .colors-grid {
    margin-right: 0;
  }
  .vtp-filter-panel-colors .interior-items .colors-grid > li,
  .vtp-filter-panel-colors .exterior-items .colors-grid > li {
    display: table;
  }
  .vtp-filter-panel-colors .interior-items .colors-grid > li .checkbox-primary + label:after,
  .vtp-filter-panel-colors .exterior-items .colors-grid > li .checkbox-primary + label:after {
    top: 25px;
  }
  .vtp-filter-panel-colors .vtp-module-seperator:after {
    border: 0;
  }
  .vtp-filter-panel-colors #fp-colors-interior fieldset:last-child {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
}
.vtp-filter-panel-colors .exterior-color-00 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -1853px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .exterior-color-00 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .exterior-color-00 {
    background-position: 0px -927px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .exterior-color-01 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -1517px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .exterior-color-01 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .exterior-color-01 {
    background-position: 0px -759px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .exterior-color-02 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -2189px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .exterior-color-02 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .exterior-color-02 {
    background-position: 0px -1095px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .exterior-color-03 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -2525px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .exterior-color-03 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .exterior-color-03 {
    background-position: 0px -1263px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .exterior-color-04 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -2861px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .exterior-color-04 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .exterior-color-04 {
    background-position: 0px -1431px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .exterior-color-05 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -1405px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .exterior-color-05 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .exterior-color-05 {
    background-position: 0px -703px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .exterior-color-06 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -2973px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .exterior-color-06 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .exterior-color-06 {
    background-position: 0px -1487px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .exterior-color-07 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -2637px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .exterior-color-07 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .exterior-color-07 {
    background-position: 0px -1319px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .exterior-color-08 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -2301px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .exterior-color-08 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .exterior-color-08 {
    background-position: 0px -1151px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .exterior-color-09 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -1293px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .exterior-color-09 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .exterior-color-09 {
    background-position: 0px -647px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .exterior-color-10 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -1741px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .exterior-color-10 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .exterior-color-10 {
    background-position: 0px -871px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .exterior-color-11 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -1629px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .exterior-color-11 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .exterior-color-11 {
    background-position: 0px -815px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .exterior-color-12 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -2077px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .exterior-color-12 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .exterior-color-12 {
    background-position: 0px -1039px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .exterior-color-13 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -2413px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .exterior-color-13 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .exterior-color-13 {
    background-position: 0px -1207px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .exterior-color-14 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -2749px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .exterior-color-14 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .exterior-color-14 {
    background-position: 0px -1375px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .interior-color-00 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -3533px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .interior-color-00 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .interior-color-00 {
    background-position: 0px -1767px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .interior-color-01 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -3309px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .interior-color-01 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .interior-color-01 {
    background-position: 0px -1655px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .interior-color-02 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -3757px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .interior-color-02 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .interior-color-02 {
    background-position: 0px -1879px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .interior-color-03 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -3981px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .interior-color-03 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .interior-color-03 {
    background-position: 0px -1991px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .interior-color-04 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -4093px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .interior-color-04 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .interior-color-04 {
    background-position: 0px -2047px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .interior-color-05 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -3197px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .interior-color-05 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .interior-color-05 {
    background-position: 0px -1599px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .interior-color-06 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -4205px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .interior-color-06 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .interior-color-06 {
    background-position: 0px -2103px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .interior-color-08 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -3869px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .interior-color-08 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .interior-color-08 {
    background-position: 0px -1935px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .interior-color-09 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -3085px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .interior-color-09 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .interior-color-09 {
    background-position: 0px -1543px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}
.vtp-filter-panel-colors .interior-color-10 {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -3421px;
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-colors .interior-color-10 {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-colors .interior-color-10 {
    background-position: 0px -1711px;
    background-size: 51px 2154px;
    width: 51px;
    height: 51px;
  }
}

.vtp-filter-panel-locations .vtp-filter-select-all {
  margin-bottom: 0;
}

.vtp-filter-panel-locations .vtp-filter-fields label span {
  font-family: Verdana, sans-serif;
}

.ie9 .vtp-locations-maps .vtp-filter-panel-locations .vtp-module-seperator:after {
  display: none;
}

.ie9 .vtp-locations-maps .vtp-filter-panel-locations li.control-group {
  display: inline-block;
  float: left;
  width: 47%;
}

.ie9 .vtp-locations-maps .vtp-filter-panel-locations li.control-group:nth-child(odd) {
  margin-right: 1%;
}

.ie9 .vtp-locations-maps label .numberCount {
  float: left;
  display: block;
  position: relative;
  min-height: 30px;
  min-height: 2.5rem;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3532px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  color: #000;
  line-height: 30px;
  text-align: center;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .ie9 .vtp-locations-maps label .numberCount {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.ie9 .vtp-locations-maps .checkbox-primary + label, .ie9 .vtp-locations-maps .checkbox-primary + .label, .ie9 .vtp-locations-maps .checkbox-primary {
  padding-left: 0px !important;
}

.ie9 .vtp-locations-maps .numberCount {
  margin-right: 20px !important;
}

.ie9 .vtp-locations-maps .vtp-t-location-inner .needsclick {
  margin-left: 40px !important;
}

.ie9 label .numberCount.has-checked-number {
  color: #fff;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3412px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .ie9 label .numberCount.has-checked-number {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.ie9 label .numberCount.has-checked-number:before {
  content: " ";
}

@media only screen and (max-width: 767px) {
  #tooltip-locations-wdw.vtp-tooltip {
    top: 60px;
  }
}
.ie9 #tooltip-locations-wdw {
  display: inline-block;
}

@media only screen and (min-width: 768px) {
  #vtp-tooltip-locations-wdw.vtp-tooltip {
    left: 25px;
    padding: 10px 15px;
    position: absolute;
    top: -100px;
    width: 300px;
  }
  .flexbox .vtp-filter-panel-locations ul li {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 50%;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    max-width: 50%;
  }
  .no-flexbox .vtp-filter-panel-locations li.control-group {
    width: 50%;
  }
  .vtp-filter-panel-locations .vtp-wdw label {
    width: auto;
  }
}
@media only screen and (min-width: 568px) {
  .vtp-filter-panel-locations ul {
    overflow: hidden;
  }
  .no-flexbox .vtp-filter-panel-locations li.control-group {
    display: inline-block;
    float: left;
  }
  .flexbox .vtp-filter-panel-locations ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-flow: row wrap;
  }
  .flexbox .vtp-filter-panel-locations ul li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 50%;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    max-width: 48%;
  }
}
.locationLabel {
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  color: #ffffff;
  pointer-events: none;
  text-align: center;
  white-space: nowrap;
}

.control-group img.vtp-icon {
  display: block;
  width: 60px;
  float: right;
  padding-top: 10px;
}

.vtp-locations-maps .vtp-filter-fields .control-group:before {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  border-top: 1px solid #d7dadb;
}
@media only screen and (min-width: 568px) {
  .vtp-locations-maps .vtp-filter-fields .control-group:nth-child(1):before {
    display: none;
  }
  .vtp-locations-maps .vtp-filter-fields .control-group:nth-child(2):before {
    display: none;
  }
}
.vtp-locations-maps label {
  max-width: 80% !important;
}
.vtp-locations-maps label.has-number:after {
  display: none;
  content: "";
  background: none;
}
.vtp-locations-maps label.has-number:before {
  display: none;
  content: "";
  background: none;
}
.vtp-locations-maps label .numberCount {
  display: block;
  position: relative;
  min-height: 30px;
  min-height: 2.5rem;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3532px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  color: #000;
  line-height: 30px;
  text-align: center;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-locations-maps label .numberCount {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-locations-maps .more {
  text-align: right;
}
.vtp-locations-maps .controlgroup-bg {
  background-color: #E7E9EA;
}
@media only screen and (max-width: 320px) {
  .vtp-locations-maps .control-group {
    position: relative;
  }
  .vtp-locations-maps img.vtp-icon {
    position: absolute;
    right: 5px;
    bottom: 0px;
  }
  .vtp-locations-maps label {
    max-width: 100% !important;
  }
  .vtp-locations-maps label.has-number span.numberCount {
    position: absolute;
    margin-right: 5px;
    right: 0;
  }
  .vtp-locations-maps label .numberCount.has-checked-number {
    color: #fff;
    background-image: url(../images/sprite-common.png);
    background-position: 0px -3412px;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 320px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 320px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 320px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 320px) and (min-resolution: 144dpi), only screen and (max-width: 320px) and (min-resolution: 1.5dppx) {
  .vtp-locations-maps label .numberCount.has-checked-number {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 320px) {
  .vtp-locations-maps label .numberCount.has-checked-number:before {
    content: " ";
  }
  .vtp-locations-maps .more {
    text-align: left !important;
  }
}
@media only screen and (min-width: 320px) {
  .vtp-locations-maps .vtp-location-btn-locate {
    right: 14px !important;
  }
  .vtp-locations-maps .control-group {
    position: relative;
  }
  .vtp-locations-maps img.vtp-icon {
    position: absolute;
    right: 5px;
    bottom: 0px;
  }
  .vtp-locations-maps label {
    max-width: 100% !important;
  }
  .vtp-locations-maps label.has-number span.numberCount {
    position: absolute;
    margin-right: 5px;
    right: 0;
  }
  .vtp-locations-maps label .numberCount.has-checked-number {
    color: #fff;
    background-image: url(../images/sprite-common.png);
    background-position: 0px -3412px;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
  }
}
@media only screen and (min-width: 320px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-width: 320px) and (-o-min-device-pixel-ratio: 3/2), only screen and (min-width: 320px) and (min-device-pixel-ratio: 1.5), only screen and (min-width: 320px) and (min-resolution: 144dpi), only screen and (min-width: 320px) and (min-resolution: 1.5dppx) {
  .vtp-locations-maps label .numberCount.has-checked-number {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (min-width: 320px) {
  .vtp-locations-maps label .numberCount.has-checked-number:before {
    content: " ";
  }
  .vtp-locations-maps .more {
    text-align: left !important;
  }
}
@media only screen and (min-width: 568px) {
  .vtp-locations-maps .vtp-location-btn-locate {
    right: 10px !important;
  }
  .vtp-locations-maps .control-group {
    position: relative !important;
  }
  .vtp-locations-maps img.vtp-icon {
    position: absolute;
    top: 0px !important;
    right: 5px;
  }
  .vtp-locations-maps label {
    max-width: 100% !important;
  }
  .vtp-locations-maps label.has-number span.numberCount {
    position: absolute;
    left: 0 !important;
    margin-right: 10px !important;
  }
  .vtp-locations-maps label .numberCount.has-checked-number {
    color: #fff;
    background-image: url(../images/sprite-common.png);
    background-position: 0px -3412px;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
  }
}
@media only screen and (min-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (min-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (min-width: 568px) and (min-resolution: 144dpi), only screen and (min-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-locations-maps label .numberCount.has-checked-number {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (min-width: 568px) {
  .vtp-locations-maps label .numberCount.has-checked-number:before {
    content: " ";
  }
  .vtp-locations-maps .more {
    text-align: right !important;
  }
  .vtp-locations-maps .no-flexbox .vtp-filter-panel-locations li.control-group {
    width: 50%;
  }
  .vtp-locations-maps .flexbox .vtp-filter-panel-locations ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .vtp-locations-maps .flexbox .vtp-filter-panel-locations ul li {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 45%;
    -ms-flex: 1 0 45%;
    flex: 1 0 45%;
    max-width: 45%;
    padding-right: 5%;
  }
}
.vtp-locations-maps #filter-locations-control {
  position: relative;
  top: 391px;
  margin-left: 12px;
  z-index: 2;
}
@media only screen and (max-width: 568px) {
  .vtp-locations-maps #filter-locations-control {
    top: 191px;
  }
}
.vtp-locations-maps .vtp-location-btn-locate {
  position: absolute;
  right: 0;
  background-color: #fff;
  border: none;
  outline: none;
  width: 28px;
  height: 28px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  right: 10px;
  padding: 0;
}
.vtp-locations-maps .vtp-location-btn-locate:before {
  margin: 0 auto;
  content: "";
  display: block;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2026px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-locations-maps .vtp-location-btn-locate:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-locations-maps .vtp-locations-seperator:after {
  padding: 0 !important;
  margin: 0 !important;
}
.vtp-locations-maps #filter-locations-map {
  position: relative;
  height: 500px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 568px) {
  .vtp-locations-maps #filter-locations-map {
    height: 300px;
    margin: 0 4px 10px 4px;
  }
}
.vtp-locations-maps #filter-locations-map img {
  max-width: 256px !important;
}
.vtp-locations-maps div.more {
  display: block;
  text-align: right;
  margin-top: 6px;
  margin-top: 0.5rem;
  margin-bottom: 6px;
  margin-bottom: 0.5rem;
}
.vtp-locations-maps div.content {
  padding-left: 40px;
}
@media only screen and (max-width: 568px) {
  .vtp-locations-maps div.content {
    padding: 0;
  }
}
.vtp-locations-maps div.more [data-state=active] {
  display: none;
}
.vtp-locations-maps div.more.active [data-state=active] {
  display: inline-block;
}
.vtp-locations-maps div.more.active [data-state=inactive] {
  display: none;
}
.vtp-locations-maps div.more.mobile,
.vtp-locations-maps .mobile {
  display: none;
}

.vtp-control-group-inner {
  float: left;
  padding: 0 7px;
  width: 100%;
}

.vtp-t-location-inner {
  padding: 0 7px !important;
}

@media only screen and (max-width: 567px) {
  .vtp-location-plus-warranty, .ie9 .vtp-location-plus-warranty {
    display: none;
  }
  .vtp-location-plus-warranty-mobil, .ie9 .vtp-location-plus-warranty-mobil {
    background-image: url("../images/sprite-common.png");
    background-position: 0 -1982px;
    background-repeat: no-repeat;
    background-size: 95% auto;
    height: 24px;
    position: relative;
    width: 74px;
    margin-top: 2px;
  }
}
.ie9 .vtp-location-plus-warranty-mobil {
  display: none;
}

.ie9 .vtp-location-plus-warranty {
  background-image: url("../images/sprite-common.png");
  background-position: 0 -1982px;
  background-repeat: no-repeat;
  background-size: 95% auto;
  height: 24px;
  position: absolute;
  right: -20px;
  top: 10px;
  width: 74px;
}

@media only screen and (min-width: 568px) {
  /*.vtp-location-plus-warranty-mobil{
    display:none;
  }*/
  .vtp-location-plus-warranty {
    background-image: url("../images/sprite-common.png");
    background-position: 0 -1982px;
    background-repeat: no-repeat;
    background-size: 95% auto;
    height: 24px;
    position: absolute;
    right: -20px;
    top: 10px;
    width: 74px;
  }
}
.vtp-filter-panel-manuf .manuf-grid .manuf-result-grid, .vtp-filter-panel-manuf .manuf-grid {
  *zoom: 1;
}
.vtp-filter-panel-manuf .manuf-grid .manuf-result-grid:before, .vtp-filter-panel-manuf .manuf-grid:before, .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid:after, .vtp-filter-panel-manuf .manuf-grid:after {
  content: "";
  display: table;
}
.vtp-filter-panel-manuf .manuf-grid .manuf-result-grid:after, .vtp-filter-panel-manuf .manuf-grid:after {
  clear: both;
}
.vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li, .vtp-filter-panel-manuf .manuf-grid > li {
  float: left;
  clear: none;
  width: 24.95%;
  margin-left: 0;
  margin-right: 0;
}
.vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li:nth-of-type(n), .vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(n) {
  margin-right: 0;
  float: left;
  clear: none;
}
.vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li:nth-of-type(4n), .vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li:nth-of-type(4n + 1), .vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(4n + 1) {
  clear: both;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li, .vtp-filter-panel-manuf .manuf-grid > li {
    float: left;
    clear: none;
    width: 33.2666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li:nth-of-type(4n), .vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(4n) {
    margin-right: 0;
    float: left;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li:nth-of-type(4n + 1), .vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(4n + 1) {
    clear: none;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li:nth-of-type(n), .vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li:nth-of-type(3n), .vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li:nth-of-type(3n + 1), .vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li, .vtp-filter-panel-manuf .manuf-grid > li {
    float: left;
    clear: none;
    width: 49.9%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li:nth-of-type(3n), .vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(3n) {
    margin-right: 0;
    float: left;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li:nth-of-type(3n + 1), .vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(3n + 1) {
    clear: none;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li:nth-of-type(n), .vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li:nth-of-type(2n), .vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li:nth-of-type(2n + 1), .vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(2n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li, .vtp-filter-panel-manuf .manuf-grid > li {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li:first-child, .vtp-filter-panel-manuf .manuf-grid > li:first-child {
    margin-left: auto;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li:last-child, .vtp-filter-panel-manuf .manuf-grid > li:last-child {
    margin-right: auto;
  }
}

.vtp-filter-panel-manuf .flex-center {
  margin-bottom: 20px;
  margin-bottom: 1.6666666667rem;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .flex-center {
    margin-bottom: 30px;
    margin-bottom: 2.5rem;
  }
}
.vtp-filter-panel-manuf .vtp-btn.expand, .vtp-filter-panel-manuf .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-filter-panel-manuf .expand.vtp-btn {
  margin-top: 40px;
  margin-top: 3.3333333333rem;
  /*@include rem(width, 210px);*/
  margin-bottom: 0;
}
.vtp-filter-panel-manuf .vtp-accordion {
  margin-top: 48px;
  margin-top: 4rem;
}
.vtp-filter-panel-manuf .manuf-grid {
  position: relative;
  overflow: hidden;
}
.vtp-filter-panel-manuf .manuf-grid .collapse-toggle {
  background-color: white;
  border-bottom: none;
}
.vtp-filter-panel-manuf .manuf-grid .collapse-toggle:after {
  display: none;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .manuf-grid .collapse-toggle {
    padding-top: 19px;
    padding-top: 1.5833333333rem;
    font-size: 12px;
    font-size: 1rem;
    padding-bottom: 16px;
    padding-bottom: 1.3333333333rem;
    background: #e7e9ea;
    border-bottom: 1px solid #cdd0d2;
    cursor: pointer;
    font-family: "AudiTypeExtBold", Verdana, sans-serif;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0;
    padding-left: 4%;
    position: relative;
    left: 0;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
  }
  .vtp-filter-panel-manuf .manuf-grid .collapse-toggle:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -172px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
    content: "";
    position: absolute;
    right: 4%;
    top: 50%;
    margin-top: -4px;
    display: block;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-filter-panel-manuf .manuf-grid .collapse-toggle:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .manuf-grid .collapse-toggle.active:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -226px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-filter-panel-manuf .manuf-grid .collapse-toggle.active:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-filter-panel-manuf .manuf-grid > li .filter-results {
  margin-left: 0;
}
.vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(4n+2) .filter-results {
  margin-left: -100%;
}
.vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(4n+3) .filter-results {
  margin-left: -200%;
}
.vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(4n+4) .filter-results {
  margin-left: -300%;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(3n+1) .filter-results {
    margin-left: 0;
  }
  .vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(3n+2) .filter-results {
    margin-left: -100%;
  }
  .vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(3n+3) .filter-results {
    margin-left: -200%;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(2n+1) .filter-results {
    margin-left: 0;
  }
  .vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(2n+2) .filter-results {
    margin-left: -100%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .manuf-grid > li {
    overflow: visible;
  }
  .vtp-filter-panel-manuf .manuf-grid > li:nth-of-type(1n+1) .filter-results {
    margin-left: 0;
  }
}
.vtp-filter-panel-manuf .manuf-grid .vtp-filter-label {
  position: relative;
  padding-bottom: 12px;
  padding-bottom: 1rem;
  padding-top: 13px;
  padding-top: 1.0833333333rem;
  cursor: pointer;
  -webkit-transition: background 0.1s ease-in-out;
  -o-transition: background 0.1s ease-in-out;
  transition: background 0.1s ease-in-out;
}
.no-touch .vtp-filter-panel-manuf .manuf-grid .vtp-filter-label:hover {
  color: #c03;
}
.vtp-filter-panel-manuf .manuf-grid .vtp-filter-label p {
  display: inline-block;
  padding-left: 5px;
  vertical-align: middle;
  margin: 0;
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .manuf-grid .vtp-filter-label p {
    position: relative;
    display: block;
    font-size: 12px;
    font-size: 1rem;
    line-height: 12px;
    line-height: 1rem;
    bottom: 0;
    left: 0;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .manuf-grid .vtp-filter-label {
    background-image: none;
    padding-top: 24px;
    padding-top: 2rem;
    padding-bottom: 24px;
    padding-bottom: 2rem;
  }
  .vtp-filter-panel-manuf .manuf-grid .vtp-filter-label:hover {
    background-image: none;
  }
}
.vtp-filter-panel-manuf .manuf-grid .vtp-filter-label.active {
  background-color: #e7e9ea;
}
.vtp-filter-panel-manuf .manuf-grid .vtp-filter-label.active .vtp-filter-select-all {
  display: inline-block;
}
.vtp-filter-panel-manuf .manuf-grid .vtp-filter-label.active .vtp-filter-select-all label span {
  display: none;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .manuf-grid .vtp-filter-label.active .vtp-filter-select-all {
    display: none;
  }
}
.vtp-filter-panel-manuf .manuf-grid .manuf-result-grid {
  overflow: hidden;
  background-color: #e7e9ea;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid {
    background-color: transparent;
    margin: 0 4%;
  }
}
.vtp-filter-panel-manuf .manuf-grid .manuf-result-grid .checkbox-primary + label {
  margin-left: 10px;
  padding-right: 10px;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid .checkbox-primary + label {
    margin-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid label {
    height: 80px;
    height: 6.6666666667rem;
    display: table;
    padding: 0;
    background-size: auto 80px;
    background-position: left center;
    position: relative;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid label:after {
    top: 25px;
  }
}
.vtp-filter-panel-manuf .manuf-grid .manuf-result-grid label p {
  position: absolute;
  bottom: 17px;
  bottom: 1.4166666667rem;
  left: 45px;
  left: 3.75rem;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid label p {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    bottom: 0;
    padding-left: 150px;
    padding-left: 12.5rem;
    padding-right: 40px;
    padding-right: 3.3333333333rem;
  }
}
.vtp-filter-panel-manuf .manuf-grid .manuf-result-grid label.fp-manuf--fallback:before {
  top: auto;
  bottom: 39%;
  left: 10px;
}
.vtp-filter-panel-manuf .manuf-grid .manuf-result-grid label.fp-manuf--fallback p {
  bottom: 40%;
  left: 50px;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid {
    position: relative;
    width: auto;
    height: auto;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li {
    margin: 0;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li.vtp-manuf-blank label {
    height: 30px;
    height: 2.5rem;
    padding-top: 5px;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li.vtp-manuf-blank label p {
    padding-left: 0;
    left: 0;
    bottom: 0;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li.vtp-manuf-blank label:after {
    top: 0px;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li.vtp-manuf-image .resultcount {
    display: block;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li:after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
  .vtp-filter-panel-manuf .manuf-grid .manuf-result-grid > li:last-child:after {
    border-bottom: none;
  }
}
.vtp-filter-panel-manuf .manuf-grid .filter-results {
  position: relative;
  width: 400%;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-panel-manuf .manuf-grid .filter-results {
    width: 300%;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-filter-panel-manuf .manuf-grid .filter-results {
    width: 200%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .manuf-grid .filter-results {
    width: 100%;
  }
}
.vtp-filter-panel-manuf .manuf-grid .filter-results .vtp-filter-select-all {
  display: none;
  margin: 0 4%;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .manuf-grid .filter-results .vtp-filter-select-all {
    display: block;
  }
  .vtp-filter-panel-manuf .manuf-grid .filter-results .vtp-filter-select-all label {
    display: block;
  }
  .vtp-filter-panel-manuf .manuf-grid .filter-results .vtp-filter-select-all:after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
}
.vtp-filter-panel-manuf .manuf-grid .vtp-manuf-active-counter,
.vtp-filter-panel-manuf .manuf-grid .vtp-filter-label .vtp-filter-select-all {
  position: relative;
  margin: 0;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .manuf-grid .vtp-manuf-active-counter,
  .vtp-filter-panel-manuf .manuf-grid .vtp-filter-label .vtp-filter-select-all {
    position: absolute;
  }
}
.vtp-filter-panel-manuf .manuf-grid .vtp-manuf-active-counter {
  display: none;
}
.vtp-filter-panel-manuf .manuf-grid .vtp-filter-label .vtp-filter-select-all {
  display: inline-block;
  vertical-align: middle;
}
.vtp-filter-panel-manuf .manuf-grid .vtp-filter-label .vtp-filter-select-all label {
  display: block;
  position: relative;
  min-height: 30px;
  min-height: 2.5rem;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3532px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  color: #fff;
  line-height: 30px;
  text-align: center;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-manuf .manuf-grid .vtp-filter-label .vtp-filter-select-all label {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-filter-panel-manuf .manuf-grid .vtp-filter-label .vtp-filter-select-all label:before {
  display: none;
  content: "";
  background: none;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .manuf-grid .vtp-filter-label .vtp-filter-select-all {
    display: none;
  }
}
.vtp-filter-panel-manuf .manuf-grid .has-counter .vtp-filter-label .vtp-filter-select-all {
  display: inline-block;
}
.vtp-filter-panel-manuf .manuf-grid .has-counter .vtp-filter-label .vtp-filter-select-all label {
  display: block;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3412px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-manuf .manuf-grid .has-counter .vtp-filter-label .vtp-filter-select-all label {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-filter-panel-manuf .manuf-grid .has-counter .vtp-filter-label .vtp-filter-select-all label:before {
  content: " ";
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .manuf-grid .has-counter .vtp-filter-label .vtp-filter-select-all {
    display: none;
  }
}
.vtp-filter-panel-manuf .manuf-grid .has-counter .filter-results .vtp-filter-select-all {
  display: none;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .manuf-grid .has-counter .filter-results .vtp-filter-select-all {
    display: block;
  }
  .vtp-filter-panel-manuf .manuf-grid .has-counter .filter-results .vtp-filter-select-all label {
    display: block;
  }
}
.vtp-filter-panel-manuf .vtp-manuf-name {
  display: none;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .vtp-filter-fields-2-1-1 fieldset:last-child:after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
  .vtp-filter-panel-manuf h3 {
    margin-left: 12px;
    margin-left: 1rem;
    margin-right: 12px;
    margin-right: 1rem;
  }
  .vtp-filter-panel-manuf .tab-content {
    margin: 0 -4%;
  }
  .vtp-filter-panel-manuf .vtp-accordion {
    margin: 0;
  }
  .vtp-filter-panel-manuf .vtp-accordion > ul {
    margin: 0 4%;
  }
  .vtp-filter-panel-manuf .vtp-accordion > ul > li:first-child:before {
    border-top: none;
  }
  .vtp-filter-panel-manuf .vtp-accordion > ul > li:last-child {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
  .vtp-filter-panel-manuf .vtp-btn.toggle, .vtp-filter-panel-manuf .vtp-compare-bar.compare-enabled .action-holder .toggle.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-filter-panel-manuf .toggle.vtp-btn {
    height: 48px;
    height: 4rem;
    width: 50%;
  }
  .vtp-filter-panel-manuf p {
    margin-bottom: 0;
  }
  .vtp-filter-panel-manuf .vtp-btn.expand, .vtp-filter-panel-manuf .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-filter-panel-manuf .expand.vtp-btn {
    padding-top: 24px;
    padding-top: 2rem;
    padding-bottom: 24px;
    padding-bottom: 2rem;
    font-size: 12px;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: "AudiTypeExtBold", Verdana, sans-serif !important;
    font-weight: 700;
    position: relative;
    top: 0;
    left: 0;
    cursor: pointer;
    margin-bottom: 0 !important;
    margin-top: 0;
    width: 100%;
    background: #e7e9ea;
    border-bottom: 1px solid #cdd0d2;
    padding-left: 4%;
    text-align: left;
    line-height: 1;
    color: black;
  }
  .vtp-filter-panel-manuf .vtp-btn.expand:after, .vtp-filter-panel-manuf .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn:after, .vtp-compare-bar.compare-enabled .action-holder .vtp-filter-panel-manuf .expand.vtp-btn:after {
    left: auto;
    content: "";
    background-image: url(../images/sprite-common.png);
    background-position: 0px -172px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
    position: absolute;
    right: 4%;
    top: 50%;
    margin-top: -4px;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-filter-panel-manuf .vtp-btn.expand:after, .vtp-filter-panel-manuf .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn:after, .vtp-compare-bar.compare-enabled .action-holder .vtp-filter-panel-manuf .expand.vtp-btn:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .vtp-btn.expand.active:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -226px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-filter-panel-manuf .vtp-btn.expand.active:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-manuf .has-counter .vtp-manuf-active-counter {
    display: block;
    right: 35px;
    right: 2.9166666667rem;
    top: 15px;
    top: 1.25rem;
    width: 30px;
    width: 2.5rem;
    height: 30px;
    height: 2.5rem;
    border-radius: 50%;
    line-height: 32px;
    text-align: center;
    background-color: #c03;
    color: #fff;
  }
}

.vtp-filter-panel-regions .model-grid .model-result-grid, .vtp-filter-panel-regions .model-grid, .vtp-filter-panel-models .model-grid .model-result-grid, .vtp-filter-panel-models .model-grid {
  *zoom: 1;
}
.vtp-filter-panel-regions .model-grid .model-result-grid:before, .vtp-filter-panel-regions .model-grid:before, .vtp-filter-panel-models .model-grid .model-result-grid:before, .vtp-filter-panel-models .model-grid:before, .vtp-filter-panel-regions .model-grid .model-result-grid:after, .vtp-filter-panel-regions .model-grid:after, .vtp-filter-panel-models .model-grid .model-result-grid:after, .vtp-filter-panel-models .model-grid:after {
  content: "";
  display: table;
}
.vtp-filter-panel-regions .model-grid .model-result-grid:after, .vtp-filter-panel-regions .model-grid:after, .vtp-filter-panel-models .model-grid .model-result-grid:after, .vtp-filter-panel-models .model-grid:after {
  clear: both;
}
.vtp-filter-panel-regions .model-grid .model-result-grid > li, .vtp-filter-panel-regions .model-grid > li, .vtp-filter-panel-models .model-grid .model-result-grid > li, .vtp-filter-panel-models .model-grid > li {
  float: left;
  clear: none;
  width: 24.95%;
  margin-left: 0;
  margin-right: 0;
}
.vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(n), .vtp-filter-panel-regions .model-grid > li:nth-of-type(n), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(n), .vtp-filter-panel-models .model-grid > li:nth-of-type(n) {
  margin-right: 0;
  float: left;
  clear: none;
}
.vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(4n), .vtp-filter-panel-regions .model-grid > li:nth-of-type(4n), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(4n), .vtp-filter-panel-models .model-grid > li:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(4n + 1), .vtp-filter-panel-regions .model-grid > li:nth-of-type(4n + 1), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(4n + 1), .vtp-filter-panel-models .model-grid > li:nth-of-type(4n + 1) {
  clear: both;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-panel-regions .model-grid .model-result-grid > li, .vtp-filter-panel-regions .model-grid > li, .vtp-filter-panel-models .model-grid .model-result-grid > li, .vtp-filter-panel-models .model-grid > li {
    float: left;
    clear: none;
    width: 33.2666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(4n), .vtp-filter-panel-regions .model-grid > li:nth-of-type(4n), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(4n), .vtp-filter-panel-models .model-grid > li:nth-of-type(4n) {
    margin-right: 0;
    float: left;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(4n + 1), .vtp-filter-panel-regions .model-grid > li:nth-of-type(4n + 1), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(4n + 1), .vtp-filter-panel-models .model-grid > li:nth-of-type(4n + 1) {
    clear: none;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(n), .vtp-filter-panel-regions .model-grid > li:nth-of-type(n), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(n), .vtp-filter-panel-models .model-grid > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(3n), .vtp-filter-panel-regions .model-grid > li:nth-of-type(3n), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(3n), .vtp-filter-panel-models .model-grid > li:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(3n + 1), .vtp-filter-panel-regions .model-grid > li:nth-of-type(3n + 1), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(3n + 1), .vtp-filter-panel-models .model-grid > li:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-filter-panel-regions .model-grid .model-result-grid > li, .vtp-filter-panel-regions .model-grid > li, .vtp-filter-panel-models .model-grid .model-result-grid > li, .vtp-filter-panel-models .model-grid > li {
    float: left;
    clear: none;
    width: 49.9%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(3n), .vtp-filter-panel-regions .model-grid > li:nth-of-type(3n), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(3n), .vtp-filter-panel-models .model-grid > li:nth-of-type(3n) {
    margin-right: 0;
    float: left;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(3n + 1), .vtp-filter-panel-regions .model-grid > li:nth-of-type(3n + 1), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(3n + 1), .vtp-filter-panel-models .model-grid > li:nth-of-type(3n + 1) {
    clear: none;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(n), .vtp-filter-panel-regions .model-grid > li:nth-of-type(n), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(n), .vtp-filter-panel-models .model-grid > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(2n), .vtp-filter-panel-regions .model-grid > li:nth-of-type(2n), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(2n), .vtp-filter-panel-models .model-grid > li:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(2n + 1), .vtp-filter-panel-regions .model-grid > li:nth-of-type(2n + 1), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(2n + 1), .vtp-filter-panel-models .model-grid > li:nth-of-type(2n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .model-grid .model-result-grid > li, .vtp-filter-panel-regions .model-grid > li, .vtp-filter-panel-models .model-grid .model-result-grid > li, .vtp-filter-panel-models .model-grid > li {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:first-child, .vtp-filter-panel-regions .model-grid > li:first-child, .vtp-filter-panel-models .model-grid .model-result-grid > li:first-child, .vtp-filter-panel-models .model-grid > li:first-child {
    margin-left: auto;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:last-child, .vtp-filter-panel-regions .model-grid > li:last-child, .vtp-filter-panel-models .model-grid .model-result-grid > li:last-child, .vtp-filter-panel-models .model-grid > li:last-child {
    margin-right: auto;
  }
}

.vtp-filter-panel-models .vtp-icon-rs {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -523px;
  background-repeat: no-repeat;
  width: 16px;
  height: 10px;
  color: red !important;
  display: inline-block;
  margin: 0 2px 0 0;
  vertical-align: -1px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-models .vtp-icon-rs {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-filter-panel-models .flex-center {
  margin-bottom: 20px;
  margin-bottom: 1.6666666667rem;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-models .flex-center {
    margin-bottom: 30px;
    margin-bottom: 2.5rem;
  }
}
.vtp-filter-panel-models .vtp-btn.expand, .vtp-filter-panel-models .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-filter-panel-models .expand.vtp-btn {
  margin-top: 40px;
  margin-top: 3.3333333333rem;
  /*@include rem(width, 210px);*/
  margin-bottom: 0;
}
.vtp-filter-panel-models .vtp-accordion {
  margin-top: 48px;
  margin-top: 4rem;
}
.vtp-filter-panel-models .model-grid {
  position: relative;
  overflow: hidden;
}
.vtp-filter-panel-models .model-grid .collapse-toggle {
  background-color: white;
  border-bottom: none;
}
.vtp-filter-panel-models .model-grid .collapse-toggle:after {
  display: none;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-models .model-grid .collapse-toggle {
    padding-top: 19px;
    padding-top: 1.5833333333rem;
    font-size: 12px;
    font-size: 1rem;
    padding-bottom: 16px;
    padding-bottom: 1.3333333333rem;
    background: #e7e9ea;
    border-bottom: 1px solid #cdd0d2;
    cursor: pointer;
    font-family: "AudiTypeExtBold", Verdana, sans-serif;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0;
    padding-left: 4%;
    position: relative;
    left: 0;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
  }
  .vtp-filter-panel-models .model-grid .collapse-toggle:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -172px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
    content: "";
    position: absolute;
    right: 4%;
    top: 50%;
    margin-top: -4px;
    display: block;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-filter-panel-models .model-grid .collapse-toggle:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-models .model-grid .collapse-toggle.active:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -226px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-filter-panel-models .model-grid .collapse-toggle.active:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-filter-panel-models .model-grid > li {
  margin-right: 0 !important;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="1"] {
  padding-bottom: 52.25%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="2"] {
  padding-bottom: 52.25%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="3"] {
  padding-bottom: 52.25%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="4"] {
  padding-bottom: 52.25%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="5"] {
  padding-bottom: 104.5%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="6"] {
  padding-bottom: 104.5%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="7"] {
  padding-bottom: 104.5%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="8"] {
  padding-bottom: 104.5%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="9"] {
  padding-bottom: 156.75%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="10"] {
  padding-bottom: 156.75%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="11"] {
  padding-bottom: 156.75%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="12"] {
  padding-bottom: 156.75%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="13"] {
  padding-bottom: 209%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="14"] {
  padding-bottom: 209%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="15"] {
  padding-bottom: 209%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="16"] {
  padding-bottom: 209%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="17"] {
  padding-bottom: 261.25%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="18"] {
  padding-bottom: 261.25%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="19"] {
  padding-bottom: 261.25%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="20"] {
  padding-bottom: 261.25%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="21"] {
  padding-bottom: 313.5%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="22"] {
  padding-bottom: 313.5%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="23"] {
  padding-bottom: 313.5%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="24"] {
  padding-bottom: 313.5%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="25"] {
  padding-bottom: 365.75%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="26"] {
  padding-bottom: 365.75%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="27"] {
  padding-bottom: 365.75%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="28"] {
  padding-bottom: 365.75%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="29"] {
  padding-bottom: 418%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="30"] {
  padding-bottom: 418%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="31"] {
  padding-bottom: 418%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="32"] {
  padding-bottom: 418%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="33"] {
  padding-bottom: 470.25%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="34"] {
  padding-bottom: 470.25%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="35"] {
  padding-bottom: 470.25%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="36"] {
  padding-bottom: 470.25%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="37"] {
  padding-bottom: 522.5%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="38"] {
  padding-bottom: 522.5%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="39"] {
  padding-bottom: 522.5%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="40"] {
  padding-bottom: 522.5%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="41"] {
  padding-bottom: 574.75%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="42"] {
  padding-bottom: 574.75%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="43"] {
  padding-bottom: 574.75%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="44"] {
  padding-bottom: 574.75%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="45"] {
  padding-bottom: 627%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="46"] {
  padding-bottom: 627%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="47"] {
  padding-bottom: 627%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="48"] {
  padding-bottom: 627%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="49"] {
  padding-bottom: 679.25%;
}
.vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="50"] {
  padding-bottom: 679.25%;
}
.vtp-filter-panel-models .model-grid > li .filter-results {
  margin-left: 0;
}
.vtp-filter-panel-models .model-grid > li:nth-of-type(4n+2) .filter-results {
  margin-left: -100%;
}
.vtp-filter-panel-models .model-grid > li:nth-of-type(4n+3) .filter-results {
  margin-left: -200%;
}
.vtp-filter-panel-models .model-grid > li:nth-of-type(4n+4) .filter-results {
  margin-left: -300%;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="1"] {
    padding-bottom: 52.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="2"] {
    padding-bottom: 52.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="3"] {
    padding-bottom: 52.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="4"] {
    padding-bottom: 104.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="5"] {
    padding-bottom: 104.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="6"] {
    padding-bottom: 104.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="7"] {
    padding-bottom: 156.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="8"] {
    padding-bottom: 156.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="9"] {
    padding-bottom: 156.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="10"] {
    padding-bottom: 209%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="11"] {
    padding-bottom: 209%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="12"] {
    padding-bottom: 209%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="13"] {
    padding-bottom: 261.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="14"] {
    padding-bottom: 261.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="15"] {
    padding-bottom: 261.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="16"] {
    padding-bottom: 313.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="17"] {
    padding-bottom: 313.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="18"] {
    padding-bottom: 313.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="19"] {
    padding-bottom: 365.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="20"] {
    padding-bottom: 365.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="21"] {
    padding-bottom: 365.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="22"] {
    padding-bottom: 418%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="23"] {
    padding-bottom: 418%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="24"] {
    padding-bottom: 418%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="25"] {
    padding-bottom: 470.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="26"] {
    padding-bottom: 470.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="27"] {
    padding-bottom: 470.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="28"] {
    padding-bottom: 522.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="29"] {
    padding-bottom: 522.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="30"] {
    padding-bottom: 522.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="31"] {
    padding-bottom: 574.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="32"] {
    padding-bottom: 574.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="33"] {
    padding-bottom: 574.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="34"] {
    padding-bottom: 627%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="35"] {
    padding-bottom: 627%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="36"] {
    padding-bottom: 627%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="37"] {
    padding-bottom: 679.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="38"] {
    padding-bottom: 679.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="39"] {
    padding-bottom: 679.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="40"] {
    padding-bottom: 731.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="41"] {
    padding-bottom: 731.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="42"] {
    padding-bottom: 731.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="43"] {
    padding-bottom: 783.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="44"] {
    padding-bottom: 783.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="45"] {
    padding-bottom: 783.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="46"] {
    padding-bottom: 836%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="47"] {
    padding-bottom: 836%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="48"] {
    padding-bottom: 836%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="49"] {
    padding-bottom: 888.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="50"] {
    padding-bottom: 888.25%;
  }
  .vtp-filter-panel-models .model-grid > li:nth-of-type(3n+1) .filter-results {
    margin-left: 0;
  }
  .vtp-filter-panel-models .model-grid > li:nth-of-type(3n+2) .filter-results {
    margin-left: -100%;
  }
  .vtp-filter-panel-models .model-grid > li:nth-of-type(3n+3) .filter-results {
    margin-left: -200%;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="1"] {
    padding-bottom: 52.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="2"] {
    padding-bottom: 52.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="3"] {
    padding-bottom: 104.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="4"] {
    padding-bottom: 104.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="5"] {
    padding-bottom: 156.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="6"] {
    padding-bottom: 156.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="7"] {
    padding-bottom: 209%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="8"] {
    padding-bottom: 209%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="9"] {
    padding-bottom: 261.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="10"] {
    padding-bottom: 261.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="11"] {
    padding-bottom: 313.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="12"] {
    padding-bottom: 313.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="13"] {
    padding-bottom: 365.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="14"] {
    padding-bottom: 365.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="15"] {
    padding-bottom: 418%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="16"] {
    padding-bottom: 418%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="17"] {
    padding-bottom: 470.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="18"] {
    padding-bottom: 470.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="19"] {
    padding-bottom: 522.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="20"] {
    padding-bottom: 522.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="21"] {
    padding-bottom: 574.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="22"] {
    padding-bottom: 574.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="23"] {
    padding-bottom: 627%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="24"] {
    padding-bottom: 627%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="25"] {
    padding-bottom: 679.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="26"] {
    padding-bottom: 679.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="27"] {
    padding-bottom: 731.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="28"] {
    padding-bottom: 731.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="29"] {
    padding-bottom: 783.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="30"] {
    padding-bottom: 783.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="31"] {
    padding-bottom: 836%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="32"] {
    padding-bottom: 836%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="33"] {
    padding-bottom: 888.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="34"] {
    padding-bottom: 888.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="35"] {
    padding-bottom: 940.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="36"] {
    padding-bottom: 940.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="37"] {
    padding-bottom: 992.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="38"] {
    padding-bottom: 992.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="39"] {
    padding-bottom: 1045%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="40"] {
    padding-bottom: 1045%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="41"] {
    padding-bottom: 1097.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="42"] {
    padding-bottom: 1097.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="43"] {
    padding-bottom: 1149.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="44"] {
    padding-bottom: 1149.5%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="45"] {
    padding-bottom: 1201.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="46"] {
    padding-bottom: 1201.75%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="47"] {
    padding-bottom: 1254%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="48"] {
    padding-bottom: 1254%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="49"] {
    padding-bottom: 1306.25%;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="50"] {
    padding-bottom: 1306.25%;
  }
  .vtp-filter-panel-models .model-grid > li:nth-of-type(2n+1) .filter-results {
    margin-left: 0;
  }
  .vtp-filter-panel-models .model-grid > li:nth-of-type(2n+2) .filter-results {
    margin-left: -100%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-models .model-grid > li {
    overflow: visible;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="1"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="2"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="3"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="4"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="5"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="6"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="7"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="8"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="9"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="10"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="11"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="12"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="13"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="14"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="15"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="16"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="17"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="18"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="19"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="20"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="21"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="22"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="23"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="24"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="25"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="26"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="27"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="28"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="29"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="30"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="31"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="32"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="33"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="34"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="35"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="36"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="37"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="38"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="39"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="40"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="41"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="42"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="43"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="44"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="45"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="46"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="47"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="48"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="49"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li .filter-results[data-result-count="50"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-models .model-grid > li:nth-of-type(1n+1) .filter-results {
    margin-left: 0;
  }
}
.vtp-filter-panel-models .model-grid .vtp-filter-label {
  position: relative;
  padding-top: 52.25%;
  cursor: pointer;
  -webkit-transition: background 0.1s ease-in-out;
  -o-transition: background 0.1s ease-in-out;
  transition: background 0.1s ease-in-out;
}
.no-touch .vtp-filter-panel-models .model-grid .vtp-filter-label:hover {
  background-color: #e7e9ea;
}
.vtp-filter-panel-models .model-grid .vtp-filter-label p, .vtp-filter-panel-models .model-grid .vtp-filter-label a {
  position: absolute;
  top: 80%;
  left: 10px;
  left: 0.8333333333rem;
  line-height: 15.6px;
  line-height: 1.3rem;
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-models .model-grid .vtp-filter-label p, .vtp-filter-panel-models .model-grid .vtp-filter-label a {
    position: relative;
    font-size: 12px;
    font-size: 1rem;
    line-height: 12px;
    line-height: 1rem;
    top: auto;
    bottom: 0;
    left: 0;
  }
  .vtp-filter-panel-models .model-grid .vtp-filter-label p .vtp-icon-rs, .vtp-filter-panel-models .model-grid .vtp-filter-label a .vtp-icon-rs {
    margin: 0 4px 0 0;
    vertical-align: 0;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-models .model-grid .vtp-filter-label {
    background-image: none;
    padding-top: 24px;
    padding-top: 2rem;
    padding-bottom: 24px;
    padding-bottom: 2rem;
  }
  .vtp-filter-panel-models .model-grid .vtp-filter-label:hover {
    background-image: none;
  }
}
.vtp-filter-panel-models .model-grid .vtp-filter-label.active {
  background-color: #e7e9ea;
}
.vtp-filter-panel-models .model-grid .vtp-filter-label.active .vtp-filter-select-all {
  display: block;
}
.vtp-filter-panel-models .model-grid .vtp-filter-label.active .vtp-filter-select-all label span {
  display: none;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-models .model-grid .vtp-filter-label.active .vtp-filter-select-all {
    display: none;
  }
}
.vtp-filter-panel-models .model-grid .model-result-grid {
  overflow: hidden;
  background-color: #e7e9ea;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-models .model-grid .model-result-grid {
    background-color: transparent;
    margin: 0 4%;
  }
}
.vtp-filter-panel-models .model-grid .model-result-grid .checkbox-primary + label {
  min-height: 0;
  padding-left: 0;
}
.vtp-filter-panel-models .model-grid .model-result-grid .checkbox-primary + label:before,
.vtp-filter-panel-models .model-grid .model-result-grid .checkbox-primary + .label:before {
  position: absolute;
  margin: 0;
  top: 10px;
  top: 0.8333333333rem;
  right: 10px;
  right: 0.8333333333rem;
}
.vtp-filter-panel-models .model-grid .model-result-grid label {
  display: block;
  position: relative;
  padding-top: 52.25%;
  margin: 0;
  height: 0;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-models .model-grid .model-result-grid label {
    height: 80px;
    height: 6.6666666667rem;
    display: table;
    padding: 0;
    background-size: auto 80px;
    background-position: left center;
    position: relative;
  }
  .vtp-filter-panel-models .model-grid .model-result-grid label:after {
    top: 25px;
  }
}
.vtp-filter-panel-models .model-grid .model-result-grid label p, .vtp-filter-panel-models .model-grid .model-result-grid label a {
  position: absolute;
  top: 80%;
  left: 10px;
  left: 0.8333333333rem;
  line-height: 15.6px;
  line-height: 1.3rem;
  width: 100%;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-models .model-grid .model-result-grid label p, .vtp-filter-panel-models .model-grid .model-result-grid label a {
    position: relative;
    display: table-cell;
    background-color: transparent;
    vertical-align: middle;
    top: auto;
    bottom: 0;
    padding-left: 150px;
    padding-left: 12.5rem;
    padding-right: 40px;
    padding-right: 3.3333333333rem;
  }
}
.vtp-filter-panel-models .model-grid .model-result-grid label a {
  pointer-events: none;
}
.vtp-filter-panel-models .model-grid .model-result-grid label.fp-model--fallback:before {
  top: auto;
  bottom: 39%;
  left: 10px;
}
.vtp-filter-panel-models .model-grid .model-result-grid label.fp-model--fallback p {
  bottom: 40%;
  left: 50px;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-models .model-grid .model-result-grid {
    position: relative;
    width: auto;
    height: auto;
  }
  .vtp-filter-panel-models .model-grid .model-result-grid > li {
    margin: 0;
  }
  .vtp-filter-panel-models .model-grid .model-result-grid > li.vtp-model-blank label {
    height: 50px;
    height: 4.1666666667rem;
  }
  .vtp-filter-panel-models .model-grid .model-result-grid > li.vtp-model-blank label p {
    padding-left: 0;
    left: 0;
    bottom: 0;
  }
  .vtp-filter-panel-models .model-grid .model-result-grid > li.vtp-model-blank label:after {
    top: 10px;
  }
  .vtp-filter-panel-models .model-grid .model-result-grid > li.vtp-model-image .resultcount {
    display: block;
  }
  .vtp-filter-panel-models .model-grid .model-result-grid > li:after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
  .vtp-filter-panel-models .model-grid .model-result-grid > li:last-child:after {
    border-bottom: none;
  }
}
.vtp-filter-panel-models .model-grid .filter-results {
  position: relative;
  width: 400%;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-panel-models .model-grid .filter-results {
    width: 300%;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-filter-panel-models .model-grid .filter-results {
    width: 200%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-models .model-grid .filter-results {
    width: 100%;
  }
}
.vtp-filter-panel-models .model-grid .filter-results .vtp-filter-select-all {
  display: none;
  margin: 0 4%;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-models .model-grid .filter-results .vtp-filter-select-all {
    display: block;
  }
  .vtp-filter-panel-models .model-grid .filter-results .vtp-filter-select-all label {
    display: block;
  }
  .vtp-filter-panel-models .model-grid .filter-results .vtp-filter-select-all:after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
}
.vtp-filter-panel-models .model-grid .vtp-model-active-counter,
.vtp-filter-panel-models .model-grid .vtp-filter-label .vtp-filter-select-all {
  position: absolute;
  margin: 0;
}
.vtp-filter-panel-models .model-grid .vtp-model-active-counter {
  display: none;
}
.vtp-filter-panel-models .model-grid .vtp-filter-label .vtp-filter-select-all {
  display: block;
  top: 11px;
  top: 0.9166666667rem;
  right: 10px;
  right: 0.8333333333rem;
}
.vtp-filter-panel-models .model-grid .vtp-filter-label .vtp-filter-select-all label {
  display: block;
  position: relative;
  min-height: 30px;
  min-height: 2.5rem;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3532px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  color: #fff;
  line-height: 30px;
  text-align: center;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-models .model-grid .vtp-filter-label .vtp-filter-select-all label {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-filter-panel-models .model-grid .vtp-filter-label .vtp-filter-select-all label:before {
  display: none;
  content: "";
  background: none;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-models .model-grid .vtp-filter-label .vtp-filter-select-all {
    display: none;
  }
}
.vtp-filter-panel-models .model-grid .has-counter .vtp-filter-label .vtp-filter-select-all {
  display: block;
}
.vtp-filter-panel-models .model-grid .has-counter .vtp-filter-label .vtp-filter-select-all label {
  display: block;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3412px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-models .model-grid .has-counter .vtp-filter-label .vtp-filter-select-all label {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-filter-panel-models .model-grid .has-counter .vtp-filter-label .vtp-filter-select-all label:before {
  content: " ";
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-models .model-grid .has-counter .vtp-filter-label .vtp-filter-select-all {
    display: none;
  }
}
.vtp-filter-panel-models .model-grid .has-counter .filter-results .vtp-filter-select-all {
  display: none;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-models .model-grid .has-counter .filter-results .vtp-filter-select-all {
    display: block;
  }
  .vtp-filter-panel-models .model-grid .has-counter .filter-results .vtp-filter-select-all label {
    display: block;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-models .vtp-filter-fields-2-1-1 fieldset:last-child:after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
  .vtp-filter-panel-models .tab-content {
    margin: 0 -4%;
  }
  .vtp-filter-panel-models .vtp-accordion {
    margin: 0;
  }
  .vtp-filter-panel-models .vtp-accordion > ul {
    margin: 0 4%;
  }
  .vtp-filter-panel-models .vtp-accordion > ul > li:first-child:before {
    border-top: none;
  }
  .vtp-filter-panel-models .vtp-accordion > ul > li:last-child {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
  .vtp-filter-panel-models .vtp-btn.toggle, .vtp-filter-panel-models .vtp-compare-bar.compare-enabled .action-holder .toggle.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-filter-panel-models .toggle.vtp-btn {
    height: 48px;
    height: 4rem;
    width: 50%;
    padding: 14px 5px;
  }
  .vtp-filter-panel-models .vtp-btn.expand, .vtp-filter-panel-models .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-filter-panel-models .expand.vtp-btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: "AudiTypeExtBold", Verdana, sans-serif !important;
    font-weight: 700;
    position: relative;
    top: 0;
    left: 0;
    cursor: pointer;
    margin-bottom: 0 !important;
    margin-bottom: 0;
    margin-top: 0;
    width: 100%;
    background: #e7e9ea;
    border-bottom: 1px solid #cdd0d2;
    padding-top: 24px;
    padding-top: 2rem;
    padding-bottom: 24px;
    padding-bottom: 2rem;
    padding-left: 4%;
    font-size: 12px;
    font-size: 1rem;
    text-align: left;
    line-height: 1;
    color: black;
  }
  .vtp-filter-panel-models .vtp-btn.expand:after, .vtp-filter-panel-models .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn:after, .vtp-compare-bar.compare-enabled .action-holder .vtp-filter-panel-models .expand.vtp-btn:after {
    left: auto;
    content: "";
    background-image: url(../images/sprite-common.png);
    background-position: 0px -172px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
    position: absolute;
    right: 4%;
    top: 50%;
    margin-top: -4px;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-filter-panel-models .vtp-btn.expand:after, .vtp-filter-panel-models .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn:after, .vtp-compare-bar.compare-enabled .action-holder .vtp-filter-panel-models .expand.vtp-btn:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-models .vtp-btn.expand.active:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -226px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-filter-panel-models .vtp-btn.expand.active:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-models .has-counter .vtp-model-active-counter {
    display: block;
    right: 48px;
    right: 4rem;
    top: 15px;
    top: 1.25rem;
    width: 30px;
    width: 2.5rem;
    height: 30px;
    height: 2.5rem;
    border-radius: 50%;
    line-height: 32px;
    text-align: center;
    background-color: #c03;
    color: #fff;
  }
}

.vtp-filter-panel-regions .model-grid .model-result-grid, .vtp-filter-panel-regions .model-grid, .vtp-filter-panel-models .model-grid, .vtp-filter-panel-models .model-grid .model-result-grid {
  *zoom: 1;
}
.vtp-filter-panel-regions .model-grid .model-result-grid:before, .vtp-filter-panel-regions .model-grid:before, .vtp-filter-panel-models .model-grid:before, .vtp-filter-panel-models .model-grid .model-result-grid:before, .vtp-filter-panel-regions .model-grid .model-result-grid:after, .vtp-filter-panel-regions .model-grid:after, .vtp-filter-panel-models .model-grid:after, .vtp-filter-panel-models .model-grid .model-result-grid:after {
  content: "";
  display: table;
}
.vtp-filter-panel-regions .model-grid .model-result-grid:after, .vtp-filter-panel-regions .model-grid:after, .vtp-filter-panel-models .model-grid:after, .vtp-filter-panel-models .model-grid .model-result-grid:after {
  clear: both;
}
.vtp-filter-panel-regions .model-grid .model-result-grid > li, .vtp-filter-panel-regions .model-grid > li, .vtp-filter-panel-models .model-grid > li, .vtp-filter-panel-models .model-grid .model-result-grid > li {
  float: left;
  clear: none;
  width: 24.95%;
  margin-left: 0;
  margin-right: 0;
}
.vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(n), .vtp-filter-panel-regions .model-grid > li:nth-of-type(n), .vtp-filter-panel-models .model-grid > li:nth-of-type(n), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(n) {
  margin-right: 0;
  float: left;
  clear: none;
}
.vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(4n), .vtp-filter-panel-regions .model-grid > li:nth-of-type(4n), .vtp-filter-panel-models .model-grid > li:nth-of-type(4n), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(4n + 1), .vtp-filter-panel-regions .model-grid > li:nth-of-type(4n + 1), .vtp-filter-panel-models .model-grid > li:nth-of-type(4n + 1), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(4n + 1) {
  clear: both;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-panel-regions .model-grid .model-result-grid > li, .vtp-filter-panel-regions .model-grid > li, .vtp-filter-panel-models .model-grid > li, .vtp-filter-panel-models .model-grid .model-result-grid > li {
    float: left;
    clear: none;
    width: 33.2666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(4n), .vtp-filter-panel-regions .model-grid > li:nth-of-type(4n), .vtp-filter-panel-models .model-grid > li:nth-of-type(4n), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(4n) {
    margin-right: 0;
    float: left;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(4n + 1), .vtp-filter-panel-regions .model-grid > li:nth-of-type(4n + 1), .vtp-filter-panel-models .model-grid > li:nth-of-type(4n + 1), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(4n + 1) {
    clear: none;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(n), .vtp-filter-panel-regions .model-grid > li:nth-of-type(n), .vtp-filter-panel-models .model-grid > li:nth-of-type(n), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(3n), .vtp-filter-panel-regions .model-grid > li:nth-of-type(3n), .vtp-filter-panel-models .model-grid > li:nth-of-type(3n), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(3n + 1), .vtp-filter-panel-regions .model-grid > li:nth-of-type(3n + 1), .vtp-filter-panel-models .model-grid > li:nth-of-type(3n + 1), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-filter-panel-regions .model-grid .model-result-grid > li, .vtp-filter-panel-regions .model-grid > li, .vtp-filter-panel-models .model-grid > li, .vtp-filter-panel-models .model-grid .model-result-grid > li {
    float: left;
    clear: none;
    width: 49.9%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(3n), .vtp-filter-panel-regions .model-grid > li:nth-of-type(3n), .vtp-filter-panel-models .model-grid > li:nth-of-type(3n), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(3n) {
    margin-right: 0;
    float: left;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(3n + 1), .vtp-filter-panel-regions .model-grid > li:nth-of-type(3n + 1), .vtp-filter-panel-models .model-grid > li:nth-of-type(3n + 1), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(3n + 1) {
    clear: none;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(n), .vtp-filter-panel-regions .model-grid > li:nth-of-type(n), .vtp-filter-panel-models .model-grid > li:nth-of-type(n), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(2n), .vtp-filter-panel-regions .model-grid > li:nth-of-type(2n), .vtp-filter-panel-models .model-grid > li:nth-of-type(2n), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:nth-of-type(2n + 1), .vtp-filter-panel-regions .model-grid > li:nth-of-type(2n + 1), .vtp-filter-panel-models .model-grid > li:nth-of-type(2n + 1), .vtp-filter-panel-models .model-grid .model-result-grid > li:nth-of-type(2n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .model-grid .model-result-grid > li, .vtp-filter-panel-regions .model-grid > li, .vtp-filter-panel-models .model-grid > li, .vtp-filter-panel-models .model-grid .model-result-grid > li {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:first-child, .vtp-filter-panel-regions .model-grid > li:first-child, .vtp-filter-panel-models .model-grid > li:first-child, .vtp-filter-panel-models .model-grid .model-result-grid > li:first-child {
    margin-left: auto;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:last-child, .vtp-filter-panel-regions .model-grid > li:last-child, .vtp-filter-panel-models .model-grid > li:last-child, .vtp-filter-panel-models .model-grid .model-result-grid > li:last-child {
    margin-right: auto;
  }
}

@media only screen and (min-width: 568px) {
  .vtp-filter-region-tab {
    padding-bottom: 30px;
  }
}
.vtp-filter-panel-regions .vtp-icon-rs {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -523px;
  background-repeat: no-repeat;
  width: 16px;
  height: 10px;
  color: red !important;
  display: inline-block;
  margin: 0 2px 0 0;
  vertical-align: -1px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-regions .vtp-icon-rs {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-filter-panel-regions .flex-center {
  margin-bottom: 20px;
  margin-bottom: 1.6666666667rem;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .flex-center {
    margin-bottom: 30px;
    margin-bottom: 2.5rem;
  }
}
.vtp-filter-panel-regions .vtp-btn.expand, .vtp-filter-panel-regions .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-filter-panel-regions .expand.vtp-btn {
  margin-top: 40px;
  margin-top: 3.3333333333rem;
  /*@include rem(width, 210px);*/
  margin-bottom: 0;
}
.vtp-filter-panel-regions .vtp-accordion {
  margin-top: 48px;
  margin-top: 4rem;
}
.vtp-filter-panel-regions .tab-content .vtp-title {
  font-size: 18px;
}
.vtp-filter-panel-regions .tab-content .vtp-subtitle {
  font-size: 12px;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .tab-content .vtp-title, .vtp-filter-panel-regions .tab-content .vtp-subtitle {
    padding-left: 20px;
    padding-left: 1.6666666667rem;
  }
  .vtp-filter-panel-regions .tab-content .vtp-subtitle {
    margin-bottom: 20px;
  }
}
.vtp-filter-panel-regions .vtp-tab-pane {
  clear: both;
}
.vtp-filter-panel-regions .model-grid {
  position: relative;
  overflow: hidden;
}
.vtp-filter-panel-regions .model-grid .collapse-toggle {
  background-color: white;
  background-size: auto 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-bottom: none;
}
.vtp-filter-panel-regions .model-grid .collapse-toggle:after {
  display: none;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .model-grid .collapse-toggle {
    padding-top: 19px;
    padding-top: 1.5833333333rem;
    font-size: 12px;
    font-size: 1rem;
    padding-bottom: 16px;
    padding-bottom: 1.3333333333rem;
    background: #e7e9ea;
    border-bottom: 1px solid #cdd0d2;
    cursor: pointer;
    font-family: "AudiTypeExtBold", Verdana, sans-serif;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0;
    padding-left: 4%;
    position: relative;
    left: 0;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
  }
  .vtp-filter-panel-regions .model-grid .collapse-toggle:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -172px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
    content: "";
    position: absolute;
    right: 4%;
    top: 50%;
    margin-top: -4px;
    display: block;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-filter-panel-regions .model-grid .collapse-toggle:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .model-grid .collapse-toggle.active:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -226px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-filter-panel-regions .model-grid .collapse-toggle.active:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="1"] {
  padding-bottom: 23%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="2"] {
  padding-bottom: 23%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="3"] {
  padding-bottom: 23%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="4"] {
  padding-bottom: 23%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="5"] {
  padding-bottom: 46%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="6"] {
  padding-bottom: 46%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="7"] {
  padding-bottom: 46%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="8"] {
  padding-bottom: 46%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="9"] {
  padding-bottom: 69%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="10"] {
  padding-bottom: 69%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="11"] {
  padding-bottom: 69%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="12"] {
  padding-bottom: 69%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="13"] {
  padding-bottom: 92%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="14"] {
  padding-bottom: 92%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="15"] {
  padding-bottom: 92%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="16"] {
  padding-bottom: 92%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="17"] {
  padding-bottom: 115%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="18"] {
  padding-bottom: 115%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="19"] {
  padding-bottom: 115%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="20"] {
  padding-bottom: 115%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="21"] {
  padding-bottom: 138%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="22"] {
  padding-bottom: 138%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="23"] {
  padding-bottom: 138%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="24"] {
  padding-bottom: 138%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="25"] {
  padding-bottom: 161%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="26"] {
  padding-bottom: 161%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="27"] {
  padding-bottom: 161%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="28"] {
  padding-bottom: 161%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="29"] {
  padding-bottom: 184%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="30"] {
  padding-bottom: 184%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="31"] {
  padding-bottom: 184%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="32"] {
  padding-bottom: 184%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="33"] {
  padding-bottom: 207%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="34"] {
  padding-bottom: 207%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="35"] {
  padding-bottom: 207%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="36"] {
  padding-bottom: 207%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="37"] {
  padding-bottom: 230%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="38"] {
  padding-bottom: 230%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="39"] {
  padding-bottom: 230%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="40"] {
  padding-bottom: 230%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="41"] {
  padding-bottom: 253%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="42"] {
  padding-bottom: 253%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="43"] {
  padding-bottom: 253%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="44"] {
  padding-bottom: 253%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="45"] {
  padding-bottom: 276%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="46"] {
  padding-bottom: 276%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="47"] {
  padding-bottom: 276%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="48"] {
  padding-bottom: 276%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="49"] {
  padding-bottom: 299%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="50"] {
  padding-bottom: 299%;
}
.vtp-filter-panel-regions .model-grid > li .filter-results {
  margin-left: 0;
}
.vtp-filter-panel-regions .model-grid > li:nth-of-type(4n+2) .filter-results {
  margin-left: -100%;
}
.vtp-filter-panel-regions .model-grid > li:nth-of-type(4n+3) .filter-results {
  margin-left: -200%;
}
.vtp-filter-panel-regions .model-grid > li:nth-of-type(4n+4) .filter-results {
  margin-left: -300%;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="1"] {
    padding-bottom: 23%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="2"] {
    padding-bottom: 23%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="3"] {
    padding-bottom: 23%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="4"] {
    padding-bottom: 46%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="5"] {
    padding-bottom: 46%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="6"] {
    padding-bottom: 46%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="7"] {
    padding-bottom: 69%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="8"] {
    padding-bottom: 69%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="9"] {
    padding-bottom: 69%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="10"] {
    padding-bottom: 92%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="11"] {
    padding-bottom: 92%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="12"] {
    padding-bottom: 92%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="13"] {
    padding-bottom: 115%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="14"] {
    padding-bottom: 115%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="15"] {
    padding-bottom: 115%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="16"] {
    padding-bottom: 138%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="17"] {
    padding-bottom: 138%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="18"] {
    padding-bottom: 138%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="19"] {
    padding-bottom: 161%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="20"] {
    padding-bottom: 161%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="21"] {
    padding-bottom: 161%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="22"] {
    padding-bottom: 184%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="23"] {
    padding-bottom: 184%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="24"] {
    padding-bottom: 184%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="25"] {
    padding-bottom: 207%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="26"] {
    padding-bottom: 207%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="27"] {
    padding-bottom: 207%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="28"] {
    padding-bottom: 230%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="29"] {
    padding-bottom: 230%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="30"] {
    padding-bottom: 230%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="31"] {
    padding-bottom: 253%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="32"] {
    padding-bottom: 253%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="33"] {
    padding-bottom: 253%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="34"] {
    padding-bottom: 276%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="35"] {
    padding-bottom: 276%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="36"] {
    padding-bottom: 276%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="37"] {
    padding-bottom: 299%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="38"] {
    padding-bottom: 299%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="39"] {
    padding-bottom: 299%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="40"] {
    padding-bottom: 322%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="41"] {
    padding-bottom: 322%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="42"] {
    padding-bottom: 322%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="43"] {
    padding-bottom: 345%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="44"] {
    padding-bottom: 345%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="45"] {
    padding-bottom: 345%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="46"] {
    padding-bottom: 368%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="47"] {
    padding-bottom: 368%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="48"] {
    padding-bottom: 368%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="49"] {
    padding-bottom: 391%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="50"] {
    padding-bottom: 391%;
  }
  .vtp-filter-panel-regions .model-grid > li:nth-of-type(3n+1) .filter-results {
    margin-left: 0;
  }
  .vtp-filter-panel-regions .model-grid > li:nth-of-type(3n+2) .filter-results {
    margin-left: -100%;
  }
  .vtp-filter-panel-regions .model-grid > li:nth-of-type(3n+3) .filter-results {
    margin-left: -200%;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="1"] {
    padding-bottom: 23%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="2"] {
    padding-bottom: 23%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="3"] {
    padding-bottom: 46%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="4"] {
    padding-bottom: 46%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="5"] {
    padding-bottom: 69%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="6"] {
    padding-bottom: 69%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="7"] {
    padding-bottom: 92%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="8"] {
    padding-bottom: 92%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="9"] {
    padding-bottom: 115%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="10"] {
    padding-bottom: 115%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="11"] {
    padding-bottom: 138%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="12"] {
    padding-bottom: 138%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="13"] {
    padding-bottom: 161%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="14"] {
    padding-bottom: 161%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="15"] {
    padding-bottom: 184%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="16"] {
    padding-bottom: 184%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="17"] {
    padding-bottom: 207%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="18"] {
    padding-bottom: 207%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="19"] {
    padding-bottom: 230%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="20"] {
    padding-bottom: 230%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="21"] {
    padding-bottom: 253%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="22"] {
    padding-bottom: 253%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="23"] {
    padding-bottom: 276%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="24"] {
    padding-bottom: 276%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="25"] {
    padding-bottom: 299%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="26"] {
    padding-bottom: 299%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="27"] {
    padding-bottom: 322%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="28"] {
    padding-bottom: 322%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="29"] {
    padding-bottom: 345%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="30"] {
    padding-bottom: 345%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="31"] {
    padding-bottom: 368%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="32"] {
    padding-bottom: 368%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="33"] {
    padding-bottom: 391%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="34"] {
    padding-bottom: 391%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="35"] {
    padding-bottom: 414%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="36"] {
    padding-bottom: 414%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="37"] {
    padding-bottom: 437%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="38"] {
    padding-bottom: 437%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="39"] {
    padding-bottom: 460%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="40"] {
    padding-bottom: 460%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="41"] {
    padding-bottom: 483%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="42"] {
    padding-bottom: 483%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="43"] {
    padding-bottom: 506%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="44"] {
    padding-bottom: 506%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="45"] {
    padding-bottom: 529%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="46"] {
    padding-bottom: 529%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="47"] {
    padding-bottom: 552%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="48"] {
    padding-bottom: 552%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="49"] {
    padding-bottom: 575%;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="50"] {
    padding-bottom: 575%;
  }
  .vtp-filter-panel-regions .model-grid > li:nth-of-type(2n+1) .filter-results {
    margin-left: 0;
  }
  .vtp-filter-panel-regions .model-grid > li:nth-of-type(2n+2) .filter-results {
    margin-left: -100%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .model-grid > li {
    overflow: visible;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="1"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="2"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="3"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="4"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="5"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="6"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="7"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="8"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="9"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="10"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="11"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="12"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="13"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="14"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="15"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="16"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="17"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="18"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="19"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="20"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="21"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="22"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="23"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="24"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="25"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="26"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="27"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="28"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="29"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="30"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="31"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="32"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="33"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="34"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="35"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="36"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="37"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="38"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="39"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="40"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="41"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="42"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="43"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="44"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="45"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="46"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="47"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="48"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="49"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li .filter-results[data-result-count="50"] {
    padding-bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid > li:nth-of-type(1n+1) .filter-results {
    margin-left: 0;
  }
}
.vtp-filter-panel-regions .model-grid .vtp-filter-label {
  position: relative;
  padding-top: 52.25%;
  cursor: pointer;
  -webkit-transition: background 0.1s ease-in-out;
  -o-transition: background 0.1s ease-in-out;
  transition: background 0.1s ease-in-out;
  /*
  &:hover {
    .no-touch & {
      background-color: $gray-light-backgrounds;
    }
  }
  */
}
.vtp-filter-panel-regions .model-grid .vtp-filter-label p {
  position: absolute;
  top: 80%;
  left: 10px;
  left: 0.8333333333rem;
  line-height: 15.6px;
  line-height: 1.3rem;
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .model-grid .vtp-filter-label p {
    position: relative;
    font-size: 12px;
    font-size: 1rem;
    line-height: 12px;
    line-height: 1rem;
    top: auto;
    bottom: 0;
    left: 0;
  }
  .vtp-filter-panel-regions .model-grid .vtp-filter-label p .vtp-icon-rs {
    margin: 0 4px 0 0;
    vertical-align: 0;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .model-grid .vtp-filter-label {
    background-image: none;
    padding-top: 24px;
    padding-top: 2rem;
    padding-bottom: 24px;
    padding-bottom: 2rem;
  }
  .vtp-filter-panel-regions .model-grid .vtp-filter-label:before {
    display: none;
  }
  .vtp-filter-panel-regions .model-grid .vtp-filter-label:hover {
    background-image: none;
  }
}
.vtp-filter-panel-regions .model-grid .vtp-filter-label.active {
  background-color: #e7e9ea;
}
.vtp-filter-panel-regions .model-grid .vtp-filter-label.active .vtp-filter-select-all {
  display: block;
}
.vtp-filter-panel-regions .model-grid .vtp-filter-label.active .vtp-filter-select-all label span {
  display: none;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .model-grid .vtp-filter-label.active .vtp-filter-select-all {
    display: none;
  }
}
.vtp-filter-panel-regions .model-grid .model-result-grid {
  overflow: hidden;
  background-color: #e7e9ea;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .model-grid .model-result-grid {
    background-color: transparent;
    margin: 0 4%;
  }
}
.vtp-filter-panel-regions .model-grid .model-result-grid .checkbox-primary + label {
  min-height: 0;
  padding-left: 0;
}
.vtp-filter-panel-regions .model-grid .model-result-grid .checkbox-primary + label:before,
.vtp-filter-panel-regions .model-grid .model-result-grid .checkbox-primary + .label:before {
  position: absolute;
  margin: 0;
  top: 20px;
  top: 1.6666666667rem;
  right: auto;
  left: 10px;
  left: 0.8333333333rem;
}
@media only screen and (max-width: 768px) {
  .vtp-filter-panel-regions .model-grid .model-result-grid .checkbox-primary + label:before,
  .vtp-filter-panel-regions .model-grid .model-result-grid .checkbox-primary + .label:before {
    top: 11px;
    top: 0.9166666667rem;
  }
}
.vtp-filter-panel-regions .model-grid .model-result-grid label {
  display: block;
  position: relative;
  padding-top: 22.25%;
  margin: 0;
  height: 0;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .model-grid .model-result-grid label {
    height: 60px;
    height: 5rem;
    display: table;
    padding: 0;
    background-size: auto 80px;
    background-position: left center;
    position: relative;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid label:after {
    top: 15px;
  }
}
.vtp-filter-panel-regions .model-grid .model-result-grid label p {
  position: absolute;
  top: 39%;
  left: 60px;
  left: 5rem;
  line-height: 15.6px;
  line-height: 1.3rem;
  width: 100%;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .model-grid .model-result-grid label p {
    position: relative;
    display: table-cell;
    background-color: transparent;
    vertical-align: middle;
    top: auto;
    bottom: 0;
    left: 0;
    left: 0;
    padding-left: 0;
    padding-left: 0;
    padding-right: 40px;
    padding-right: 3.3333333333rem;
  }
}
.vtp-filter-panel-regions .model-grid .model-result-grid label.fp-model--fallback:before {
  top: auto;
  bottom: 39%;
  left: 10px;
}
.vtp-filter-panel-regions .model-grid .model-result-grid label.fp-model--fallback p {
  bottom: 40%;
  left: 50px;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .model-grid .model-result-grid {
    position: relative;
    width: auto;
    height: auto;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li {
    margin: 0;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li.vtp-model-blank label {
    height: 50px;
    height: 4.1666666667rem;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li.vtp-model-blank label p {
    padding-left: 0;
    left: 0;
    bottom: 0;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li.vtp-model-blank label:after {
    top: 10px;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li.vtp-model-image .resultcount {
    display: inline-block;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
  .vtp-filter-panel-regions .model-grid .model-result-grid > li:last-child:after {
    border-bottom: none;
  }
}
.vtp-filter-panel-regions .model-grid .filter-results {
  position: relative;
  width: 400%;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-panel-regions .model-grid .filter-results {
    width: 300%;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-filter-panel-regions .model-grid .filter-results {
    width: 200%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .model-grid .filter-results {
    width: 100%;
  }
}
.vtp-filter-panel-regions .model-grid .filter-results .vtp-filter-select-all {
  display: none;
  margin: 0 4%;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .model-grid .filter-results .vtp-filter-select-all {
    display: block;
  }
  .vtp-filter-panel-regions .model-grid .filter-results .vtp-filter-select-all label {
    display: block;
  }
  .vtp-filter-panel-regions .model-grid .filter-results .vtp-filter-select-all:after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
}
.vtp-filter-panel-regions .model-grid .vtp-model-active-counter,
.vtp-filter-panel-regions .model-grid .vtp-filter-label .vtp-filter-select-all {
  position: absolute;
  margin: 0;
}
.vtp-filter-panel-regions .model-grid .vtp-model-active-counter {
  display: none;
}
.vtp-filter-panel-regions .model-grid .vtp-filter-label .vtp-filter-select-all {
  display: block;
  top: 11px;
  top: 0.9166666667rem;
  right: 10px;
  right: 0.8333333333rem;
}
.vtp-filter-panel-regions .model-grid .vtp-filter-label .vtp-filter-select-all label {
  display: block;
  position: relative;
  min-height: 30px;
  min-height: 2.5rem;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3532px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  color: #fff;
  line-height: 30px;
  text-align: center;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-regions .model-grid .vtp-filter-label .vtp-filter-select-all label {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-filter-panel-regions .model-grid .vtp-filter-label .vtp-filter-select-all label:before {
  display: none;
  content: "";
  background: none;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .model-grid .vtp-filter-label .vtp-filter-select-all {
    display: none;
  }
}
.vtp-filter-panel-regions .model-grid .has-counter .vtp-filter-label .vtp-filter-select-all {
  display: block;
}
.vtp-filter-panel-regions .model-grid .has-counter .vtp-filter-label .vtp-filter-select-all label {
  display: block;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3412px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-regions .model-grid .has-counter .vtp-filter-label .vtp-filter-select-all label {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-filter-panel-regions .model-grid .has-counter .vtp-filter-label .vtp-filter-select-all label:before {
  content: " ";
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .model-grid .has-counter .vtp-filter-label .vtp-filter-select-all {
    display: none;
  }
}
.vtp-filter-panel-regions .model-grid .has-counter .filter-results .vtp-filter-select-all {
  display: none;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .model-grid .has-counter .filter-results .vtp-filter-select-all {
    display: block;
  }
  .vtp-filter-panel-regions .model-grid .has-counter .filter-results .vtp-filter-select-all label {
    display: block;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .vtp-filter-fields-2-1-1 fieldset:last-child:after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
  .vtp-filter-panel-regions .tab-content {
    margin: 0 -4%;
  }
  .vtp-filter-panel-regions .vtp-accordion {
    margin: 0;
  }
  .vtp-filter-panel-regions .vtp-accordion > ul {
    margin: 0 4%;
  }
  .vtp-filter-panel-regions .vtp-accordion > ul > li:first-child:before {
    border-top: none;
  }
  .vtp-filter-panel-regions .vtp-accordion > ul > li:last-child {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
  .vtp-filter-panel-regions .vtp-btn.toggle, .vtp-filter-panel-regions .vtp-compare-bar.compare-enabled .action-holder .toggle.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-filter-panel-regions .toggle.vtp-btn {
    height: 48px;
    height: 4rem;
    width: 50%;
    padding: 14px 5px;
  }
  .vtp-filter-panel-regions .vtp-btn.expand, .vtp-filter-panel-regions .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-filter-panel-regions .expand.vtp-btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: "AudiTypeExtBold", Verdana, sans-serif !important;
    font-weight: 700;
    position: relative;
    top: 0;
    left: 0;
    cursor: pointer;
    margin-bottom: 0 !important;
    margin-bottom: 0;
    margin-top: 0;
    width: 100%;
    background: #e7e9ea;
    border-bottom: 1px solid #cdd0d2;
    padding-top: 24px;
    padding-top: 2rem;
    padding-bottom: 24px;
    padding-bottom: 2rem;
    padding-left: 4%;
    font-size: 12px;
    font-size: 1rem;
    text-align: left;
    line-height: 1;
    color: black;
  }
  .vtp-filter-panel-regions .vtp-btn.expand:after, .vtp-filter-panel-regions .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn:after, .vtp-compare-bar.compare-enabled .action-holder .vtp-filter-panel-regions .expand.vtp-btn:after {
    left: auto;
    content: "";
    background-image: url(../images/sprite-common.png);
    background-position: 0px -172px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
    position: absolute;
    right: 4%;
    top: 50%;
    margin-top: -4px;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-filter-panel-regions .vtp-btn.expand:after, .vtp-filter-panel-regions .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn:after, .vtp-compare-bar.compare-enabled .action-holder .vtp-filter-panel-regions .expand.vtp-btn:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .vtp-btn.expand.active:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -226px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-filter-panel-regions .vtp-btn.expand.active:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-regions .has-counter .vtp-model-active-counter {
    display: block;
    right: 48px;
    right: 4rem;
    top: 15px;
    top: 1.25rem;
    width: 30px;
    width: 2.5rem;
    height: 30px;
    height: 2.5rem;
    border-radius: 50%;
    line-height: 32px;
    text-align: center;
    background-color: #c03;
    color: #fff;
  }
}

@media only screen and (max-width: 767px) {
  .vtp-filter-panel-price .container > fieldset:before, .vtp-filter-panel-price .container > fieldset:after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-top: 1px solid #d7dadb;
  }
}

.vtp-filter-panel-features .visuallyhidden {
  height: 0;
}
.vtp-filter-panel-features .vtp-tabpanel legend {
  font-size: 1.2rem;
}
.vtp-filter-panel-features .tab-content {
  margin-bottom: -36px;
  margin-bottom: -3rem;
}
@media only screen and (max-width: 768px) {
  .vtp-filter-panel-features .tab-content {
    margin-bottom: 0;
  }
}
.vtp-filter-panel-features .vtp-feature-item label {
  margin-bottom: 0;
  width: 100%;
}
.vtp-filter-panel-features .vtp-btn.expand, .vtp-filter-panel-features .vtp-compare-bar.compare-enabled .action-holder .expand.vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-filter-panel-features .expand.vtp-btn {
  margin-top: 0;
  margin-bottom: 48px;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-features > .container .tab-content > div:last-child .collapse-content:after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
  .vtp-filter-panel-features > .container > fieldset {
    display: none;
  }
  .vtp-filter-panel-features > .container .vtp-btn.expand {
    display: none;
  }
  .vtp-filter-panel-features > .container > .vtp-tabpanel {
    display: block !important;
    margin-top: 0 !important;
  }
  .vtp-filter-panel-features > .container > .vtp-tabpanel legend {
    font-size: 1.2rem;
  }
}
.vtp-filter-panel-features .vtp-feature-list {
  margin-top: 10px;
}
.vtp-filter-panel-features #features-tabs {
  margin-top: 0;
}
.vtp-filter-panel-features #features-tabs.collapse {
  margin-top: 48px;
  margin-top: 4rem;
}
@media only screen and (max-width: 768px) {
  .vtp-filter-panel-features #features-tabs {
    margin-top: 36px;
    margin-top: 3rem;
  }
}
.vtp-filter-panel-features #features-tabs {
  margin-top: 0;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-features .collapse-content {
    padding-bottom: 0;
  }
  .vtp-filter-panel-features .collapse-content > fieldset > div:last-child {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
  .vtp-filter-panel-features .collapse-content > fieldset:last-child {
    margin-bottom: 0;
  }
  .vtp-filter-panel-features .collapse-content > fieldset:last-child > div:last-child {
    border-bottom: 0;
  }
}

.vtp-filter-panel-engines .vtp-filter-fields-2-1-1 .control-group {
  margin-bottom: 20px;
  margin-bottom: 1.6666666667rem;
  display: table;
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-engines .vtp-filter-fields-2-1-1 > fieldset:last-child {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
}
.vtp-filter-panel-engines .vtp-filter-fields-full-width .content > div:first-child, .vtp-filter-panel-engines .vtp-filter-fields-full-width img:first-child {
  float: left;
  clear: none;
  width: 22.7045%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-filter-panel-engines .vtp-filter-fields-full-width .content > div:first-child:last-child, .vtp-filter-panel-engines .vtp-filter-fields-full-width img:first-child:last-child {
  margin-right: 0;
}
.vtp-filter-panel-engines .vtp-filter-fields-full-width .content > div:last-child, .vtp-filter-panel-engines .vtp-filter-fields-full-width img:last-child {
  float: left;
  clear: none;
  width: 74.1015%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-filter-panel-engines .vtp-filter-fields-full-width .content > div:last-child:last-child, .vtp-filter-panel-engines .vtp-filter-fields-full-width img:last-child:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-panel-engines .vtp-filter-fields-full-width .content > div:first-child, .vtp-filter-panel-engines .vtp-filter-fields-full-width img:first-child {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-filter-panel-engines .vtp-filter-fields-full-width .content > div:first-child:last-child, .vtp-filter-panel-engines .vtp-filter-fields-full-width img:first-child:last-child {
    margin-right: 0;
  }
  .vtp-filter-panel-engines .vtp-filter-fields-full-width .content > div:last-child, .vtp-filter-panel-engines .vtp-filter-fields-full-width img:last-child {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-filter-panel-engines .vtp-filter-fields-full-width .content > div:last-child:last-child, .vtp-filter-panel-engines .vtp-filter-fields-full-width img:last-child:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 660px) {
  .vtp-filter-panel-engines .vtp-filter-fields-full-width .content > div:first-child, .vtp-filter-panel-engines .vtp-filter-fields-full-width .content > div:last-child, .vtp-filter-panel-engines .vtp-filter-fields-full-width img:first-child, .vtp-filter-panel-engines .vtp-filter-fields-full-width img:last-child {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-filter-panel-engines .vtp-filter-fields-full-width .content > div:first-child:first-child, .vtp-filter-panel-engines .vtp-filter-fields-full-width .content > div:last-child:first-child, .vtp-filter-panel-engines .vtp-filter-fields-full-width img:first-child:first-child, .vtp-filter-panel-engines .vtp-filter-fields-full-width img:last-child:first-child {
    margin-left: auto;
  }
  .vtp-filter-panel-engines .vtp-filter-fields-full-width .content > div:first-child:last-child, .vtp-filter-panel-engines .vtp-filter-fields-full-width .content > div:last-child:last-child, .vtp-filter-panel-engines .vtp-filter-fields-full-width img:first-child:last-child, .vtp-filter-panel-engines .vtp-filter-fields-full-width img:last-child:last-child {
    margin-right: auto;
  }
  .vtp-filter-panel-engines .vtp-filter-fields-full-width .content > div .control-group:before, .vtp-filter-panel-engines .vtp-filter-fields-full-width img .control-group:before {
    border-top: none;
  }
  .vtp-filter-panel-engines .vtp-filter-fields-full-width .content > div .control-group:after, .vtp-filter-panel-engines .vtp-filter-fields-full-width img .control-group:after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
    margin-bottom: 20px;
    margin-bottom: 1.6666666667rem;
  }
}
.vtp-filter-panel-engines .vtp-filter-fields-full-width .legend {
  margin-top: 10px;
  margin-top: 0.8333333333rem;
}
.vtp-filter-panel-engines .vtp-filter-engines > div {
  float: left;
  clear: none;
  width: 22.7045%;
  margin-left: 0;
  margin-right: 2.994%;
  margin-top: 2%;
}
.vtp-filter-panel-engines .vtp-filter-engines > div:nth-of-type(n) {
  margin-right: 2.994%;
  float: left;
  clear: none;
}
.vtp-filter-panel-engines .vtp-filter-engines > div:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.vtp-filter-panel-engines .vtp-filter-engines > div:nth-of-type(4n + 1) {
  clear: both;
}
.vtp-filter-panel-engines .vtp-filter-engines > div .label, .vtp-filter-panel-engines .vtp-filter-engines > div label {
  width: 100%;
}
.vtp-filter-panel-engines .vtp-filter-engines > div label {
  margin-bottom: 0;
}
.vtp-filter-panel-engines .vtp-filter-engines > .fp-engines--engine {
  margin-top: 0;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-panel-engines .vtp-filter-engines > div {
    float: left;
    clear: none;
    width: 31.2706666667%;
    margin-left: 0;
    margin-right: 2.994%;
    margin-top: 0;
  }
  .vtp-filter-panel-engines .vtp-filter-engines > div:last-child {
    margin-right: 0;
  }
  .vtp-filter-panel-engines .vtp-filter-engines > .fp-engines--engine {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-filter-panel-engines .vtp-filter-engines > div {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-filter-panel-engines .vtp-filter-engines > div:nth-of-type(4n) {
    margin-right: 2.994%;
    float: left;
  }
  .vtp-filter-panel-engines .vtp-filter-engines > div:nth-of-type(4n + 1) {
    clear: none;
  }
  .vtp-filter-panel-engines .vtp-filter-engines > div:nth-of-type(n) {
    margin-right: 2.994%;
    float: left;
    clear: none;
  }
  .vtp-filter-panel-engines .vtp-filter-engines > div:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .vtp-filter-panel-engines .vtp-filter-engines > div:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-engines .vtp-filter-engines:after {
    padding-top: 0;
    border: none;
  }
  .vtp-filter-panel-engines .vtp-filter-engines > div {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
  .vtp-filter-panel-engines .vtp-filter-engines > div:first-child {
    margin-left: auto;
  }
  .vtp-filter-panel-engines .vtp-filter-engines > div:last-child {
    margin-right: auto;
  }
  .vtp-filter-panel-engines .vtp-filter-engines > div label {
    border-top: 1px solid #d7dadb;
  }
  .vtp-filter-panel-engines .vtp-filter-engines > div.control-group:before {
    border: none;
    content: "";
  }
  .vtp-filter-panel-engines .vtp-filter-engines > div:last-child {
    border-bottom: 1px solid #d7dadb;
  }
}
.vtp-filter-panel-engines .vtp-filter-campaigns > div {
  float: left;
  clear: none;
  width: 22.7045%;
  margin-left: 0;
  margin-right: 2.994%;
  margin-top: 2%;
}
.vtp-filter-panel-engines .vtp-filter-campaigns > div:nth-of-type(n) {
  margin-right: 2.994%;
  float: left;
  clear: none;
}
.vtp-filter-panel-engines .vtp-filter-campaigns > div:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.vtp-filter-panel-engines .vtp-filter-campaigns > div:nth-of-type(4n + 1) {
  clear: both;
}
.vtp-filter-panel-engines .vtp-filter-campaigns > div .label, .vtp-filter-panel-engines .vtp-filter-campaigns > div label {
  width: 100%;
}
.vtp-filter-panel-engines .vtp-filter-campaigns > div label {
  margin-bottom: 0;
}
.vtp-filter-panel-engines .vtp-filter-campaigns > .fp-campaigns--campaign {
  margin-top: 0;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-panel-engines .vtp-filter-campaigns > div {
    float: left;
    clear: none;
    width: 31.2706666667%;
    margin-left: 0;
    margin-right: 2.994%;
    margin-top: 0;
  }
  .vtp-filter-panel-engines .vtp-filter-campaigns > div:last-child {
    margin-right: 0;
  }
  .vtp-filter-panel-engines .vtp-filter-campaigns > .fp-campaigns--campaign {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-filter-panel-engines .vtp-filter-campaigns > div {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-filter-panel-engines .vtp-filter-campaigns > div:nth-of-type(4n) {
    margin-right: 2.994%;
    float: left;
  }
  .vtp-filter-panel-engines .vtp-filter-campaigns > div:nth-of-type(4n + 1) {
    clear: none;
  }
  .vtp-filter-panel-engines .vtp-filter-campaigns > div:nth-of-type(n) {
    margin-right: 2.994%;
    float: left;
    clear: none;
  }
  .vtp-filter-panel-engines .vtp-filter-campaigns > div:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .vtp-filter-panel-engines .vtp-filter-campaigns > div:nth-of-type(3n + 1) {
    clear: both;
  }
}
.vtp-filter-panel-engines .vtp-filter-inline-image {
  margin-top: 10px;
  margin-top: 0.8333333333rem;
}
.vtp-filter-panel-engines .vtp-filter-inline-image label,
.vtp-filter-panel-engines .vtp-filter-inline-image .label {
  margin: 0 0 0 -17px;
  height: 81px;
  height: 6.75rem;
}
.vtp-filter-panel-engines .vtp-filter-inline-image label:before,
.vtp-filter-panel-engines .vtp-filter-inline-image .label:before {
  top: 0;
}
.vtp-filter-panel-engines .vtp-filter-gearext .vtp-filter-inline-image label,
.vtp-filter-panel-engines .vtp-filter-gearext .vtp-filter-inline-image .label,
.vtp-filter-panel-engines .vtp-filter-drive .vtp-filter-inline-image label,
.vtp-filter-panel-engines .vtp-filter-drive .vtp-filter-inline-image .label {
  padding-top: 15px;
  padding-top: 1.25rem;
  margin-top: 0;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-panel-engines .vtp-filter-gearext > div,
  .vtp-filter-panel-engines .vtp-filter-drive > div {
    margin-top: -10px;
    margin-top: -0.8333333333rem;
  }
  .vtp-filter-panel-engines .vtp-filter-gearext .vtp-filter-inline-image,
  .vtp-filter-panel-engines .vtp-filter-drive .vtp-filter-inline-image {
    margin: 0;
  }
  .vtp-filter-panel-engines .vtp-filter-gearext .vtp-filter-inline-image label,
  .vtp-filter-panel-engines .vtp-filter-gearext .vtp-filter-inline-image .label,
  .vtp-filter-panel-engines .vtp-filter-drive .vtp-filter-inline-image label,
  .vtp-filter-panel-engines .vtp-filter-drive .vtp-filter-inline-image .label {
    padding-top: 5px;
    padding-top: 0.4166666667rem;
    margin: 10px 0;
    height: auto;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-engines .vtp-filter-gearext > fieldset,
  .vtp-filter-panel-engines .vtp-filter-drive > fieldset {
    margin-top: 0;
  }
  .vtp-filter-panel-engines .vtp-filter-gearext > fieldset label:last-child,
  .vtp-filter-panel-engines .vtp-filter-drive > fieldset label:last-child {
    border-bottom: 1px solid #d7dadb;
  }
}
.vtp-filter-panel-engines [class*=vtp-icon-highlights-] {
  width: 81px;
  width: 6.75rem;
  min-width: 81px;
  min-width: 6.75rem;
  height: 81px;
  height: 6.75rem;
  background-color: #f2f4f3;
  border-radius: 50%;
}
.vtp-filter-panel-engines [class*=vtp-icon-highlights-]:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px;
  left: 18px;
}
@media only screen and (max-width: 940px) {
  .vtp-filter-panel-engines [class*=vtp-icon-highlights-] {
    display: none;
  }
}
.vtp-filter-panel-engines .vtp-filter-badge .label {
  padding-top: 30px;
  padding-top: 2.5rem;
}
@media only screen and (max-width: 1024px) {
  .vtp-filter-panel-engines .vtp-filter-fields-2-2-1 label {
    width: 100%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-filter-panel-engines .vtp-filter-fields-2-2-1 > div {
    margin-bottom: 48px;
    margin-bottom: 4rem;
  }
  .vtp-filter-panel-engines .vtp-filter-fields-2-2-1 .vtp-filter-inline-image label,
  .vtp-filter-panel-engines .vtp-filter-fields-2-2-1 .vtp-filter-inline-image .label {
    margin-bottom: 10px;
    margin-bottom: 0.8333333333rem;
    margin-top: 10px;
    margin-top: 0.8333333333rem;
    padding-top: 5px;
    padding-top: 0.4166666667rem;
  }
  .vtp-filter-panel-engines .vtp-filter-fields-2-2-1 .vtp-filter-inline-image label .block,
  .vtp-filter-panel-engines .vtp-filter-fields-2-2-1 .vtp-filter-inline-image .label .block {
    display: inline;
  }
  .vtp-filter-panel-engines .vtp-filter-fields-2-2-1 > fieldset:last-child {
    margin-bottom: 0;
  }
  .vtp-filter-panel-engines .vtp-filter-fields-2-2-1 > fieldset > div:last-child {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
  .vtp-filter-panel-engines .vtp-filter-badge {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
    margin-top: 0;
  }
  .vtp-filter-panel-engines .vtp-filter-badge label,
  .vtp-filter-panel-engines .vtp-filter-badge .label {
    padding-top: 0;
    margin: 0;
    height: auto;
    margin-bottom: 10px;
    margin-bottom: 0.8333333333rem;
  }
}
.vtp-filter-panel-engines .vtp-icon-highlights-transmission:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -6323px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-engines .vtp-icon-highlights-transmission:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-filter-panel-engines .vtp-icon-highlights-semi-automatic:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -6268px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-engines .vtp-icon-highlights-semi-automatic:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-filter-panel-engines .vtp-icon-highlights-automatic:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -5993px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-engines .vtp-icon-highlights-automatic:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-filter-panel-engines .vtp-icon-highlights-back-wheel:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -6048px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-engines .vtp-icon-highlights-back-wheel:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-filter-panel-engines .vtp-icon-highlights-front-wheel-drive:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -6158px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-engines .vtp-icon-highlights-front-wheel-drive:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-filter-panel-engines .vtp-icon-highlights-drivetrain:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -6103px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-engines .vtp-icon-highlights-drivetrain:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-filter-panel-engines .vtp-icon-highlights-other-drive:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -6213px;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-filter-panel-engines .vtp-icon-highlights-other-drive:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

@media only screen and (max-width: 568px) {
  .vtp-filter-panel-condition .vtp-filter-fields > fieldset > .control-group .checkbox-primary + label:after,
  .vtp-filter-panel-condition .vtp-filter-fields > fieldset > .control-group .checkbox-primary + .label:after {
    top: 50%;
    margin-top: -15px;
  }
  .vtp-filter-panel-condition .vtp-filter-fields > fieldset > .control-group .vtp-icon-i {
    position: relative;
    margin-top: -6px;
    top: 6px;
  }
  .vtp-filter-panel-condition .vtp-filter-fields > fieldset > .control-group:last-child:after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-top: 1px solid #d7dadb;
  }
  .vtp-filter-panel-condition .vtp-filter-fields-2-1-1 fieldset:last-child {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
}

.vtp-filter-panel-area .container {
  position: relative;
}
.vtp-filter-panel-area .container .vtp-wrapper-row h3 {
  display: none;
}

#filter-area-search,
#filter-area-search-map {
  position: absolute;
  left: 50%;
  top: 60px;
  margin-left: 10px;
  z-index: 2099;
}
#filter-area-search input,
#filter-area-search-map input {
  -webkit-appearance: none;
  padding-right: 4.5em;
  width: 280px;
}
#filter-area-search select,
#filter-area-search-map select {
  min-width: 90px;
  min-width: 7.5rem;
  width: 90px;
  width: 7.5rem;
  background-color: #fff;
  margin-left: -1px;
  -moz-appearance: none;
}
.vtp-market-ru #filter-area-search select, .vtp-market-uk #filter-area-search select,
.vtp-market-ru #filter-area-search-map select,
.vtp-market-uk #filter-area-search-map select {
  min-width: 102px;
  min-width: 8.5rem;
  width: 102px;
  width: 8.5rem;
}
#filter-area-search a, #filter-area-search li,
#filter-area-search-map a,
#filter-area-search-map li {
  color: #000;
  text-align: left;
  width: 100%;
}
#filter-area-search a:before, #filter-area-search a:after, #filter-area-search li:before, #filter-area-search li:after,
#filter-area-search-map a:before,
#filter-area-search-map a:after,
#filter-area-search-map li:before,
#filter-area-search-map li:after {
  display: none;
}
#filter-area-search .content.text,
#filter-area-search-map .content.text {
  position: relative;
  padding-top: 20px;
  padding-top: 1.6666666667rem;
  padding-bottom: 10px;
  padding-bottom: 0.8333333333rem;
  height: auto;
  width: 560px;
}
#filter-area-search .control-group,
#filter-area-search-map .control-group {
  margin-bottom: 10px;
  margin-bottom: 0.8333333333rem;
}
#filter-area-search .error,
#filter-area-search-map .error {
  color: #d9534f;
  display: none;
  clear: both;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  text-align: left;
}
#filter-area-search .vtp-area-btn-clear,
#filter-area-search .vtp-area-btn-locate,
#filter-area-search-map .vtp-area-btn-clear,
#filter-area-search-map .vtp-area-btn-locate {
  display: none;
  font-size: 0;
  position: absolute;
  top: 0;
  line-height: 0;
  height: 100%;
  overflow: hidden;
}
#filter-area-search .vtp-area-btn-clear:before,
#filter-area-search .vtp-area-btn-locate:before,
#filter-area-search-map .vtp-area-btn-clear:before,
#filter-area-search-map .vtp-area-btn-locate:before {
  position: relative;
  margin: 0 auto;
  content: "";
  display: block;
}
#filter-area-search .vtp-area-btn-clear,
#filter-area-search-map .vtp-area-btn-clear {
  right: 0;
  width: 30px;
  width: 2.5rem;
}
#filter-area-search .vtp-area-btn-clear:before,
#filter-area-search-map .vtp-area-btn-clear:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -463px;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  #filter-area-search .vtp-area-btn-clear:before,
  #filter-area-search-map .vtp-area-btn-clear:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.geolocate #filter-area-search .vtp-area-btn-clear,
.geolocate #filter-area-search-map .vtp-area-btn-clear {
  right: 30px;
}
#filter-area-search .vtp-area-btn-locate,
#filter-area-search-map .vtp-area-btn-locate {
  border-left: 1px solid #cecece;
  right: 0;
  width: 30px;
  width: 2.5rem;
}
#filter-area-search .vtp-area-btn-locate:before,
#filter-area-search-map .vtp-area-btn-locate:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2026px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  #filter-area-search .vtp-area-btn-locate:before,
  #filter-area-search-map .vtp-area-btn-locate:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
#filter-area-search .vtp-area-result-list,
#filter-area-search-map .vtp-area-result-list {
  display: none;
  clear: both;
  background-color: #fff;
  margin: 1rem -20px 0;
}
#filter-area-search .vtp-area-result-list.open,
#filter-area-search-map .vtp-area-result-list.open {
  display: block;
}
#filter-area-search .vtp-area-result-list ul,
#filter-area-search-map .vtp-area-result-list ul {
  border-top: 1px solid #c6c9cb;
  max-height: 250px;
  overflow: auto;
  overflow-y: scroll;
  width: 100%;
}
#filter-area-search .vtp-area-result-list li,
#filter-area-search-map .vtp-area-result-list li {
  border-bottom: 1px solid #c6c9cb;
  cursor: pointer;
  height: 4rem;
  padding-left: 2rem;
  overflow: hidden;
}
#filter-area-search .vtp-area-result-list li:hover,
#filter-area-search-map .vtp-area-result-list li:hover {
  background-color: #e7e9ea;
  cursor: pointer;
}
#filter-area-search .vtp-area-result-list li:last-child,
#filter-area-search-map .vtp-area-result-list li:last-child {
  border: none;
}
#filter-area-search .vtp-area-result-list button,
#filter-area-search-map .vtp-area-result-list button {
  padding: 14px 0 14px 22px;
  pointer-events: none;
  position: relative;
  width: 100%;
  text-align: left;
}
#filter-area-search .vtp-area-result-list button:before,
#filter-area-search-map .vtp-area-result-list button:before {
  content: "";
  background-image: url("../images/pin.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  -ms-behavior: url("../js/vendor/backgroundsize.min.htc");
  display: inline-block;
  position: absolute;
  left: 0px;
  height: 19px;
  width: 12px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  #filter-area-search .vtp-area-result-list button:before,
  #filter-area-search-map .vtp-area-result-list button:before {
    background-image: url("../images/pin@2x.png");
  }
}

#vtp-area-btn-submit {
  padding-left: 40px;
  padding-right: 40px;
  min-width: 190px;
}
#vtp-area-btn-submit:after {
  position: absolute;
  margin-top: 4px;
  margin-top: 6px;
  margin-top: 0.5rem;
}
#vtp-area-btn-submit[disabled] {
  opacity: 1;
  background-color: #000;
}
#vtp-area-btn-submit.complete:after {
  display: none;
}
#vtp-area-btn-submit.complete:before {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -214px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-left: -26px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  #vtp-area-btn-submit.complete:before {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}

.vtp-flyout #vtp-area-btn-submit {
  min-width: auto;
}

#filter-area-search .content.text {
  left: -50%;
}

#filter-area-search input {
  width: 255px;
}

#filter-area-search-map {
  background-color: #fff;
  left: 50%;
  top: 25px;
  margin-left: -253px;
  width: auto;
  z-index: 10;
}
#filter-area-search-map .vtp-area-result-list {
  clear: both;
  background-color: #fff;
  margin-left: 0;
  margin-right: 0;
}
#filter-area-search-map .vtp-area-result-list ul {
  display: block;
}
#filter-area-search-map .content.text {
  padding: 0;
  width: 100%;
}
#filter-area-search-map .control-group {
  margin: 0;
}
#filter-area-search-map .error {
  padding: 10px 1rem 0;
}
#filter-area-search-map .error span {
  display: none;
}

@media only screen and (max-width: 767px) {
  #filter-area-search-map {
    position: relative;
    top: auto;
    left: 0;
    margin: 0 0 1em 0;
    width: 100%;
  }
  #filter-area-search-map:after {
    display: none;
  }
  #filter-area-search-map ul {
    display: block;
  }
  #filter-area-search-map input,
  #filter-area-search-map .content.text,
  #filter-area-search-map .control-group {
    width: 100%;
  }
  #filter-area-search-map input {
    padding-right: 110px;
    padding-right: 9.1666666667rem;
    padding-left: 12px;
    padding-left: 1rem;
  }
  .geolocate #filter-area-search-map input {
    padding-right: 140px;
    padding-right: 11.6666666667rem;
  }
  #filter-area-search-map select {
    min-width: 90px;
    min-width: 7.5rem;
    width: 90px;
    width: 7.5rem;
    margin-left: -1px;
  }
  #filter-area-search-map .custom-select.push-left {
    width: 90px;
    width: 7.5rem;
    position: absolute;
    right: 0;
    border-left: 1px solid #cecece;
  }
  .vtp-market-ru #filter-area-search-map .custom-select.push-left, .vtp-market-uk #filter-area-search-map .custom-select.push-left {
    min-width: 102px;
    min-width: 8.5rem;
    width: 102px;
    width: 8.5rem;
  }
  #filter-area-search-map .vtp-area-result-list ul {
    position: absolute;
    background-color: #fff;
    overflow: auto;
    max-height: initial;
  }
  #filter-area-search-map .vtp-area-result-list li {
    height: auto;
    max-height: auto;
  }
  #filter-area-search-map .vtp-area-btn-clear {
    right: 98.4px;
    right: 8.2rem;
  }
  .vtp-market-ru #filter-area-search-map .vtp-area-btn-clear, .vtp-market-uk #filter-area-search-map .vtp-area-btn-clear {
    right: 132px;
    right: 11rem;
  }
  .geolocate .vtp-market-ru #filter-area-search-map .vtp-area-btn-clear, .geolocate .vtp-market-uk #filter-area-search-map .vtp-area-btn-clear {
    right: 129px;
    right: 10.75rem;
  }
  .geolocate #filter-area-search-map .vtp-area-btn-clear {
    right: 132px;
    right: 11rem;
  }
  #filter-area-search-map .vtp-area-btn-locate {
    right: 90px;
    right: 7.5rem;
  }
  .vtp-market-ru #filter-area-search-map .vtp-area-btn-locate, .vtp-market-uk #filter-area-search-map .vtp-area-btn-locate {
    right: 102px;
    right: 8.5rem;
  }
  #vtp-area-btn-submit {
    margin-top: 12px;
    margin-top: 1rem;
    height: auto;
    width: 100%;
  }
  #vtp-area-btn-submit:after {
    position: absolute;
    margin-top: 4px;
    margin-top: 6px;
    margin-top: 0.5rem;
  }
  #vtp-area-btn-submit.complete:after {
    display: none;
  }
  #vtp-area-btn-submit.complete:before {
    position: absolute;
    content: "";
    display: inline-block;
    background-image: url(../images/sprite-filterpage.png);
    background-position: 0px -214px;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin-top: 0;
    margin-left: -26px;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  #vtp-area-btn-submit.complete:before {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  #filter-area-map {
    position: relative;
    height: 320px;
    margin-bottom: 0;
  }
  #area h3 {
    display: none;
  }
}
/* Target IE8 */
.lt-ie9 #filter-area-search input,
.lt-ie9 #filter-area-search-map input {
  min-width: auto;
  max-width: auto;
  width: 235px;
}
.lt-ie9 #filter-area-search select,
.lt-ie9 #filter-area-search-map select {
  font-size: 12px;
}
.lt-ie9 #filter-area-search .vtp-area-result-list li,
.lt-ie9 #filter-area-search-map .vtp-area-result-list li {
  height: 50px;
}
.lt-ie9 #filter-area-search .vtp-area-result-list button,
.lt-ie9 #filter-area-search-map .vtp-area-result-list button {
  background-image: none;
  font-size: 12px;
  color: #000;
  padding-left: 0;
  height: 40px;
  white-space: none;
}
.lt-ie9 #filter-area-search .vtp-area-result-list button:before,
.lt-ie9 #filter-area-search-map .vtp-area-result-list button:before {
  display: none;
}
.lt-ie9 #filter-area-search .push-left,
.lt-ie9 #filter-area-search-map .push-left {
  padding-top: 15px;
}
.lt-ie9 #filter-area-search-map {
  margin-left: -250px;
  width: 506px;
}
.lt-ie9 #vtp-area-btn-submit {
  margin-top: 15px;
}

/* Target IE9 */
.ie9 #filter-area-search-map form {
  width: 554px;
}

/* Target Firefox */
body:not(:-moz-handler-blocked) #vtp-area-btn-submit {
  line-height: 1.428571429em;
}
body:not(:-moz-handler-blocked) #filter-area-search select,
body:not(:-moz-handler-blocked) #filter-area-search-map select {
  padding-right: 0.5em;
  padding-top: 0.8em;
}

.vtp-result-consumption {
  width: 100%;
  float: left;
}
.vtp-result-consumption .vtp-wltp-nefz-consumptions p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
}
.vtp-result-consumption .vtp-wltp-nefz-consumptions p span.vtp-consumption-icons, .vtp-result-consumption .vtp-wltp-nefz-consumptions p span.vtp-electrical-consumption-icons {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 12px;
}
.vtp-result-consumption .vtp-wltp-nefz-consumptions p span.vtp-consumption-label {
  -ms-flex-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 30px;
}
.vtp-result-consumption .vtp-consumption-icons {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 12px;
}
.vtp-result-consumption .vtp-consumption-icons.vtp-consumption-icon {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -1164px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-result-consumption .vtp-consumption-icons.vtp-consumption-icon {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-result-consumption .vtp-consumption-icons.vtp-emission-icon {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -1204px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-result-consumption .vtp-consumption-icons.vtp-emission-icon {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-result-consumption .vtp-electrical-consumption-icons {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 12px;
}
.vtp-result-consumption .vtp-electrical-consumption-icons.vtp-electrical-consumption-icon {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -284px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-result-consumption .vtp-electrical-consumption-icons.vtp-electrical-consumption-icon {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}

.vtp-list-view .vtp-result-consumption {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  float: left;
}
.vtp-list-view .vtp-result-consumption > p {
  display: block;
  width: 100%;
}
.vtp-list-view .vtp-result-consumption .vtp-wltp-nefz-consumptions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.vtp-list-view .vtp-result-consumption .vtp-wltp-nefz-consumptions p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 12px;
}
.vtp-list-view .vtp-result-consumption .vtp-wltp-nefz-consumptions p:last-child {
  display: block;
  width: 100%;
}

/**
 * PAGE RESULTS
 */
@media only screen and (max-width: 568px) {
  .vtp-page-favorites footer {
    padding-top: 16px;
  }
}

@media only screen and (max-width: 568px) {
  .vtp-page-online-reservation footer {
    padding-top: 16px;
  }
}
.vtp-page-results .product-extras, #suggested-cars .product-extras {
  position: relative;
}
.vtp-page-results .vtp-icon-envkv, #suggested-cars .vtp-icon-envkv {
  display: none;
}
.vtp-page-results .printonly, #suggested-cars .printonly {
  display: none;
}
@media only screen and (max-width: 768px) {
  .vtp-page-results footer, #suggested-cars footer {
    margin: 0 0 16px 0;
    padding: 0;
  }
  .vtp-page-results .vtp-modal footer, #suggested-cars .vtp-modal footer {
    padding-top: 16px;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-page-results footer, #suggested-cars footer {
    padding-top: 0;
  }
  .vtp-page-results .vtp-modal footer, #suggested-cars .vtp-modal footer {
    padding-top: 16px;
  }
}
.vtp-page-results p.correctTop, #suggested-cars p.correctTop {
  padding-top: 5px;
}
.vtp-page-results .vtp-grid-view p.correctTop, #suggested-cars .vtp-grid-view p.correctTop {
  padding-top: 5px;
}
.vtp-page-results .car-teaser-options .vtp-link, .vtp-page-results .car-teaser-options .vtp-breadcrumb-item, #suggested-cars .car-teaser-options .vtp-link, #suggested-cars .car-teaser-options .vtp-breadcrumb-item {
  display: none;
}
.vtp-page-results .vtp-ajax-load-btn, #suggested-cars .vtp-ajax-load-btn {
  display: none;
  margin-top: 24px;
  margin-top: 2rem;
}
.vtp-page-results .vtp-ajax-load-btn.active, #suggested-cars .vtp-ajax-load-btn.active {
  display: inline-block;
}
.vtp-page-results .vtp-results-panel, #suggested-cars .vtp-results-panel {
  min-height: 400px;
  margin-top: 20px;
}
.vtp-page-results .vtp-results-panel > .spinner, #suggested-cars .vtp-results-panel > .spinner {
  margin-top: 20%;
  margin-bottom: 20%;
}
.vtp-page-results .vtp-results-panel > .spinner ~ .flex-center, #suggested-cars .vtp-results-panel > .spinner ~ .flex-center {
  display: none;
}
.vtp-page-results .vtp-results-panel button.expand.with-icon.active:after, #suggested-cars .vtp-results-panel button.expand.with-icon.active:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -814px;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-page-results .vtp-results-panel button.expand.with-icon.active:after, #suggested-cars .vtp-results-panel button.expand.with-icon.active:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-page-results #vtp-results:empty ~ .flex-center, #suggested-cars #vtp-results:empty ~ .flex-center {
  display: none;
}
@media only screen and (max-width: 767px) {
  .vtp-page-results.noscroll, #suggested-cars.noscroll {
    overflow: auto !important;
  }
  .vtp-page-results .vtp-filter-bar,
  .vtp-page-results .vtp-breadcrumbs, #suggested-cars .vtp-filter-bar,
  #suggested-cars .vtp-breadcrumbs {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .vtp-page-results .vtp-filter-bar.focusable:active, .vtp-page-results .vtp-filter-bar.focusable:focus,
  .vtp-page-results .vtp-breadcrumbs.focusable:active,
  .vtp-page-results .vtp-breadcrumbs.focusable:focus, #suggested-cars .vtp-filter-bar.focusable:active, #suggested-cars .vtp-filter-bar.focusable:focus,
  #suggested-cars .vtp-breadcrumbs.focusable:active,
  #suggested-cars .vtp-breadcrumbs.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
  }
  .vtp-page-results .vtp-filter-panels-container, #suggested-cars .vtp-filter-panels-container {
    display: block;
    position: static;
    -webkit-overflow-scrolling: auto;
    position: relative;
    z-index: 2400;
  }
  .vtp-page-results .vtp-filter-panel, #suggested-cars .vtp-filter-panel {
    opacity: 1;
  }
  .vtp-page-results .vtp-teaser-module, #suggested-cars .vtp-teaser-module {
    padding-top: 0;
    padding-top: 0;
    padding-bottom: 12px;
    padding-bottom: 1rem;
  }
  .vtp-page-results .vtp-results-page, #suggested-cars .vtp-results-page {
    padding-bottom: 30px;
    padding-bottom: 2.5rem;
  }
}
@media print {
  .vtp-page-results a[href]:after,
  .vtp-page-results .compare-checkbox, #suggested-cars a[href]:after,
  #suggested-cars .compare-checkbox {
    display: none;
  }
}

.vtp-results-noresults {
  width: 100% !important;
  border-bottom: none !important;
}
.vtp-results-noresults h3 {
  padding-bottom: 1em;
  padding-top: 1em;
  content: "";
  display: block;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d7dadb;
}
.vtp-results-noresults p {
  max-width: 600px;
}
@media only screen and (max-width: 767px) {
  .vtp-results-noresults h3 {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-top: 1px solid #d7dadb;
  }
}

/**
 * LIST / GRID VIEW
 */
.vtp-list-view .envkv.noicon .envkv-link,
.vtp-grid-view .envkv.noicon .envkv-link, #suggested-cars .envkv.noicon .envkv-link {
  display: none;
}
@media only screen and (max-width: 767px) {
  .vtp-list-view .envkv .envkv-info,
  .vtp-grid-view .envkv .envkv-info, #suggested-cars .envkv .envkv-info {
    letter-spacing: -0.025em;
  }
}
@media print {
  .vtp-list-view .envkv,
  .vtp-grid-view .envkv, #suggested-cars .envkv {
    display: none;
  }
  .vtp-list-view .envkv.printonly,
  .vtp-grid-view .envkv.printonly, #suggested-cars .envkv.printonly {
    display: block;
    overflow: hidden;
  }
  .vtp-list-view .envkv.printonly span,
  .vtp-list-view .envkv.printonly img,
  .vtp-grid-view .envkv.printonly span,
  .vtp-grid-view .envkv.printonly img, #suggested-cars .envkv.printonly span,
  #suggested-cars .envkv.printonly img {
    float: left;
  }
  .vtp-list-view .envkv.printonly img,
  .vtp-grid-view .envkv.printonly img, #suggested-cars .envkv.printonly img {
    height: 40px;
    margin-bottom: 5px;
    margin-right: 5px;
    width: 40px;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-market-ru .vtp-list-view .product-extras,
  .vtp-market-ru .vtp-grid-view .product-extras, .vtp-market-ru #suggested-cars .product-extras {
    margin-bottom: 1em;
    width: 54% !important;
  }
  .vtp-market-ru .vtp-list-view .left-icons,
  .vtp-market-ru .vtp-grid-view .left-icons, .vtp-market-ru #suggested-cars .left-icons {
    padding-left: 0 !important;
  }
}
.vtp-list-view p.summary-data-description.ma_icon,
.vtp-grid-view p.summary-data-description.ma_icon, #suggested-cars p.summary-data-description.ma_icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
}
.vtp-list-view p.summary-data-description.ma_icon span.list-panel-item-transmission, .vtp-list-view p.summary-data-description.ma_icon span.list-panel-item-mileage, .vtp-list-view p.summary-data-description.ma_icon span.list-panel-item-calendar, .vtp-list-view p.summary-data-description.ma_icon span.list-panel-item-power, .vtp-list-view p.summary-data-description.ma_icon span.list-panel-item-fuel-station, .vtp-list-view p.summary-data-description.ma_icon span.list-panel-item-quattro,
.vtp-grid-view p.summary-data-description.ma_icon span.list-panel-item-transmission,
.vtp-grid-view p.summary-data-description.ma_icon span.list-panel-item-mileage,
.vtp-grid-view p.summary-data-description.ma_icon span.list-panel-item-calendar,
.vtp-grid-view p.summary-data-description.ma_icon span.list-panel-item-power,
.vtp-grid-view p.summary-data-description.ma_icon span.list-panel-item-fuel-station,
.vtp-grid-view p.summary-data-description.ma_icon span.list-panel-item-quattro, #suggested-cars p.summary-data-description.ma_icon span.list-panel-item-transmission, #suggested-cars p.summary-data-description.ma_icon span.list-panel-item-mileage, #suggested-cars p.summary-data-description.ma_icon span.list-panel-item-calendar, #suggested-cars p.summary-data-description.ma_icon span.list-panel-item-power, #suggested-cars p.summary-data-description.ma_icon span.list-panel-item-fuel-station, #suggested-cars p.summary-data-description.ma_icon span.list-panel-item-quattro {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 12px;
}
.vtp-list-view .vtp-consumption-icons,
.vtp-grid-view .vtp-consumption-icons, #suggested-cars .vtp-consumption-icons {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 12px;
}
.vtp-list-view .vtp-consumption-icons.vtp-consumption-icon,
.vtp-grid-view .vtp-consumption-icons.vtp-consumption-icon, #suggested-cars .vtp-consumption-icons.vtp-consumption-icon {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -1164px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-list-view .vtp-consumption-icons.vtp-consumption-icon,
  .vtp-grid-view .vtp-consumption-icons.vtp-consumption-icon, #suggested-cars .vtp-consumption-icons.vtp-consumption-icon {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-list-view .vtp-consumption-icons.vtp-emission-icon,
.vtp-grid-view .vtp-consumption-icons.vtp-emission-icon, #suggested-cars .vtp-consumption-icons.vtp-emission-icon {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -1204px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-list-view .vtp-consumption-icons.vtp-emission-icon,
  .vtp-grid-view .vtp-consumption-icons.vtp-emission-icon, #suggested-cars .vtp-consumption-icons.vtp-emission-icon {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-list-view .list-panel-item-transmission,
.vtp-grid-view .list-panel-item-transmission, #suggested-cars .list-panel-item-transmission {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -1124px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-list-view .list-panel-item-transmission,
  .vtp-grid-view .list-panel-item-transmission, #suggested-cars .list-panel-item-transmission {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-list-view .list-panel-item-quattro,
.vtp-grid-view .list-panel-item-quattro, #suggested-cars .list-panel-item-quattro {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -1084px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-list-view .list-panel-item-quattro,
  .vtp-grid-view .list-panel-item-quattro, #suggested-cars .list-panel-item-quattro {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-list-view .list-panel-item-calendar,
.vtp-grid-view .list-panel-item-calendar, #suggested-cars .list-panel-item-calendar {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -244px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-list-view .list-panel-item-calendar,
  .vtp-grid-view .list-panel-item-calendar, #suggested-cars .list-panel-item-calendar {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-list-view .list-panel-item-fuel-station,
.vtp-grid-view .list-panel-item-fuel-station, #suggested-cars .list-panel-item-fuel-station {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -964px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-list-view .list-panel-item-fuel-station,
  .vtp-grid-view .list-panel-item-fuel-station, #suggested-cars .list-panel-item-fuel-station {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-list-view .list-panel-item-mileage,
.vtp-grid-view .list-panel-item-mileage, #suggested-cars .list-panel-item-mileage {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -1004px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-list-view .list-panel-item-mileage,
  .vtp-grid-view .list-panel-item-mileage, #suggested-cars .list-panel-item-mileage {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-list-view .list-panel-item-power,
.vtp-grid-view .list-panel-item-power, #suggested-cars .list-panel-item-power {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -1044px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-list-view .list-panel-item-power,
  .vtp-grid-view .list-panel-item-power, #suggested-cars .list-panel-item-power {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}

/**
 * GRID VIEW SPECIFIC
 */
.vtp-grid-view .envkv, #suggested-cars .envkv {
  position: absolute;
  top: 0;
  right: -36px;
}
.vtp-grid-view .envkv.noicon,
.vtp-grid-view .vtp-envkv .envkv.noicon, #suggested-cars .envkv.noicon,
#suggested-cars .vtp-envkv .envkv.noicon {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  margin-top: -3px;
  padding-left: 70px;
}
.vtp-market-ru .vtp-grid-view .envkv.noicon,
.vtp-market-ru .vtp-grid-view .vtp-envkv .envkv.noicon, .vtp-market-ru #suggested-cars .envkv.noicon,
.vtp-market-ru #suggested-cars .vtp-envkv .envkv.noicon {
  padding-left: 0px;
}
@media only screen and (max-width: 768px) {
  .vtp-grid-view .envkv.noicon,
  .vtp-grid-view .vtp-envkv .envkv.noicon, #suggested-cars .envkv.noicon,
  #suggested-cars .vtp-envkv .envkv.noicon {
    padding-left: 0;
  }
}
.vtp-grid-view .vtp-envkv .envkv.noicon, #suggested-cars .vtp-envkv .envkv.noicon {
  padding-left: 0;
  padding-right: 12px;
}
.vtp-grid-view .envkv-info, #suggested-cars .envkv-info {
  font-size: 11px;
  position: absolute;
  top: -3px;
  left: 38px;
}
.vtp-grid-view .envkv.noicon .envkv-info,
.vtp-grid-view .vtp-envkv .envkv-info, #suggested-cars .envkv.noicon .envkv-info,
#suggested-cars .vtp-envkv .envkv-info {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
}
.vtp-grid-view .vtp-envkv .envkv-info, #suggested-cars .vtp-envkv .envkv-info {
  margin-left: 36px;
  display: block;
  margin-top: -3px;
}
.vtp-grid-view .envkv.noicon .envkv-info, #suggested-cars .envkv.noicon .envkv-info {
  margin-left: 0;
  margin-top: 0;
}
.vtp-grid-view .vtp-plus.vtp-warranty .envkv, #suggested-cars .vtp-plus.vtp-warranty .envkv {
  top: 28px;
}
.vtp-grid-view .vtp-envkv .envkv, #suggested-cars .vtp-envkv .envkv {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
}
.vtp-grid-view .vtp-envkv .envkv .envkv-link, #suggested-cars .vtp-envkv .envkv .envkv-link {
  float: left;
}
.vtp-grid-view .vtp-envkv .product-extras, #suggested-cars .vtp-envkv .product-extras {
  min-height: 0;
}
.vtp-grid-view .vtp-warranty .product-extras,
.vtp-grid-view .vtp-plus .product-extras,
.vtp-grid-view .vtp-plus.vtp-warranty .product-extras, #suggested-cars .vtp-warranty .product-extras,
#suggested-cars .vtp-plus .product-extras,
#suggested-cars .vtp-plus.vtp-warranty .product-extras {
  min-height: 95px;
}
.vtp-grid-view .vtp-plus .textonly,
.vtp-grid-view .vtp-warranty .textonly, #suggested-cars .vtp-plus .textonly,
#suggested-cars .vtp-warranty .textonly {
  min-height: 1.85em;
}
.vtp-grid-view .vtp-plus.vtp-warranty .textonly, #suggested-cars .vtp-plus.vtp-warranty .textonly {
  min-height: auto;
}
@media only screen and (max-width: 767px) {
  .vtp-grid-view .vtp-plus.vtp-warranty .textonly, #suggested-cars .vtp-plus.vtp-warranty .textonly {
    min-height: 0;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-grid-view .vtp-plus .product-extras, #suggested-cars .vtp-plus .product-extras {
    min-height: 0;
  }
  .vtp-grid-view .product-extras, #suggested-cars .product-extras {
    position: relative;
  }
  .vtp-grid-view footer.vtp-envkv:not(.vtp-plus):not(.vtp-warranty) .product-extras, #suggested-cars footer.vtp-envkv:not(.vtp-plus):not(.vtp-warranty) .product-extras {
    left: 34.333333%;
    margin-bottom: 1em;
    width: 54%;
  }
  .vtp-grid-view footer.vtp-envkv:not(.vtp-plus):not(.vtp-warranty) .product-extras.no-left-icons, #suggested-cars footer.vtp-envkv:not(.vtp-plus):not(.vtp-warranty) .product-extras.no-left-icons {
    left: 0%;
    margin-bottom: 1em;
    width: 100%;
  }
}
@media only screen and (max-width: 320px) {
  .vtp-grid-view .vtp-warranty .product-extras,
  .vtp-grid-view .vtp-plus .product-extras,
  .vtp-grid-view .vtp-plus.vtp-warranty .product-extras, #suggested-cars .vtp-warranty .product-extras,
  #suggested-cars .vtp-plus .product-extras,
  #suggested-cars .vtp-plus.vtp-warranty .product-extras {
    min-height: 55px;
  }
}

/**
 * LIST VIEW SPECIFIC
 */
@media only screen and (max-width: 568px) {
  .vtp-list-view .envkv-info {
    font-size: 11px;
    position: absolute;
    top: -3px;
    left: 38px;
  }
  .vtp-list-view .vtp-envkv .envkv-info {
    margin-left: 36px;
    display: block;
    margin-top: -3px;
  }
  .vtp-list-view .envkv.noicon .envkv-info {
    margin-left: 0;
    margin-top: 0;
  }
  .vtp-list-view .envkv.noicon .envkv-info,
  .vtp-list-view .vtp-envkv .envkv-info {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
  }
  .vtp-list-view .vtp-warranty .product-extras,
  .vtp-list-view .vtp-plus .product-extras,
  .vtp-list-view .vtp-plus.vtp-warranty .product-extras {
    min-height: 95px;
  }
  .vtp-market-ru .vtp-list-view .envkv-info {
    position: relative;
    top: 0px;
    left: 0px;
  }
  .vtp-list-view footer.vtp-envkv:not(.vtp-plus):not(.vtp-warranty) .product-extras {
    left: 34.333333%;
    margin-bottom: 1em;
    width: 54%;
  }
  .vtp-list-view footer.vtp-envkv:not(.vtp-plus):not(.vtp-warranty) .product-extras.no-left-icons {
    left: 0%;
    margin-bottom: 1em;
    width: 100%;
  }
}
.vtp-list-view .product-extras {
  position: inherit;
}
.vtp-list-view .left-icons {
  position: absolute;
  right: 0;
  top: 0;
}
.vtp-list-view .envkv {
  margin-bottom: 4px;
}
.vtp-list-view .envkv .envkv-link {
  float: left;
  display: block;
  margin-right: 8px;
}
.vtp-list-view .envkv img {
  display: inline;
}

.vtp-favorites-toolbar,
.vtp-results-toolbar,
.vtp-online-reservation-toolbar {
  border-bottom: 1px solid #d7dadb;
}
@media print {
  .vtp-favorites-toolbar,
  .vtp-results-toolbar,
  .vtp-online-reservation-toolbar {
    border-bottom: 1px solid #828282;
  }
}
.vtp-favorites-toolbar h2,
.vtp-results-toolbar h2,
.vtp-online-reservation-toolbar h2 {
  font-size: 16px;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
}
.vtp-favorites-toolbar h2 strong,
.vtp-results-toolbar h2 strong,
.vtp-online-reservation-toolbar h2 strong {
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
}
.vtp-favorites-toolbar .vtp-mini-selection,
.vtp-results-toolbar .vtp-mini-selection,
.vtp-online-reservation-toolbar .vtp-mini-selection {
  clear: none;
  margin-top: 5px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .vtp-favorites-toolbar .vtp-mini-selection,
  .vtp-results-toolbar .vtp-mini-selection,
  .vtp-online-reservation-toolbar .vtp-mini-selection {
    clear: both;
  }
}
.vtp-favorites-toolbar .vtp-compare-link,
.vtp-results-toolbar .vtp-compare-link,
.vtp-online-reservation-toolbar .vtp-compare-link {
  position: relative;
  display: inline-block;
  color: #000;
}
.vtp-favorites-toolbar .vtp-compare-link:before,
.vtp-results-toolbar .vtp-compare-link:before,
.vtp-online-reservation-toolbar .vtp-compare-link:before {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -46px;
  background-repeat: no-repeat;
  width: 15px;
  height: 18px;
  width: 15px;
  height: 18px;
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-favorites-toolbar .vtp-compare-link:before,
  .vtp-results-toolbar .vtp-compare-link:before,
  .vtp-online-reservation-toolbar .vtp-compare-link:before {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-favorites-toolbar .vtp-compare-link.vtp-link-active:before, .vtp-favorites-toolbar .vtp-compare-link:hover:before,
.vtp-results-toolbar .vtp-compare-link.vtp-link-active:before,
.vtp-results-toolbar .vtp-compare-link:hover:before,
.vtp-online-reservation-toolbar .vtp-compare-link.vtp-link-active:before,
.vtp-online-reservation-toolbar .vtp-compare-link:hover:before {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -74px;
  background-repeat: no-repeat;
  width: 15px;
  height: 18px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-favorites-toolbar .vtp-compare-link.vtp-link-active:before, .vtp-favorites-toolbar .vtp-compare-link:hover:before,
  .vtp-results-toolbar .vtp-compare-link.vtp-link-active:before,
  .vtp-results-toolbar .vtp-compare-link:hover:before,
  .vtp-online-reservation-toolbar .vtp-compare-link.vtp-link-active:before,
  .vtp-online-reservation-toolbar .vtp-compare-link:hover:before {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (min-width: 768px) {
  .vtp-favorites-toolbar .vtp-compare-link,
  .vtp-results-toolbar .vtp-compare-link,
  .vtp-online-reservation-toolbar .vtp-compare-link {
    padding-left: 22px;
    margin-right: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-favorites-toolbar .vtp-compare-link,
  .vtp-results-toolbar .vtp-compare-link,
  .vtp-online-reservation-toolbar .vtp-compare-link {
    padding: 0 10px;
  }
  .vtp-favorites-toolbar .vtp-compare-link span,
  .vtp-results-toolbar .vtp-compare-link span,
  .vtp-online-reservation-toolbar .vtp-compare-link span {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .vtp-favorites-toolbar .vtp-compare-link:before,
  .vtp-results-toolbar .vtp-compare-link:before,
  .vtp-online-reservation-toolbar .vtp-compare-link:before {
    display: block;
    left: auto;
    margin-bottom: 7px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: auto;
  }
}
.vtp-favorites-toolbar .vtp-discussion-link,
.vtp-results-toolbar .vtp-discussion-link,
.vtp-online-reservation-toolbar .vtp-discussion-link {
  position: relative;
  display: inline-block;
  padding-left: 28px;
}
.vtp-favorites-toolbar .vtp-discussion-link:before,
.vtp-results-toolbar .vtp-discussion-link:before,
.vtp-online-reservation-toolbar .vtp-discussion-link:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1627px;
  background-repeat: no-repeat;
  width: 21px;
  height: 21px;
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 2px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-favorites-toolbar .vtp-discussion-link:before,
  .vtp-results-toolbar .vtp-discussion-link:before,
  .vtp-online-reservation-toolbar .vtp-discussion-link:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-favorites-toolbar .vtp-discussion-link.vtp-link-active:before, .vtp-favorites-toolbar .vtp-discussion-link:hover:before,
.vtp-results-toolbar .vtp-discussion-link.vtp-link-active:before,
.vtp-results-toolbar .vtp-discussion-link:hover:before,
.vtp-online-reservation-toolbar .vtp-discussion-link.vtp-link-active:before,
.vtp-online-reservation-toolbar .vtp-discussion-link:hover:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1658px;
  background-repeat: no-repeat;
  width: 21px;
  height: 21px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-favorites-toolbar .vtp-discussion-link.vtp-link-active:before, .vtp-favorites-toolbar .vtp-discussion-link:hover:before,
  .vtp-results-toolbar .vtp-discussion-link.vtp-link-active:before,
  .vtp-results-toolbar .vtp-discussion-link:hover:before,
  .vtp-online-reservation-toolbar .vtp-discussion-link.vtp-link-active:before,
  .vtp-online-reservation-toolbar .vtp-discussion-link:hover:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 767px) {
  .vtp-favorites-toolbar .vtp-discussion-link,
  .vtp-results-toolbar .vtp-discussion-link,
  .vtp-online-reservation-toolbar .vtp-discussion-link {
    padding: 0 10px;
    max-width: 100px;
  }
  .vtp-favorites-toolbar .vtp-discussion-link span,
  .vtp-results-toolbar .vtp-discussion-link span,
  .vtp-online-reservation-toolbar .vtp-discussion-link span {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .vtp-favorites-toolbar .vtp-discussion-link:before,
  .vtp-results-toolbar .vtp-discussion-link:before,
  .vtp-online-reservation-toolbar .vtp-discussion-link:before {
    display: block;
    left: auto;
    margin-bottom: 4px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: auto;
  }
}
.vtp-favorites-toolbar .vtp-list-view-chooser,
.vtp-results-toolbar .vtp-list-view-chooser,
.vtp-online-reservation-toolbar .vtp-list-view-chooser {
  margin-left: 22px;
}
.vtp-favorites-toolbar .vtp-list-view-chooser input,
.vtp-results-toolbar .vtp-list-view-chooser input,
.vtp-online-reservation-toolbar .vtp-list-view-chooser input {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* Firefox */
  appearance: none;
  clip: rect(0px, 0px, 0px, 0px);
  clip: rect(0 0 0 0);
}
.vtp-favorites-toolbar .vtp-list-view-chooser .icon,
.vtp-results-toolbar .vtp-list-view-chooser .icon,
.vtp-online-reservation-toolbar .vtp-list-view-chooser .icon {
  float: left;
  display: block;
  width: 18px;
  height: 18px;
  margin-left: 7px;
  margin-bottom: 0;
  overflow: hidden;
  text-indent: -200px;
  max-width: 100px;
}
.vtp-favorites-toolbar .vtp-list-view-chooser .icon.vtp-icon-listgrid,
.vtp-results-toolbar .vtp-list-view-chooser .icon.vtp-icon-listgrid,
.vtp-online-reservation-toolbar .vtp-list-view-chooser .icon.vtp-icon-listgrid {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -102px;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-favorites-toolbar .vtp-list-view-chooser .icon.vtp-icon-listgrid,
  .vtp-results-toolbar .vtp-list-view-chooser .icon.vtp-icon-listgrid,
  .vtp-online-reservation-toolbar .vtp-list-view-chooser .icon.vtp-icon-listgrid {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-favorites-toolbar .vtp-list-view-chooser .icon.vtp-icon-listlist,
.vtp-results-toolbar .vtp-list-view-chooser .icon.vtp-icon-listlist,
.vtp-online-reservation-toolbar .vtp-list-view-chooser .icon.vtp-icon-listlist {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -158px;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-favorites-toolbar .vtp-list-view-chooser .icon.vtp-icon-listlist,
  .vtp-results-toolbar .vtp-list-view-chooser .icon.vtp-icon-listlist,
  .vtp-online-reservation-toolbar .vtp-list-view-chooser .icon.vtp-icon-listlist {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-favorites-toolbar .vtp-list-view-chooser .icon.vtp-icon-listlist:hover,
.vtp-favorites-toolbar .vtp-list-view-chooser input:checked + .vtp-icon-listlist,
.vtp-results-toolbar .vtp-list-view-chooser .icon.vtp-icon-listlist:hover,
.vtp-results-toolbar .vtp-list-view-chooser input:checked + .vtp-icon-listlist,
.vtp-online-reservation-toolbar .vtp-list-view-chooser .icon.vtp-icon-listlist:hover,
.vtp-online-reservation-toolbar .vtp-list-view-chooser input:checked + .vtp-icon-listlist {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -186px;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-favorites-toolbar .vtp-list-view-chooser .icon.vtp-icon-listlist:hover,
  .vtp-favorites-toolbar .vtp-list-view-chooser input:checked + .vtp-icon-listlist,
  .vtp-results-toolbar .vtp-list-view-chooser .icon.vtp-icon-listlist:hover,
  .vtp-results-toolbar .vtp-list-view-chooser input:checked + .vtp-icon-listlist,
  .vtp-online-reservation-toolbar .vtp-list-view-chooser .icon.vtp-icon-listlist:hover,
  .vtp-online-reservation-toolbar .vtp-list-view-chooser input:checked + .vtp-icon-listlist {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-favorites-toolbar .vtp-list-view-chooser .icon.vtp-icon-listgrid:hover,
.vtp-favorites-toolbar .vtp-list-view-chooser input:checked + .vtp-icon-listgrid,
.vtp-results-toolbar .vtp-list-view-chooser .icon.vtp-icon-listgrid:hover,
.vtp-results-toolbar .vtp-list-view-chooser input:checked + .vtp-icon-listgrid,
.vtp-online-reservation-toolbar .vtp-list-view-chooser .icon.vtp-icon-listgrid:hover,
.vtp-online-reservation-toolbar .vtp-list-view-chooser input:checked + .vtp-icon-listgrid {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -130px;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-favorites-toolbar .vtp-list-view-chooser .icon.vtp-icon-listgrid:hover,
  .vtp-favorites-toolbar .vtp-list-view-chooser input:checked + .vtp-icon-listgrid,
  .vtp-results-toolbar .vtp-list-view-chooser .icon.vtp-icon-listgrid:hover,
  .vtp-results-toolbar .vtp-list-view-chooser input:checked + .vtp-icon-listgrid,
  .vtp-online-reservation-toolbar .vtp-list-view-chooser .icon.vtp-icon-listgrid:hover,
  .vtp-online-reservation-toolbar .vtp-list-view-chooser input:checked + .vtp-icon-listgrid {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
@media only screen and (max-width: 768px) {
  .vtp-favorites-toolbar .vtp-list-view-chooser,
  .vtp-results-toolbar .vtp-list-view-chooser,
  .vtp-online-reservation-toolbar .vtp-list-view-chooser {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-favorites-toolbar,
  .vtp-results-toolbar,
  .vtp-online-reservation-toolbar {
    border-top: 1px solid #d7dadb;
    padding-top: 16.8px;
    padding-top: 1.4rem;
    padding-bottom: 16.8px;
    padding-bottom: 1.4rem;
    margin-bottom: 0;
  }
  .vtp-favorites-toolbar h2,
  .vtp-results-toolbar h2,
  .vtp-online-reservation-toolbar h2 {
    font-size: 12px;
    margin-bottom: 13.2px;
    margin-bottom: 1.1rem;
  }
}
@media only screen and (max-width: 320px) {
  .vtp-favorites-toolbar,
  .vtp-results-toolbar,
  .vtp-online-reservation-toolbar {
    height: auto;
  }
}

.vtp-results-toolbar {
  /* VTP-18075 Switcher für afrnwb */
}
.vtp-results-toolbar.disabled .vtp-list-view-chooser, .vtp-results-toolbar.disabled .vtp-mini-select, .vtp-results-toolbar.disabled .vtp-compare-link {
  opacity: 0.2;
}
.vtp-results-toolbar .vtp-switcher-container .switcher-left-label {
  display: block;
  float: left;
}
.vtp-results-toolbar .vtp-switcher-container .switcher-left-label .resultcount {
  padding: 0 5px;
}
.vtp-results-toolbar .vtp-switcher-container .switcher-right-label {
  margin-left: 0px;
  float: left;
  display: block;
  margin: 0 !important;
}
.vtp-results-toolbar .vtp-switcher-container .switcher-right-label .resultcount {
  padding: 0 5px;
}
.vtp-results-toolbar .vtp-switcher-container .switcher {
  width: 0;
  height: 0;
  visibility: hidden;
  margin: 0 !important;
}
.vtp-results-toolbar .vtp-switcher-container .switcher-icon {
  position: relative;
  float: left;
  width: auto;
  height: auto;
  overflow: hidden;
  display: block;
}
.vtp-results-toolbar .vtp-switcher-container .switcher-icon label:before {
  content: "";
  cursor: pointer;
  width: 40px;
  height: 18px;
  background: #fff;
  display: inline-block;
  border-radius: 18px;
  position: relative;
  border: 1px solid #b6b1a9;
  margin: 0px 5px;
  float: left;
}
.vtp-results-toolbar .vtp-switcher-container .switcher-icon label:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 9px;
  width: 12px;
  height: 12px;
  background: #bb0a30;
  border-radius: 18px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.vtp-saved-search {
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .vtp-saved-search {
    padding-top: 0;
  }
}
.vtp-saved-search .entries {
  padding-top: 26.4px;
  padding-top: 2.2rem;
}
@media only screen and (max-width: 768px) {
  .vtp-saved-search .saved-search-bar {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .vtp-saved-search .saved-search-bar .vtp-title {
    padding-right: 144px;
    padding-right: 12rem;
    max-width: 100%;
  }
}
.vtp-saved-search .checkbox-primary + label {
  width: auto;
}
.vtp-saved-search .saved-search-not-logged-in {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d7dadb;
}
.vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 {
  margin-top: 24px;
  margin-top: 2rem;
}
@media only screen and (max-width: 568px) {
  .vtp-saved-search .saved-search-not-logged-in .grid-2-2-1 > div {
    margin-bottom: 24px;
    margin-bottom: 2rem;
  }
}
.vtp-saved-search .saved-search-not-logged-in .register-link {
  margin-top: 33.6px;
  margin-top: 2.8rem;
}
.vtp-saved-search .saved-search-not-logged-in .register-link a {
  text-decoration: none;
}

.vtp-section.vtp-saved-search .del-checked-sa {
  display: none;
}
.vtp-section.vtp-saved-search.active .del-checked-sa {
  display: block;
}
.vtp-section.vtp-saved-search.active .del-sev-sa {
  display: none;
}

.vtp-compare-bar {
  display: none;
  top: -34px;
  width: 100%;
  z-index: 500;
  background-color: white;
  padding-bottom: 20px;
  padding-top: 20px;
}
.vtp-compare-bar.fixedsticky-on {
  -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.2);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
}
.vtp-compare-bar.fixedsticky-on .container {
  padding: 0 4%;
}
@media only screen and (min-width: 1280px) {
  .vtp-compare-bar.fixedsticky-on .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.vtp-compare-bar.sticky-active {
  -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.2);
}
.vtp-compare-bar .container {
  *zoom: 1;
  width: auto;
  max-width: 1280px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.vtp-compare-bar .container:before, .vtp-compare-bar .container:after {
  content: "";
  display: table;
}
.vtp-compare-bar .container:after {
  clear: both;
}
@media only screen and (max-width: 767px) {
  .vtp-compare-bar {
    top: 0;
    margin-left: -4%;
    margin-right: -4%;
    margin-top: -1px;
    padding-bottom: 0;
    width: 108%;
    background-color: #e7e9ea;
    -webkit-transition: -webkit-box-shadow 1s linear !important;
    transition: -webkit-box-shadow 1s linear !important;
    -o-transition: box-shadow 1s linear !important;
    transition: box-shadow 1s linear !important;
    transition: box-shadow 1s linear, -webkit-box-shadow 1s linear !important;
  }
  .vtp-compare-bar .container, .vtp-compare-bar.fixedsticky-on .container {
    padding: 0 4%;
  }
  .vtp-compare-bar.fixedsticky-on {
    border-bottom: none;
  }
}
.vtp-compare-bar h4 {
  font-size: 12px;
  font-family: Verdana, sans-serif;
  margin-top: 0px;
  margin-bottom: 0px;
  height: 34px;
  margin-left: 10px;
  overflow: hidden;
  max-height: 34px;
}
@media only screen and (max-width: 767px) {
  .vtp-compare-bar h4 {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0;
  }
}
.vtp-compare-bar .car-list-extra-mobile {
  display: none;
  width: 85%;
  float: left;
  margin-top: 0px;
  height: 40px;
}
@media only screen and (max-width: 767px) {
  .vtp-compare-bar .car-list-extra-mobile {
    display: block;
  }
}
.vtp-compare-bar .car-list-extra-mobile span {
  float: left;
  font-size: 20px;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .vtp-compare-bar .car-list-extra-mobile span {
    width: auto;
    padding-right: 40px;
    margin-right: 30px;
  }
}
@media only screen and (max-width: 567px) {
  .vtp-compare-bar .car-list-extra-mobile span {
    width: 33%;
    padding-right: 0;
    margin-right: 0;
  }
}
.vtp-compare-bar .car-list-extra-mobile span:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3572px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  margin-left: 10px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-compare-bar .car-list-extra-mobile span:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-compare-bar .car-list-extra-mobile li[data-id] span:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -3452px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  margin-left: 10px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-compare-bar .car-list-extra-mobile li[data-id] span:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-compare-bar .car-list {
  *zoom: 1;
  width: 73%;
  float: left;
}
.vtp-compare-bar .car-list:before, .vtp-compare-bar .car-list:after {
  content: "";
  display: table;
}
.vtp-compare-bar .car-list:after {
  clear: both;
}
@media only screen and (max-width: 767px) {
  .vtp-compare-bar .car-list {
    width: 100%;
    margin-top: 34px;
    display: block;
  }
}
.vtp-compare-bar .car-list > li {
  position: relative;
  min-height: 38px;
}
.vtp-compare-bar .car-list > li:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  right: 40px;
  height: 37px;
  width: 1px;
  border-left: 1px solid #cdd0d2;
}
@media only screen and (max-width: 1023px) {
  .vtp-compare-bar .car-list > li:after {
    right: 5%;
  }
}
.vtp-compare-bar .car-list > li.has-item:after {
  right: 0;
}
.vtp-compare-bar .car-list > li.has-item + li {
  padding-left: 20px;
}
.vtp-compare-bar .car-list > li.has-item .picture {
  background-image: none;
}
.vtp-compare-bar .car-list > li:last-child:after {
  border: none;
}
.vtp-compare-bar .car-list > li:nth-child(1) .car-teaser:before, .vtp-compare-bar .car-list > li:nth-child(1) .similar-car-item:before {
  content: "1";
}
@media only screen and (max-width: 767px) {
  .vtp-compare-bar .car-list > li:nth-child(1) .car-teaser:before, .vtp-compare-bar .car-list > li:nth-child(1) .similar-car-item:before {
    display: none;
  }
}
.vtp-compare-bar .car-list > li:nth-child(2) .car-teaser:before, .vtp-compare-bar .car-list > li:nth-child(2) .similar-car-item:before {
  content: "2";
}
@media only screen and (max-width: 767px) {
  .vtp-compare-bar .car-list > li:nth-child(2) .car-teaser:before, .vtp-compare-bar .car-list > li:nth-child(2) .similar-car-item:before {
    display: none;
  }
}
.vtp-compare-bar .car-list > li:nth-child(3) .car-teaser:before, .vtp-compare-bar .car-list > li:nth-child(3) .similar-car-item:before {
  content: "3";
}
@media only screen and (max-width: 767px) {
  .vtp-compare-bar .car-list > li:nth-child(3) .car-teaser:before, .vtp-compare-bar .car-list > li:nth-child(3) .similar-car-item:before {
    display: none;
  }
}
.vtp-compare-bar .car-list .car-teaser, .vtp-compare-bar .car-list .similar-car-item {
  padding-left: 40px;
  padding-bottom: 0;
  margin-bottom: 0;
}
.vtp-compare-bar .car-list .car-teaser:before, .vtp-compare-bar .car-list .similar-car-item:before {
  width: 40px;
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  padding-left: 10px;
  font-size: 32px;
  line-height: 1em;
  vertical-align: middle;
  padding: 0 0 0 7px;
}
.vtp-compare-bar .car-list .image {
  width: 53px;
  top: 3px;
  left: 0;
}
.vtp-compare-bar .car-list .image-container {
  background-color: #f2f4f3;
  margin-bottom: 6px;
  margin-bottom: 0.5rem;
}
.vtp-compare-bar .car-list .picture {
  background-image: url(../images/sprite-filterpage.png);
  background-position: 0px -1244px;
  background-repeat: no-repeat;
  width: 53px;
  height: 39px;
  background-position: 0px -1249px;
  width: auto;
  height: auto;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-compare-bar .car-list .picture {
    background-size: 102px 4307px;
    background-image: url(../images/sprite-filterpage@2x.png);
  }
}
.vtp-gwb .vtp-compare-bar .car-list .picture {
  background-position: 0px -1244px;
}
.vtp-compare-bar .car-list .info {
  margin-left: -31px;
  padding-right: 35px;
}
.vtp-compare-bar .car-list .info a {
  display: block;
}
.vtp-compare-bar .car-list .info sup a {
  display: inline-block;
}
.vtp-compare-bar .car-list .info h3 {
  float: none;
  display: inline-block;
  font-size: 12px;
  line-height: 1.5;
  max-width: 100%;
}
.vtp-compare-bar .car-list .info h3 .icon {
  content: "";
  background-image: url(../images/sprite-common.png);
  background-position: 0px -316px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  /*position: absolute;*/
  display: inline-block;
  margin-left: 5px;
  margin-left: 0.4166666667rem;
  margin-top: 5.4px;
  margin-top: 0.45rem;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-compare-bar .car-list .info h3 .icon {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-compare-bar .car-list .info .price {
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .vtp-compare-bar .car-list .info .price {
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 1023px) {
  .vtp-compare-bar .car-list .info {
    padding-right: 20px;
    display: none;
  }
}
.vtp-compare-bar .car-list .delete {
  position: absolute;
  display: block;
  width: 20px;
  height: 36px;
  top: -14px;
  right: 14px;
  text-align: center;
  line-height: 36px;
  font-family: Verdana, sans-serif;
  display: table-cell;
}
@media only screen and (max-width: 1023px) {
  .vtp-compare-bar .car-list .delete {
    left: 105px;
    right: auto;
    top: 0;
  }
}
.vtp-compare-bar .car-list > li.has-no-item {
  float: left;
  clear: none;
  width: 33.2666666667%;
  margin-left: 0;
  margin-right: 0;
  margin-right: 0px;
}
.vtp-compare-bar .car-list > li.has-no-item:last-child {
  margin-right: 0;
}
.vtp-compare-bar .car-list > li.has-no-item .car-teaser, .vtp-compare-bar .car-list > li.has-no-item .similar-car-item {
  color: #b0b6b8;
}
.vtp-compare-bar .car-list > li.has-no-item .car-teaser img, .vtp-compare-bar .car-list > li.has-no-item .similar-car-item img {
  display: none;
}
@media only screen and (max-width: 767px) {
  .vtp-compare-bar .car-list > li.has-no-item {
    display: none;
  }
}
.vtp-compare-bar .car-list > li.has-item {
  float: left;
  clear: none;
  width: 33.2666666667%;
  margin-left: 0;
  margin-right: 0;
}
.vtp-compare-bar .car-list > li.has-item:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .vtp-compare-bar .car-list > li.has-item {
    display: none;
    padding-right: 0;
    border-top: 1px solid #fff;
    padding-bottom: 0;
    min-height: 58px;
  }
  .vtp-compare-bar .car-list > li.has-item .info {
    display: block;
    width: auto;
    position: relative;
    left: auto;
    bottom: auto;
    right: auto;
    margin-left: 100px;
    padding-top: 7px;
    padding-right: 18px;
    padding-right: 1.5rem;
    margin-right: 4%;
  }
  .vtp-compare-bar .car-list > li.has-item .image {
    width: 76px;
    left: 0;
    position: absolute;
  }
  .vtp-compare-bar .car-list > li.has-item .image .image-container {
    width: 76px;
    height: 57px;
    margin-bottom: 0;
  }
  .vtp-compare-bar .car-list > li.has-item:after {
    border-left: none;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-compare-bar .car-list > li.has-item:nth-child(1) .car-teaser .info .center:before, .vtp-compare-bar .car-list > li.has-item:nth-child(1) .similar-car-item .info .center:before {
    content: "1";
    display: block;
    position: absolute;
    left: -14px;
    top: 6px;
    font-family: "AudiTypeExtBold", Verdana, sans-serif;
    font-weight: 700;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-compare-bar .car-list > li.has-item:nth-child(2) .car-teaser .info .center:before, .vtp-compare-bar .car-list > li.has-item:nth-child(2) .similar-car-item .info .center:before {
    content: "2";
    display: block;
    position: absolute;
    left: -14px;
    top: 6px;
    font-family: "AudiTypeExtBold", Verdana, sans-serif;
    font-weight: 700;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-compare-bar .car-list > li.has-item:nth-child(3) .car-teaser .info .center:before, .vtp-compare-bar .car-list > li.has-item:nth-child(3) .similar-car-item .info .center:before {
    content: "3";
    display: block;
    position: absolute;
    left: -14px;
    top: 6px;
    font-family: "AudiTypeExtBold", Verdana, sans-serif;
    font-weight: 700;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-compare-bar .car-list > li.has-item:nth-child(4) .car-teaser .info .center:before, .vtp-compare-bar .car-list > li.has-item:nth-child(4) .similar-car-item .info .center:before {
    content: "4";
    display: block;
    position: absolute;
    left: -14px;
    top: 6px;
    font-family: "AudiTypeExtBold", Verdana, sans-serif;
    font-weight: 700;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-compare-bar .car-list > li.has-item:nth-child(5) .car-teaser .info .center:before, .vtp-compare-bar .car-list > li.has-item:nth-child(5) .similar-car-item .info .center:before {
    content: "5";
    display: block;
    position: absolute;
    left: -14px;
    top: 6px;
    font-family: "AudiTypeExtBold", Verdana, sans-serif;
    font-weight: 700;
  }
}
.vtp-compare-bar .action-holder {
  width: 27%;
  float: right;
  text-align: right;
  padding-right: 15px;
}
@media only screen and (max-width: 767px) {
  .vtp-compare-bar .action-holder {
    position: absolute;
    right: 0;
    width: auto;
    padding-right: 0;
    /*top:20px;*/
    /*padding-top:14px;*/
    margin-top: -5px;
  }
}
.vtp-compare-bar .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-btn {
  width: auto;
  background-color: #e7e9ea;
  color: #fff;
  cursor: default;
}
@media only screen and (max-width: 1023px) {
  .vtp-compare-bar .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-btn {
    background-color: #b0b6b6;
  }
}
@media only screen and (max-width: 567px) {
  .vtp-compare-bar .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: inline-block;
    padding: 0;
    border: none;
  }
  .vtp-compare-bar .action-holder .vtp-btn span, .vtp-compare-bar.compare-enabled .action-holder .vtp-btn span {
    display: none;
  }
  .vtp-compare-bar .action-holder .vtp-btn:after, .vtp-compare-bar.compare-enabled .action-holder .vtp-btn:after {
    margin: 0;
    content: "";
    background-image: url(../images/sprite-common.png);
    background-position: 0px -4485px;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    display: block;
  }
}
@media only screen and (max-width: 567px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 567px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 567px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 567px) and (min-resolution: 144dpi), only screen and (max-width: 567px) and (min-resolution: 1.5dppx) {
  .vtp-compare-bar .action-holder .vtp-btn:after, .vtp-compare-bar.compare-enabled .action-holder .vtp-btn:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-compare-bar.compare-enabled .action-holder .vtp-btn {
  background-color: #000;
  cursor: pointer;
}
@media only screen and (max-width: 567px) {
  .vtp-compare-bar.compare-enabled .action-holder .vtp-btn.submit:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -4435px;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    width: 40px;
    min-width: 40px;
    height: 40px;
    margin: 0;
    display: block;
  }
}
@media only screen and (max-width: 567px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 567px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 567px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 567px) and (min-resolution: 144dpi), only screen and (max-width: 567px) and (min-resolution: 1.5dppx) {
  .vtp-compare-bar.compare-enabled .action-holder .vtp-btn.submit:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-compare-bar .details {
  clear: left;
  display: none;
  text-align: left;
  padding-top: 20px;
  padding-left: 10px;
}
.vtp-compare-bar .details span.upAfter {
  display: none;
}
.vtp-compare-bar .details span.down {
  display: block;
}
.vtp-compare-bar.has-items {
  display: block;
}
@media only screen and (max-width: 1023px) {
  .vtp-compare-bar.has-items .details {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-compare-bar.has-items .details {
    position: absolute;
    left: 0;
    top: 26px;
    display: block;
    padding-left: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .vtp-compare-bar.detailed .car-list {
    width: 100%;
    float: left;
    margin-bottom: 12px;
  }
  .vtp-compare-bar.detailed .car-list .info {
    display: block;
  }
  .vtp-compare-bar.detailed .action-holder .vtp-btn {
    width: auto;
  }
  .vtp-compare-bar.detailed span.upAfter {
    display: block;
  }
  .vtp-compare-bar.detailed span.down {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-compare-bar.detailed {
    padding-bottom: 0px;
  }
  .vtp-compare-bar.detailed .car-list {
    display: block;
    height: auto;
    margin-bottom: 0px;
  }
  .vtp-compare-bar.detailed .car-list > li.has-item {
    margin-left: -4%;
    margin-right: -4%;
    padding-left: 0;
    width: 108%;
    display: block;
  }
  .vtp-compare-bar.detailed .car-list > li.has-item .car-teaser, .vtp-compare-bar.detailed .car-list > li.has-item .similar-car-item {
    padding-left: 0;
  }
  .vtp-compare-bar.detailed .car-list > li.has-item .car-teaser .delete, .vtp-compare-bar.detailed .car-list > li.has-item .similar-car-item .delete {
    width: 10px;
    left: auto;
    right: 4%;
    top: 10px;
  }
}
@media only screen and (max-width: 567px) {
  .vtp-compare-bar.detailed .action-holder .vtp-btn {
    width: 40px;
  }
}

.vtp-gwb .vtp-compare-bar .car-teaser .image, .vtp-gwb .vtp-compare-bar .similar-car-item .image {
  top: 0;
}

.vtp-results-page .vtp-compare-bar {
  top: 36px;
}
@media only screen and (max-width: 767px) {
  .vtp-results-page .vtp-compare-bar {
    top: -12px;
  }
}

.vtp-compare-table {
  padding-top: 25px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .vtp-compare-table {
    padding-top: 50px;
  }
}
.vtp-compare-table table {
  position: relative;
  border-collapse: collapse;
}
@media only screen and (max-width: 767px) {
  .vtp-compare-table table {
    background-color: #e7e9ea;
    margin-left: -4%;
    margin-right: -4%;
    width: 108%;
    max-width: 108%;
  }
}
.vtp-compare-table tr:last-child {
  border-bottom: 10px solid white;
}
@media only screen and (max-width: 1023px) {
  .vtp-compare-table tr {
    background-color: #e7e9ea;
  }
}
.vtp-compare-table td, .vtp-compare-table th {
  position: relative;
  float: left;
  clear: none;
  width: 24.95%;
  margin-left: 0;
  margin-right: 0;
  float: none;
  text-align: left;
  border-bottom: 2px solid white;
  margin-bottom: 2px;
}
@media only screen and (max-width: 767px) {
  .vtp-compare-table td, .vtp-compare-table th {
    z-index: 1;
    margin-bottom: 0;
  }
}
.vtp-compare-table td {
  padding: 10px;
}
.vtp-compare-table th {
  padding-left: 15px;
  padding-right: 2%;
}
.vtp-compare-table td.active {
  z-index: 100;
}
.vtp-compare-table thead td {
  position: relative;
}
.vtp-compare-table th {
  background-color: #fff;
  font-weight: 700;
  margin-bottom: 0px;
}
.vtp-compare-table th.sub-head {
  font-weight: 400;
  padding-left: 20px;
}
@media only screen and (max-width: 1023px) {
  .vtp-compare-table th {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-compare-table th:first-child {
    margin-left: auto;
  }
  .vtp-compare-table th:last-child {
    margin-right: auto;
  }
  .vtp-compare-table th.show-tablet {
    display: block;
  }
  .vtp-compare-table th.sub-head {
    padding-left: 10px;
  }
}
.vtp-compare-table td {
  background-color: #e7e9ea;
}
@media only screen and (max-width: 1023px) {
  .vtp-compare-table td {
    float: left;
    clear: none;
    width: 33.2666666667%;
    margin-left: 0;
    margin-right: 0;
  }
}
.vtp-compare-table td[colspan="3"] {
  width: 100%;
  height: 1px;
  min-height: 1px;
  padding: 0;
  margin: 0;
}
.vtp-compare-table td[colspan="4"] {
  z-index: 1;
}
.vtp-compare-table td ul li {
  list-style: disc;
  margin: 0 0 0 16px;
}
.vtp-compare-table thead:after {
  display: none;
}
.vtp-compare-table thead .icn-toggle {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -172px;
  background-repeat: no-repeat;
  width: 12px;
  height: 8px;
  position: absolute;
  right: 10px;
  top: 24px;
  top: 2rem;
  margin-top: -4px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-compare-table thead .icn-toggle {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-compare-table thead.active .icn-toggle {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -226px;
  background-repeat: no-repeat;
  width: 12px;
  height: 8px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-compare-table thead.active .icn-toggle {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-compare-table thead td {
  padding: 14px 10px;
  width: 100%;
  float: none;
}
.vtp-compare-table tbody th, .vtp-compare-table tbody td {
  min-height: 40px;
  padding-left: 2%;
  padding-right: 2%;
}
@media only screen and (max-width: 1023px) {
  .vtp-compare-table tbody th, .vtp-compare-table tbody td {
    z-index: 1;
  }
}
.vtp-compare-table tbody th {
  min-height: 41px;
}
.vtp-compare-table tbody.reverse-bg td:before {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .vtp-compare-table tbody td {
    border-bottom: 0;
  }
  .vtp-compare-table tbody td:before {
    position: absolute;
    left: 0;
    width: 1px;
    content: "";
    background-color: #b0b6b8;
    height: 20px;
    display: block;
  }
  .vtp-compare-table tbody td:first-of-type:before {
    display: none;
  }
  .vtp-compare-cars-2 .vtp-compare-table tbody td {
    float: left;
    clear: none;
    width: 49.9%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-compare-cars-2 .vtp-compare-table tbody td:last-child {
    display: none;
  }
  .vtp-compare-cars-2 .vtp-compare-table tbody td:last-child.hide-tablet {
    display: table-cell;
  }
  .vtp-compare-cars-2 .vtp-compare-table tbody td.hide-tablet {
    width: 100%;
  }
  .vtp-compare-cars-2 .vtp-compare-table tbody td:first-of-type:before {
    display: none;
  }
  .vtp-compare-table tbody tr.has-subs {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #e7e9ea;
  }
  .vtp-compare-table tbody tr:last-child {
    border-bottom-width: 40px;
  }
}
.vtp-compare-table tbody p {
  margin-bottom: 20px;
}
.vtp-compare-table tbody p a {
  text-decoration: none;
}
.vtp-compare-table .icn-true {
  display: inline-block;
}
.vtp-compare-table .info:before {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  border-top: 1px solid #d7dadb;
  margin: 20px 0 30px 0;
}
.vtp-compare-table .visible-hidden {
  visibility: hidden;
  display: block;
}
@media only screen and (max-width: 567px) {
  .vtp-compare-table table:last-of-type tbody tr:last-child {
    border-bottom-width: 10px;
  }
  .vtp-compare-table tbody td {
    float: left;
    clear: none;
    width: 49.9%;
    margin-left: 0;
    margin-right: 0;
    -webkit-animation-duration: 400ms;
    -o-animation-duration: 400ms;
    animation-duration: 400ms;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
    animation-duration: 400ms;
  }
  .compare-animate-out .vtp-compare-table tbody td {
    -webkit-animation-duration: 400ms;
    -o-animation-duration: 400ms;
    animation-duration: 400ms;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeOut;
    -o-animation-name: fadeOut;
    animation-name: fadeOut;
    animation-duration: 400ms;
  }
  .vtp-compare-table tbody td:nth-child(4) {
    display: none;
  }
  .compare-active-1 .vtp-compare-table tbody td:nth-child(2), .compare-active-1 .vtp-compare-table tbody td:nth-child(3) {
    display: block;
  }
  .compare-active-1 .vtp-compare-table tbody td:nth-child(4) {
    display: none;
  }
  .compare-active-2 .vtp-compare-table tbody td:nth-child(3), .compare-active-2 .vtp-compare-table tbody td:nth-child(4) {
    display: block;
  }
  .compare-active-2 .vtp-compare-table tbody td:nth-child(3):before {
    display: none;
  }
  .compare-active-2 .vtp-compare-table tbody td:nth-child(2) {
    display: none;
  }
  .compare-active-3 .vtp-compare-table tbody td:nth-child(2), .compare-active-3 .vtp-compare-table tbody td:nth-child(4) {
    display: block;
  }
  .compare-active-3 .vtp-compare-table tbody td:nth-child(2) {
    position: relative;
    left: 49.9%;
  }
  .compare-active-3 .vtp-compare-table tbody td:nth-child(4) {
    position: relative;
    left: -49.9%;
  }
  .compare-active-3 .vtp-compare-table tbody td:nth-child(3) {
    display: none;
  }
  .vtp-compare-table .hide-tablet {
    display: none !important;
  }
}

.vtp-modals .vtp-mandatory-areasearch .filter-area-back-link {
  vertical-align: top;
  display: inline-block;
  position: relative;
  padding-left: 10px;
}
.vtp-modals .vtp-mandatory-areasearch .filter-area-back-link::before {
  content: "";
  background-image: url(../images/sprite-common.png);
  background-position: 0px -244px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  left: 0px;
  top: 6px;
  position: absolute;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-modals .vtp-mandatory-areasearch .filter-area-back-link::before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-modals .vtp-mandatory-areasearch h1 {
  padding-top: 40px;
  margin-bottom: 20px !important;
}
.vtp-modals .vtp-mandatory-areasearch .filter-area-search-subheadline {
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  font-size: 18px;
  line-height: 22px;
  padding-bottom: 40px;
}
.vtp-modals .vtp-mandatory-areasearch .filter-area-search-subheadline span {
  color: #c03;
}
.vtp-modals .vtp-mandatory-areasearch .filter-area-search-subheadline.special-offer-subheadline {
  padding-bottom: 17px;
}
.vtp-modals .vtp-mandatory-areasearch #filter-area-search-map {
  position: relative;
  width: auto;
  left: auto;
  top: auto;
  margin-left: 0;
  margin-bottom: 45px;
}
.vtp-modals .vtp-mandatory-areasearch #filter-area-search-map p {
  font-weight: 700;
  margin-bottom: 15px;
}
.vtp-modals .vtp-mandatory-areasearch #filter-area-search-map input {
  width: 333px;
}
.vtp-modals .vtp-mandatory-areasearch #filter-area-search-map form .control-group {
  width: -webkit-calc(100% - 249px);
  width: calc(100% - 249px);
}
.vtp-modals .vtp-mandatory-areasearch #filter-area-search-map form .control-group #vtp-area-input-address {
  width: 100%;
}
.vtp-modals .vtp-mandatory-areasearch #filter-area-search-map form .control-group .vtp-area-btn-clear {
  right: 44px;
}
.vtp-modals .vtp-mandatory-areasearch #filter-area-search-map form .control-group .vtp-area-btn-locate {
  width: 42px;
  width: 3.5rem;
  display: inline-block;
}
.vtp-modals .vtp-mandatory-areasearch #filter-area-search-map form #vtp-area-btn-submit {
  padding: 10px 0px 9px;
  width: 130px;
  min-width: 0px;
  right: 0;
  position: absolute;
}
.vtp-modals .vtp-mandatory-areasearch #filter-area-search-map form #vtp-area-btn-submit::after {
  position: relative;
}
.vtp-modals .vtp-mandatory-areasearch #filter-area-search-map form .error {
  padding: 10px 0 0;
}

@media only screen and (max-width: 767px) {
  .vtp-modals .vtp-mandatory-areasearch #filter-area-search-map form .control-group {
    width: -webkit-calc(100% - 249px);
    width: calc(100% - 249px);
  }
  .vtp-modals .vtp-mandatory-areasearch #filter-area-search-map form .control-group #vtp-area-input-address {
    width: 101%;
  }
  .vtp-modals .vtp-mandatory-areasearch #filter-area-search-map form .control-group .vtp-area-btn-clear {
    right: 44px;
  }
  .vtp-modals .vtp-mandatory-areasearch #filter-area-search-map form .control-group .vtp-area-btn-locate {
    right: 0;
    display: inline-block;
  }
  .vtp-modals .vtp-mandatory-areasearch #filter-area-search-map form .custom-select {
    position: relative;
  }
  .vtp-modals .vtp-mandatory-areasearch #filter-area-search-map form .error {
    padding: 10px 0 0;
  }
  .vtp-modals .vtp-mandatory-areasearch #filter-area-search-map form #vtp-area-btn-submit {
    padding: 10px 0px 9px;
    width: 130px;
    margin-top: 0;
  }
  .vtp-modals .vtp-mandatory-areasearch #filter-area-search-map form #vtp-area-btn-submit::after {
    position: relative;
  }
  .vtp-modals .vtp-mandatory-areasearch #filter-area-search-map form .vtp-teaser-module-list-item {
    margin-top: 0px;
  }
}
@media only screen and (min-width: 660px) {
  .vtp-modals .vtp-section-modal-layer {
    padding: 0;
  }
  .vtp-modals .vtp-section-modal-layer .vtp-teaser-module-list-item {
    width: 100%;
    float: none;
    display: block;
    display: table;
    margin-bottom: 50px;
    margin-top: 0px;
  }
  .vtp-modals .vtp-section-modal-layer .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container {
    padding-bottom: 0;
    display: table-cell;
    width: 50%;
  }
  .vtp-modals .vtp-section-modal-layer .vtp-teaser-module-list-item .vtp-teaser-module-copy {
    display: table-cell;
    position: relative;
    width: 50%;
    height: 100%;
    vertical-align: top;
  }
  .vtp-modals .vtp-section-modal-layer .vtp-teaser-module-list-item .vtp-teaser-module-copy h3 {
    margin: 0 0 10px 30px;
  }
  .vtp-modals .vtp-section-modal-layer .vtp-teaser-module-list-item .vtp-teaser-module-copy h3 a {
    line-height: 20px;
  }
  .vtp-modals .vtp-section-modal-layer .vtp-teaser-module-list-item .vtp-teaser-module-copy p {
    margin-left: 30px;
  }
  .vtp-modals .vtp-section-modal-layer .vtp-teaser-module-list-item .vtp-teaser-module-copy .vtp-btn {
    position: absolute;
    bottom: 0;
    left: 30px;
    width: auto;
  }
}
@media only screen and (max-width: 660px) {
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-item {
    margin-top: 30px;
  }
  .vtp-modals .vtp-mandatory-areasearch #filter-area-search-map form .control-group {
    width: -webkit-calc(100% - 102px);
    width: calc(100% - 102px);
    margin-bottom: 20px;
  }
  .vtp-modals .vtp-mandatory-areasearch #filter-area-search-map form input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
  }
  .vtp-modals .vtp-mandatory-areasearch #filter-area-search-map form #vtp-area-btn-submit {
    width: 100%;
    position: relative;
  }
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item,
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item,
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item:first-child,
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item:first-child,
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item:first-child {
    margin-left: auto;
  }
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item:last-child,
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item:last-child,
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item:last-child {
    margin-right: auto;
  }
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container,
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container,
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    padding-bottom: 10px;
    padding-right: 0;
  }
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container:first-child,
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container:first-child,
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container:first-child {
    margin-left: auto;
  }
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container:last-child,
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container:last-child,
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container:last-child {
    margin-right: auto;
  }
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.vtp-teaser-module-copy,
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.vtp-teaser-module-copy,
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.vtp-teaser-module-copy {
    padding-left: 0px;
  }
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-1 .vtp-teaser-module-list-item h3 a,
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-2 .vtp-teaser-module-list-item h3 a,
  .vtp-modals .vtp-mandatory-areasearch .vtp-teaser-module-list-items-3 .vtp-teaser-module-list-item h3 a {
    font-size: 15px;
    font-size: 1.25rem;
    line-height: 20px;
  }
  .vtp-modals .vtp-mandatory-areasearch #filter-area-search-map {
    margin-left: 0;
    width: 100%;
  }
  .vtp-modals .vtp-mandatory-areasearch #filter-area-search-map input {
    width: 100%;
  }
}
.ie9 .vtp-modals .vtp-section-modal-layer {
  padding: 0;
}
.ie9 .vtp-modals .vtp-section-modal-layer .vtp-teaser-module-list-item {
  width: 100%;
  float: none;
  display: block;
  display: table;
  margin-bottom: 50px;
  margin-top: 0px;
}
.ie9 .vtp-modals .vtp-section-modal-layer .vtp-teaser-module-list-item .vtp-teaser-module-list-subitem.image-container {
  padding-bottom: 0;
  display: table-cell;
  width: 50%;
}
.ie9 .vtp-modals .vtp-section-modal-layer .vtp-teaser-module-list-item .vtp-teaser-module-copy {
  display: table-cell;
  position: relative;
  width: 50%;
  height: 100%;
  vertical-align: top;
}
.ie9 .vtp-modals .vtp-section-modal-layer .vtp-teaser-module-list-item .vtp-teaser-module-copy h3 {
  margin: 0 0 10px 30px;
}
.ie9 .vtp-modals .vtp-section-modal-layer .vtp-teaser-module-list-item .vtp-teaser-module-copy h3 a {
  line-height: 20px;
}
.ie9 .vtp-modals .vtp-section-modal-layer .vtp-teaser-module-list-item .vtp-teaser-module-copy p {
  margin-left: 30px;
}
.ie9 .vtp-modals .vtp-section-modal-layer .vtp-teaser-module-list-item .vtp-teaser-module-copy .vtp-btn {
  position: absolute;
  bottom: 0;
  left: 30px;
  width: auto;
}

.vtp-seo-module {
  background-color: #ccc;
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.vtp-seo-module .container {
  padding: 0 20px;
}
.vtp-seo-module h3,
.vtp-seo-module h4 {
  line-height: 1.3;
}
.vtp-seo-module article {
  float: left;
  clear: none;
  width: 78.3845833333%;
  margin-left: 0;
  margin-right: 2.994%;
  margin-top: 15px;
  margin-top: 1.25rem;
  margin-bottom: 30px;
  margin-bottom: 2.5rem;
}
.vtp-seo-module article:last-child {
  margin-right: 0;
}
.vtp-seo-module article:last-child {
  margin-bottom: 1em;
}
.vtp-seo-module .container {
  padding-left: 0;
  padding-right: 0;
}
.vtp-seo-module .vtp-key-article h4,
.vtp-seo-module .vtp-checklist {
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  font-weight: 400;
}
.vtp-seo-module .vtp-checklist ul {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .vtp-seo-module {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .vtp-seo-module article {
    float: left;
    clear: none;
    width: 99.8%;
    margin-left: 0;
    margin-right: 2.994%;
    margin-top: 10px;
    margin-top: 0.8333333333rem;
    margin-bottom: 20px;
    margin-bottom: 1.6666666667rem;
  }
  .vtp-seo-module article:last-child {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .vtp-seo-module .container {
    padding: 0 20px;
  }
}

.vtp-key-article h3 {
  font-size: 15px;
}
.vtp-key-article h4 {
  font-size: inherit;
}

.vtp-saved-search-entry {
  display: block;
  position: relative;
  padding-top: 33.6px;
  padding-top: 2.8rem;
  padding-bottom: 26.4px;
  padding-bottom: 2.2rem;
  content: "";
  display: block;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d7dadb;
  content: "";
  display: block;
  position: relative;
  width: 100%;
  border-top: 1px solid #d7dadb;
}
.vtp-saved-search-entry + .vtp-saved-search-entry {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  border-top: 1px solid transparent;
}
.vtp-saved-search-entry .info-saved-search {
  margin: -45px 0 0 60px;
}
.vtp-saved-search-entry .sase-go {
  float: left;
  clear: none;
  width: 17.5648%;
  margin-left: 0;
  margin-right: 2.994%;
  margin-right: 0;
  float: right;
}
.vtp-saved-search-entry .sase-go:last-child {
  margin-right: 0;
}
.vtp-saved-search-entry .sase-go a {
  margin-top: -10px;
  float: right;
}
.vtp-saved-search-entry .sase-meta {
  float: left;
  clear: none;
  width: 17.5648%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-saved-search-entry .sase-meta:last-child {
  margin-right: 0;
}
.vtp-saved-search-entry .sase-edit {
  float: left;
  clear: none;
  width: 17.5648%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-saved-search-entry .sase-edit:last-child {
  margin-right: 0;
}
.vtp-saved-search-entry .sase-edit a {
  font-family: Verdana, sans-serif;
  font-weight: 700;
  white-space: nowrap;
}
.vtp-saved-search-entry .sase-edit a:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -316px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-saved-search-entry .sase-edit a:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-saved-search-entry .sase-mail {
  float: left;
  clear: none;
  width: 38.1236%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-saved-search-entry .sase-mail:last-child {
  margin-right: 0;
}
.vtp-saved-search-entry .sase-mail legend {
  float: left;
  clear: none;
  width: 48.403%;
  margin-left: 0;
  margin-right: 2.994%;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}
.vtp-saved-search-entry .sase-mail legend:last-child {
  margin-right: 0;
}
.vtp-saved-search-entry .sase-mail .control-group {
  float: left;
  clear: none;
  width: 22.7045%;
  margin-left: 0;
  margin-right: 2.994%;
  margin-top: -16px;
}
.vtp-saved-search-entry .sase-mail .control-group:last-child {
  margin-right: 0;
}
.vtp-saved-search-entry .sase-mail .control-group:first-of-type {
  text-align: right;
}
.vtp-saved-search-entry .sase-detail-control {
  text-align: left;
}
.vtp-saved-search-entry .sase-detail-control *[data-state=active] {
  display: none;
}
.vtp-saved-search-entry .sase-detail-control.active *[data-state=active] {
  display: inline;
}
.vtp-saved-search-entry .sase-detail-control.active *[data-state=inactive] {
  display: none;
}
.vtp-saved-search-entry .sase-detail-list {
  display: none;
  padding-top: 20px;
  margin-bottom: 0;
  width: 60%;
}
.vtp-saved-search-entry .sase-detail-list dt {
  float: left;
  clear: none;
  width: 22.7045%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-saved-search-entry .sase-detail-list dt:last-child {
  margin-right: 0;
}
.vtp-saved-search-entry .sase-detail-list dt:nth-of-type(2n+1) {
  clear: both;
}
.vtp-saved-search-entry .sase-detail-list dd {
  float: left;
  clear: none;
  width: 22.7045%;
  margin-left: 0;
  margin-right: 2.994%;
}
.vtp-saved-search-entry .sase-detail-list dd:nth-of-type(2n) {
  margin-right: 2.994%;
  float: left;
}
.vtp-saved-search-entry .sase-detail-list dd:nth-of-type(2n + 1) {
  clear: none;
}
.vtp-saved-search-entry .sase-detail-list dd:nth-of-type(n) {
  margin-right: 2.994%;
  float: left;
  clear: none;
}
.vtp-saved-search-entry .sase-detail-list dd:nth-of-type(2n) {
  margin-right: 0;
  float: right;
}
.vtp-saved-search-entry .sase-detail-list dd:nth-of-type(2n + 1) {
  clear: both;
}
.vtp-saved-search-entry .sase-detail-list dd:nth-of-type(2n+1) {
  clear: none;
}
.vtp-saved-search-entry .sase-detail-list.first {
  display: block;
}

@media only screen and (max-width: 1023px) {
  .vtp-saved-search-entry .sase-go {
    float: left;
    clear: none;
    width: 22.7045%;
    margin-left: 0;
    margin-right: 2.994%;
    float: right;
  }
  .vtp-saved-search-entry .sase-go:last-child {
    margin-right: 0;
  }
  .vtp-saved-search-entry .sase-go a {
    margin-top: 0;
  }
  .vtp-saved-search-entry .sase-meta {
    float: left;
    clear: none;
    width: 31.2706666667%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-saved-search-entry .sase-meta:last-child {
    margin-right: 0;
  }
  .vtp-saved-search-entry .sase-edit {
    float: left;
    clear: none;
    width: 31.2706666667%;
    margin-left: 0;
    margin-right: 2.994%;
  }
  .vtp-saved-search-entry .sase-edit:last-child {
    margin-right: 0;
  }
  .vtp-saved-search-entry .sase-mail {
    float: left;
    clear: none;
    width: 65.5353333333%;
    margin-left: 0;
    margin-right: 2.994%;
    float: none;
    clear: both;
    padding-top: 20px;
  }
  .vtp-saved-search-entry .sase-mail:last-child {
    margin-right: 0;
  }
  .vtp-saved-search-entry .sase-mail legend {
    text-align: left;
  }
  .vtp-saved-search-entry .sase-mail .control-group {
    margin-bottom: 1rem;
    width: auto;
  }
  .vtp-saved-search-entry .sase-mail .control-group:first-of-type {
    text-align: left;
  }
  .vtp-saved-search-entry .sase-detail-list {
    width: 90%;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-saved-search-entry .sase-go {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    float: left;
    margin-bottom: 20px;
  }
  .vtp-saved-search-entry .sase-go:first-child {
    margin-left: auto;
  }
  .vtp-saved-search-entry .sase-go:last-child {
    margin-right: auto;
  }
  .vtp-saved-search-entry .sase-go a {
    margin-top: 10px;
    float: left;
  }
  .vtp-saved-search-entry .sase-meta {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
    margin-bottom: 20px;
  }
  .vtp-saved-search-entry .sase-meta:last-child {
    margin-right: 0;
  }
  .vtp-saved-search-entry .sase-edit {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
    margin-right: 0;
    float: right;
  }
  .vtp-saved-search-entry .sase-edit:last-child {
    margin-right: 0;
  }
  .vtp-saved-search-entry .sase-mail {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    float: none;
    clear: both;
    margin-top: 20px;
    padding-top: 0;
  }
  .vtp-saved-search-entry .sase-mail:first-child {
    margin-left: auto;
  }
  .vtp-saved-search-entry .sase-mail:last-child {
    margin-right: auto;
  }
  .vtp-saved-search-entry .sase-mail legend {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .vtp-saved-search-entry .sase-mail legend:first-child {
    margin-left: auto;
  }
  .vtp-saved-search-entry .sase-mail legend:last-child {
    margin-right: auto;
  }
  .vtp-saved-search-entry .sase-mail .control-group {
    float: left;
    clear: none;
    width: 31.2706666667%;
    margin-left: 0;
    margin-right: 2.994%;
    width: auto;
  }
  .vtp-saved-search-entry .sase-mail .control-group:last-child {
    margin-right: 0;
  }
  .vtp-saved-search-entry .sase-mail .control-group label {
    padding-right: 10px;
  }
  .vtp-saved-search-entry .sase-mail .control-group label:after {
    position: relative;
  }
  .vtp-saved-search-entry .sase-detail-list {
    padding-top: 12px;
  }
  .vtp-saved-search-entry .sase-detail-list dt {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
    clear: both;
  }
  .vtp-saved-search-entry .sase-detail-list dt:last-child {
    margin-right: 0;
  }
  .vtp-saved-search-entry .sase-detail-list dd {
    float: left;
    clear: none;
    width: 48.403%;
    margin-left: 0;
    margin-right: 2.994%;
    margin-right: 0%;
    float: right;
  }
  .vtp-saved-search-entry .sase-detail-list dd:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 567px) {
  .vtp-saved-search-entry .sase-meta {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-saved-search-entry .sase-meta:first-child {
    margin-left: auto;
  }
  .vtp-saved-search-entry .sase-meta:last-child {
    margin-right: auto;
  }
  .vtp-saved-search-entry .sase-edit {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-saved-search-entry .sase-edit:first-child {
    margin-left: auto;
  }
  .vtp-saved-search-entry .sase-edit:last-child {
    margin-right: auto;
  }
}
.editable h3 a {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 2px;
  margin-left: 8px;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -1419px;
  background-repeat: no-repeat;
  width: 19px;
  height: 19px;
  overflow: hidden;
  text-indent: -200px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .editable h3 a {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.editable fieldset {
  display: none;
  position: absolute;
  top: -31px;
  left: -35px;
  background: #fff;
  width: 600px;
  border: 1px solid #d7dadb;
  padding: 18px;
  z-index: 9;
}
.editable fieldset input {
  width: 424px;
  font-size: 18px;
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #000;
  letter-spacing: 0;
  float: left;
}
.editable fieldset label {
  display: none;
}
@media only screen and (max-width: 767px) {
  .editable h3 {
    font-size: 14px;
    width: 90%;
    line-height: 20px;
  }
  .editable fieldset {
    max-width: 100%;
    left: 0;
    padding: 20px;
  }
  .editable fieldset input {
    font-size: 14px;
    width: 100%;
  }
}

.vtp-section.vtp-saved-search .check-saved-search {
  display: none;
}
.vtp-section.vtp-saved-search .info-saved-search {
  margin: 0;
}
.vtp-section.vtp-saved-search.active .check-saved-search {
  display: block;
}
.vtp-section.vtp-saved-search.active .info-saved-search {
  margin: -45px 0 0 60px;
}

.vtp-breadcrumb-additionalitem .vtp-flyout {
  display: none;
  position: absolute;
  right: 40px;
  top: 40px;
}
.vtp-breadcrumb-additionalitem .vtp-flyout .content.text {
  width: 200px;
}
.vtp-page-results .vtp-breadcrumb-additionalitem .vtp-flyout {
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .vtp-page-results .vtp-breadcrumb-additionalitem .vtp-flyout {
    position: absolute;
  }
}

@media only screen and (min-width: 767px) {
  .vtp-filter-bar .vtp-anchor-nav-inner ul .save-search-btn-container {
    display: none;
  }
}
.vtp-filter-bar .vtp-anchor-nav-inner ul .save-search-btn-container:after {
  background-image: none;
}
.vtp-filter-bar .vtp-anchor-nav-inner ul .save-search-btn-container div a {
  font-family: Verdana, sans-serif;
  font-weight: normal;
  color: white;
  text-align: right;
  display: block;
  text-decoration: underline;
  font-size: 12px;
}
.vtp-filter-bar .vtp-anchor-nav-inner ul .save-search-btn-container div a:before {
  background-image: none;
}
@media only screen and (max-width: 767px) {
  .vtp-filter-bar .vtp-anchor-nav-inner ul .save-search-btn-container .vtp-flyout {
    margin-bottom: 12px;
    margin-bottom: 1rem;
    right: auto;
    position: relative;
    top: auto;
  }
  .vtp-filter-bar .vtp-anchor-nav-inner ul .save-search-btn-container .vtp-flyout .content.text {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-top: 20px;
    width: auto;
  }
  .vtp-filter-bar .vtp-anchor-nav-inner ul .save-search-btn-container .vtp-flyout .content.text:before {
    display: none;
  }
}

#vtp-savedsearchbutton-flyout h3 {
  margin-bottom: 9px;
  margin-bottom: 0.75rem;
}

#vtp-savedsearchbutton-flyout-result {
  background-color: #e7e9ea;
  display: none;
  margin-bottom: 2em;
  padding: 2%;
}
#vtp-savedsearchbutton-flyout-result .content.text:before, #vtp-savedsearchbutton-flyout-result .content.text:after {
  display: none;
}
#vtp-savedsearchbutton-flyout-result .content.text {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  width: 100%;
}

@media print {
  .save-search-btn-container .save-search-btn {
    display: none;
  }
}
@media only screen and (min-width: 767px) {
  .vtp-filter-bar .vtp-anchor-nav-inner ul .reset-search-btn-container {
    display: none;
  }
}
.vtp-filter-bar .vtp-anchor-nav-inner ul .reset-search-btn-container:after {
  background-image: none;
}
.vtp-filter-bar .vtp-anchor-nav-inner ul .reset-search-btn-container div a {
  font-family: Verdana, sans-serif;
  font-weight: normal;
  color: white;
  text-align: right;
  display: block;
  text-decoration: underline;
  font-size: 12px;
}
.vtp-filter-bar .vtp-anchor-nav-inner ul .reset-search-btn-container div a:before {
  background-image: none;
}

@media print {
  .reset-search-btn-container .reset-search-btn {
    display: none;
  }
}
.vtp-page-detail .vtp-co2 {
  vertical-align: -2px;
  font-size: 10px;
}
.vtp-page-detail .vtp-service-bar-item.favorite.active a {
  cursor: pointer;
}
.vtp-page-detail main > .spinner {
  -webkit-animation-duration: 100ms;
  -o-animation-duration: 100ms;
  animation-duration: 100ms;
  background-color: #fff;
  position: absolute;
  top: 70px;
  z-index: 4000;
}

.lt-ie9 .vtp-compare-head .vtp-carousel > ul > li .teaser-image {
  width: 84%;
}
.lt-ie9 .vtp-compare-head .vtp-carousel > ul > li .teaser-info {
  width: 84%;
}

.vtp-page-compare.vtp-market-jp .teaser-info {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .vtp-page-compare.vtp-market-jp .vtp-tooltip {
    width: 100%;
    margin-left: -10px;
  }
  .vtp-page-compare.vtp-market-jp .vtp-tooltip p {
    word-wrap: break-word;
  }
}
.vtp-page-compare .vtp-compare-item .printRate-icon {
  display: none;
}
.vtp-page-compare .vtp-compare-item .available {
  display: block;
  position: absolute;
  bottom: 0;
}
.vtp-page-compare .vtp-compare-item .available a {
  font-family: Verdana, sans-serif;
}
@media only screen and (max-width: 767px) {
  .vtp-page-compare .vtp-compare-item .available {
    display: none;
  }
}
.vtp-page-compare .vtp-service-bar-item {
  vertical-align: middle;
}
@media only screen and (max-width: 1280px) {
  .vtp-page-compare .vtp-service-bar-item {
    vertical-align: top;
  }
}
@media only screen and (max-width: 940px) {
  .vtp-page-compare .vtp-service-bar-item {
    vertical-align: middle;
  }
}
.vtp-page-compare .vtp-headline--bar {
  margin-top: 0;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .vtp-page-compare .vtp-headline--bar {
    margin-top: 15px;
  }
}
.vtp-page-compare .toggle-all {
  text-align: right;
  margin-bottom: 10px;
}
.vtp-page-compare .toggle-all .vtp-link, .vtp-page-compare .toggle-all .vtp-breadcrumb-item {
  position: relative;
  display: inline-block;
  padding: 5px 40px 5px 10px;
  font-size: 12px;
  line-height: 1.6;
  font-family: Verdana, sans-serif;
  font-weight: 700;
  vertical-align: middle;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}
.vtp-page-compare .toggle-all .vtp-link .hide-all, .vtp-page-compare .toggle-all .vtp-breadcrumb-item .hide-all {
  display: none;
}
.vtp-page-compare .toggle-all .vtp-link .toggle-icon, .vtp-page-compare .toggle-all .vtp-breadcrumb-item .toggle-icon {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: #e7e9ea;
}
.vtp-page-compare .toggle-all .vtp-link .toggle-icon:after, .vtp-page-compare .toggle-all .vtp-breadcrumb-item .toggle-icon:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 8px;
  top: 8px;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -790px;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-page-compare .toggle-all .vtp-link .toggle-icon:after, .vtp-page-compare .toggle-all .vtp-breadcrumb-item .toggle-icon:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-page-compare .toggle-all .vtp-link.active .toggle-icon:after, .vtp-page-compare .toggle-all .active.vtp-breadcrumb-item .toggle-icon:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -718px;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-page-compare .toggle-all .vtp-link.active .toggle-icon:after, .vtp-page-compare .toggle-all .active.vtp-breadcrumb-item .toggle-icon:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-page-compare .toggle-all .vtp-link.active .hide-all, .vtp-page-compare .toggle-all .active.vtp-breadcrumb-item .hide-all {
  display: block;
}
.vtp-page-compare .toggle-all .vtp-link.active .show-all, .vtp-page-compare .toggle-all .active.vtp-breadcrumb-item .show-all {
  display: none;
}
@media only screen and (max-width: 567px) {
  .vtp-page-compare .toggle-all {
    width: 108%;
    padding: 10px;
    margin-bottom: 2px;
    background-color: #e7e9ea;
    text-align: left;
    margin-left: -4%;
    margin-right: -4%;
  }
  .vtp-page-compare .toggle-all .vtp-link, .vtp-page-compare .toggle-all .vtp-breadcrumb-item {
    width: 100%;
    padding: 5px 0;
  }
  .vtp-page-compare .toggle-all .vtp-link .toggle-icon:after, .vtp-page-compare .toggle-all .vtp-breadcrumb-item .toggle-icon:after {
    right: 0;
  }
}
.vtp-page-compare .vtp-fixedsticky-teaser {
  background-color: #fff;
  top: 0;
  z-index: 2150;
}

.vtp-compare-head-bar {
  margin-top: 35px;
  margin-bottom: 30px;
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .vtp-compare-head-bar {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.vtp-compare-head-bar .container:after {
  border-bottom: 1px solid #d7dadb;
  content: "";
  width: 100%;
}
@media only screen and (max-width: 800px) {
  .vtp-compare-head-bar .container:after {
    border-bottom: none;
  }
}
.vtp-compare-head-bar .vtp-title {
  width: 100%;
  margin-bottom: 10px !important;
}
.vtp-compare-head-bar .vtp-subtitle {
  width: 100%;
  margin-bottom: 15px !important;
  font-family: Verdana, sans-serif;
}
@media only screen and (max-width: 567px) {
  .vtp-compare-head-bar {
    margin-bottom: 10px;
    margin-top: 30px;
  }
  .vtp-compare-head-bar .vtp-subtitle {
    margin-top: 0;
    font-size: 12px;
  }
}

.vtp-compare-head {
  padding-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .vtp-compare-head {
    padding: 0;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-compare-head .favorites-link {
    position: absolute;
  }
}
.vtp-compare-head.fixedsticky-on, .vtp-compare-head.sticky-active {
  max-width: 100%;
  width: 100%;
}
.vtp-compare-head.fixedsticky-on .teaser-info, .vtp-compare-head.sticky-active .teaser-info {
  position: relative;
}
.vtp-compare-head.fixedsticky-on .teaser-info:before, .vtp-compare-head.sticky-active .teaser-info:before {
  position: absolute;
  left: -13%;
  top: -12px;
  width: 20px;
  content: "";
  background-color: #FFF;
  height: 16px;
  display: block;
}
@media only screen and (max-width: 1023px) {
  .vtp-compare-head.fixedsticky-on .teaser-info:before, .vtp-compare-head.sticky-active .teaser-info:before {
    /*left: -7%;*/
  }
}
@media only screen and (max-width: 767px) {
  .vtp-compare-head.fixedsticky-on .teaser-info:before, .vtp-compare-head.sticky-active .teaser-info:before {
    display: none;
  }
}
.vtp-compare-head.fixedsticky-on .container, .vtp-compare-head.sticky-active .container {
  *zoom: 1;
  width: auto;
  max-width: 1280px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  padding-left: 2%;
  padding-right: 2%;
}
.vtp-compare-head.fixedsticky-on .container:before, .vtp-compare-head.fixedsticky-on .container:after, .vtp-compare-head.sticky-active .container:before, .vtp-compare-head.sticky-active .container:after {
  content: "";
  display: table;
}
.vtp-compare-head.fixedsticky-on .container:after, .vtp-compare-head.sticky-active .container:after {
  clear: both;
}
@media only screen and (max-width: 1280px) {
  .vtp-compare-head.fixedsticky-on .container, .vtp-compare-head.sticky-active .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.vtp-compare-head.fixedsticky-on .vtp-compare-item, .vtp-compare-head.sticky-active .vtp-compare-item {
  border-left: 1px solid #e7e9ea;
}
.vtp-compare-head.fixedsticky-on .vtp-compare-item:first-of-type .teaser-info:before, .vtp-compare-head.sticky-active .vtp-compare-item:first-of-type .teaser-info:before {
  display: none;
}
@media only screen and (max-width: 767px) {
  .vtp-compare-head .vtp-compare-item {
    border-right: 2px solid #fff;
  }
  .vtp-compare-head .vtp-compare-item:last-of-type {
    border-right: none;
  }
}
.vtp-compare-head .vtp-carousel .btn-next,
.vtp-compare-head .vtp-carousel .btn-prev {
  position: absolute;
}
@media only screen and (max-width: 567px) {
  .vtp-compare-cars-2 .vtp-compare-head .vtp-carousel .btn-next,
  .vtp-compare-cars-2 .vtp-compare-head .vtp-carousel .btn-prev {
    display: none;
  }
}
.vtp-compare-head .vtp-carousel .btn-next:after,
.vtp-compare-head .vtp-carousel .btn-prev:after {
  top: 2px;
  background-image: url(../images/sprite-common.png);
  background-position: 0px -4285px;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  background-color: #000;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-compare-head .vtp-carousel .btn-next:after,
  .vtp-compare-head .vtp-carousel .btn-prev:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-compare-head .vtp-carousel .btn-prev {
  left: -5px;
}
.vtp-compare-head .vtp-carousel .btn-next {
  right: -5px;
}
.vtp-compare-head .vtp-carousel > ul {
  *zoom: 1;
  width: 100%;
  z-index: 1;
  border-bottom: 8px solid #fff;
}
.vtp-compare-head .vtp-carousel > ul:before, .vtp-compare-head .vtp-carousel > ul:after {
  content: "";
  display: table;
}
.vtp-compare-head .vtp-carousel > ul:after {
  clear: both;
}
.vtp-compare-head .vtp-carousel > ul:before {
  display: table-cell;
}
@media only screen and (max-width: 1023px) {
  .vtp-compare-head .vtp-carousel > ul:before {
    display: none;
  }
}
.vtp-compare-head .vtp-carousel > ul > li {
  float: left;
  clear: none;
  width: 24.95%;
  margin-left: 0;
  margin-right: 0;
  padding-right: 2%;
  padding-left: 2%;
  border-left: 1px solid #FFF;
  display: table-cell;
  vertical-align: top;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.vtp-compare-head .vtp-carousel > ul > li:first-child {
  border-left: 1px solid #FFF;
  margin-left: 24.95%;
}
@media only screen and (max-width: 1023px) {
  .vtp-compare-head .vtp-carousel > ul > li {
    float: left;
    clear: none;
    width: 33.2666666667%;
    margin-left: 0;
    margin-right: 0;
    float: none;
  }
  .vtp-compare-cars-2 .vtp-compare-head .vtp-carousel > ul > li {
    float: left;
    clear: none;
    width: 49.9%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-compare-cars-2 .vtp-compare-head .vtp-carousel > ul > li .teaser-info:before {
    left: -3%;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-compare-head .vtp-carousel > ul > li {
    padding: 0;
  }
  .vtp-compare-head .vtp-carousel > ul > li .teaser-image {
    padding: 0 10px;
  }
  .vtp-compare-head .vtp-carousel > ul > li .teaser-image > a:first-child {
    display: block;
    width: 80px;
  }
  .vtp-compare-head .vtp-carousel > ul > li .image-container {
    margin-bottom: 0;
  }
  .vtp-compare-head .vtp-carousel > ul > li .teaser-info {
    padding: 10px 10px 15px;
  }
  .vtp-compare-head .vtp-carousel > ul > li .price {
    font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  }
  .vtp-compare-head .vtp-carousel > ul > li .rate {
    font-family: "AudiTypeExtNormal", Verdana, sans-serif;
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-compare-head .vtp-carousel {
    padding-left: 0;
    padding-right: 0;
    background-color: #e7e9ea;
  }
}
.vtp-compare-head .car-teaser, .vtp-compare-head .similar-car-item {
  margin-bottom: 0;
  padding-bottom: 0;
}
.vtp-compare-head .car-teaser .title-link .icon, .vtp-compare-head .similar-car-item .title-link .icon {
  /*position: absolute; Breaks icon position on two-line-headers
  bottom: 5px;
  right: 0px;*/
}
@media only screen and (max-width: 767px) {
  .vtp-compare-head .car-teaser .title-link .icon, .vtp-compare-head .similar-car-item .title-link .icon {
    /*bottom: 7px;*/
    background-image: url(../images/sprite-common.png);
    background-position: 0px -316px;
    background-repeat: no-repeat;
    width: 8px;
    height: 8px;
  }
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 767px) and (min-resolution: 144dpi), only screen and (max-width: 767px) and (min-resolution: 1.5dppx) {
  .vtp-compare-head .car-teaser .title-link .icon, .vtp-compare-head .similar-car-item .title-link .icon {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-compare-head .car-teaser .price, .vtp-compare-head .similar-car-item .price {
  display: inline-block;
}
@media only screen and (max-width: 567px) {
  .vtp-compare-head .car-teaser .bookmark-link, .vtp-compare-head .similar-car-item .bookmark-link {
    position: absolute;
  }
}

.compare-pagination {
  height: 40px;
  background-color: #fff;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  display: none;
  /*.swiper-active-switch {
    color: #000;
    .compare-animate-out &{
      color: #999;
    }
  }*/
}
.compare-pagination .swiper-pagination-switch {
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  cursor: default;
  opacity: 1;
  border-radius: 0;
  width: auto;
  height: 16px;
  font-size: 14px;
  line-height: 16px;
  color: #999;
  padding: 0 5px;
  margin: 12px 0;
  border-right: 1px solid #000;
  /*.compare-active-1 & {
    &:nth-child(2) {
      color: #000;
    }
  }

  .compare-active-2 & {
    &:nth-child(3) {
      color: #000;
      .compare-animate-out &{
        color: #999;
      }
    }
  }

  .compare-active-3 & {
    &:nth-child(1) {
      color: #000;
      .compare-animate-out &{
        color: #999;
      }
    }
  }*/
}
.compare-pagination .swiper-pagination-switch:nth-of-type(1):before {
  content: "1";
  display: block;
}
.compare-pagination .swiper-pagination-switch:nth-of-type(2):before {
  content: "2";
  display: block;
}
.compare-pagination .swiper-pagination-switch:nth-of-type(3):before {
  content: "3";
  display: block;
}
.compare-pagination .swiper-pagination-switch:last-child {
  border-right: none;
}
.compare-pagination .swiper-visible-switch {
  color: #000;
}
@media only screen and (max-width: 567px) {
  .vtp-compare-cars-3 .compare-pagination {
    display: block;
  }
}

.compare-animate-out.compare-active-1 .swiper-pagination-bullet:nth-child(2), .compare-animate-out.compare-active-2 .swiper-pagination-bullet:nth-child(3), .compare-animate-out.compare-active-3 .swiper-pagination-bullet:nth-child(1) {
  color: #999;
}

.vtp-page-favorites img.vtp-icon {
  display: none;
}
.vtp-page-favorites .favorites-link .vtp-icon {
  display: none;
}
.vtp-page-favorites .vtp-singular {
  display: none;
}
.vtp-page-favorites .vtp-favorites {
  padding-bottom: 0;
  padding-top: 78px;
  padding-top: 6.5rem;
}
@media only screen and (max-width: 767px) {
  .vtp-page-favorites .vtp-favorites {
    padding-top: 0;
  }
}
.vtp-page-favorites .favorites-user-info {
  font-family: Verdana, sans-serif !important;
  margin-top: -1px;
  margin-bottom: 14.4px;
  margin-bottom: 1.2rem;
  padding: 14.4px;
  padding: 1.2rem;
}
.vtp-page-favorites .favorites-user-info.collapse-toggle {
  border-top: none;
  border-bottom: none;
}
.vtp-page-favorites .favorites-user-info:after {
  display: none !important;
}
.vtp-page-favorites .favorites-user-info h4 {
  font-family: Verdana, sans-serif !important;
  font-size: 12px;
  display: inline;
  position: relative;
}
.vtp-page-favorites .favorites-user-info h4 span:after {
  content: "";
  background-image: url(../images/sprite-common.png);
  background-position: 0px -154px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  top: 50%;
  position: absolute;
  right: -15px;
  right: -1.25rem;
  margin-top: -4px;
  display: block;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-page-favorites .favorites-user-info h4 span:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-page-favorites .favorites-user-info.active h4 span:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -370px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-page-favorites .favorites-user-info.active h4 span:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-page-favorites .favorites-user-info .collapse {
  background: #e7e9ea;
  margin-top: 12px;
  margin-top: 1rem;
}
@media only screen and (max-width: 768px) {
  .vtp-page-favorites .car-teaser footer .car-teaser-options .vtp-link, .vtp-page-favorites .similar-car-item footer .car-teaser-options .vtp-link, .vtp-page-favorites .car-teaser footer .car-teaser-options .vtp-breadcrumb-item, .vtp-page-favorites .similar-car-item footer .car-teaser-options .vtp-breadcrumb-item {
    display: block;
    width: 100%;
    float: none;
    margin-left: 0;
  }
}
.vtp-page-favorites .car-teaser .vtp-icon, .vtp-page-favorites .similar-car-item .vtp-icon {
  margin-bottom: 0;
}
.vtp-page-favorites .car-teaser .car-teaser-options, .vtp-page-favorites .similar-car-item .car-teaser-options {
  border-top: none;
}
@media only screen and (max-width: 568px) {
  .vtp-page-favorites .car-teaser .car-teaser-options, .vtp-page-favorites .similar-car-item .car-teaser-options {
    border-top: 1px solid #cdd0d2;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-page-favorites .vtp-favorites-toolbar {
    border-top: none;
    border-bottom: none;
    margin-bottom: 36px;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-page-favorites .vtp-favorites-toolbar {
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
  }
}

@media only screen and (max-width: 768px) {
  .vtp-no-favorites {
    padding-top: 24px;
    padding-top: 2rem;
  }
}
/* VTP-23693 Redesign Neuwagenformulare VTP 3.0 */
.vtp-standalone-inquiry.vtp-iform-page .vtp-form-info-bold {
  font-family: "AudiTypeScreenBold", Verdana, sans-serif;
  font-weight: 700;
}
.vtp-standalone-inquiry.vtp-iform-page h1 {
  margin: 0;
  font-size: 21px;
  line-height: 30px;
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset {
  margin-top: 42px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset legend.h3, .vtp-standalone-inquiry.vtp-iform-page fieldset legend.lead, .vtp-standalone-inquiry.vtp-iform-page fieldset .vtp-range-slider legend.slider-label, .vtp-range-slider .vtp-standalone-inquiry.vtp-iform-page fieldset legend.slider-label, .vtp-standalone-inquiry.vtp-iform-page fieldset .vtp-dealer-info-box legend.name, .vtp-dealer-info-box .vtp-standalone-inquiry.vtp-iform-page fieldset legend.name {
  margin: 0 0 30px 0;
  font-size: 21px;
  line-height: 30px;
  font-family: "AudiTypeScreenNormal", Verdana, sans-serif;
  padding: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset.legacy legend.h3:last-of-type, .vtp-standalone-inquiry.vtp-iform-page fieldset.legacy legend.lead:last-of-type, .vtp-standalone-inquiry.vtp-iform-page fieldset.legacy .vtp-range-slider legend.slider-label:last-of-type, .vtp-range-slider .vtp-standalone-inquiry.vtp-iform-page fieldset.legacy legend.slider-label:last-of-type, .vtp-standalone-inquiry.vtp-iform-page fieldset.legacy .vtp-dealer-info-box legend.name:last-of-type, .vtp-dealer-info-box .vtp-standalone-inquiry.vtp-iform-page fieldset.legacy legend.name:last-of-type {
  margin-bottom: 24px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .vtp-form-info {
  font-size: 16px;
  line-height: 24px;
  font-family: "AudiTypeScreenNormal", Verdana, sans-serif;
  margin: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .vtp-form-info .vtp-standalone-inquiry.vtp-iform-page fieldset p.vtp-form-info {
  font-size: 16px;
  line-height: 24px;
  font-family: "AudiTypeScreenNormal", Verdana, sans-serif;
  margin: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .vtp-form-info p {
  font-size: 16px;
  line-height: 24px;
  font-family: "AudiTypeScreenNormal", Verdana, sans-serif;
  margin: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .vtp-form-info strong {
  font-family: "AudiTypeScreenBold", Verdana, sans-serif;
  font-weight: 700;
  color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset p.vtp-form-info a {
  font-size: 16px;
  line-height: 24px;
  font-family: "AudiTypeScreenNormal", Verdana, sans-serif;
  margin: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group {
  margin: 0;
  padding: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group.fieldset .controls {
  margin-bottom: 30px;
  margin-top: 6px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls {
  margin-bottom: 36px;
  position: relative;
  width: 100%;
  float: left;
  clear: none;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls.radio-button-controls .label.error:hover p {
  color: #bb0a30;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls.radio-button-controls .label.error p {
  color: #bb0a30;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls.radio-button-controls .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-flex;
  position: static;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls.radio-button-controls .label p {
  font-size: 16px;
  line-height: 24px;
  font-family: "AudiTypeScreenNormal", Verdana, sans-serif;
  margin: 0;
  color: #333;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls.radio-button-controls .label:hover p {
  color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls.radio-button-controls input:checked + .label p {
  color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .custom-select:after {
  content: none;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .custom-select select {
  border-top: none;
  border-left: none;
  border-right: none;
  border-color: #333;
  border-width: 1px;
  padding: 6px 0;
  cursor: pointer;
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .custom-select select.error {
  border-color: #bb0a30;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls input[type=text] {
  border-top: none;
  border-left: none;
  border-right: none;
  border-color: #333;
  border-width: 1px;
  padding: 6px 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls input[type=text]:focus {
  border-width: 2px;
  border-color: #000;
  color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls input[type=text].error {
  border-color: #bb0a30;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls input.error[type=text]:focus {
  color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .vtp-btn.invert.dealersearch {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .vtp-btn.invert.dealersearch:hover {
  background: #b3b3b3;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .vtp-btn.invert.dealersearch:focus-visible {
  outline: 2px solid #000;
  outline-offset: 1px;
  border: 1px solid #fff;
  border-radius: 2px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .vtp-btn.invert.dealersearch:after {
  content: none;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary + label.error:before {
  border: 1px solid #bb0a30;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary + label.error:after {
  background-color: #bb0a30;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary + .label.error:before {
  border: 1px solid #bb0a30;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary + .label.error:after {
  background-color: #bb0a30;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary + label {
  margin: 0;
  padding: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary + label:before {
  content: "";
  background-color: #fff;
  border-radius: 100%;
  cursor: pointer;
  display: inline-block;
  height: 24px;
  position: relative;
  width: 24px;
  -webkit-appearance: none;
  border: 1px solid #333;
  margin: 0 18px 0 0;
  z-index: 10;
  vertical-align: inherit;
  background-image: none;
  float: left;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-border-smoothing: antialiased;
  -moz-osx-border-smoothing: grayscale;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary + label:after {
  border-radius: 8px;
  content: "";
  display: block;
  height: 8px;
  left: 8px;
  position: absolute;
  top: 8px;
  width: 8px;
  background-color: #E5E5E5;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  background-image: none;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary + .label {
  margin: 0;
  padding: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary + .label:before {
  content: "";
  background-color: #fff;
  border-radius: 100%;
  cursor: pointer;
  display: inline-block;
  height: 24px;
  position: relative;
  width: 24px;
  -webkit-appearance: none;
  border: 1px solid #333;
  margin: 0 18px 0 0;
  z-index: 10;
  vertical-align: inherit;
  background-image: none;
  float: left;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-border-smoothing: antialiased;
  -moz-osx-border-smoothing: grayscale;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary + .label:after {
  border-radius: 8px;
  content: "";
  display: block;
  height: 8px;
  left: 8px;
  position: absolute;
  top: 8px;
  width: 8px;
  background-color: #E5E5E5;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  background-image: none;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary:checked + label:before {
  content: "";
  background-color: #fff;
  border-radius: 100%;
  cursor: pointer;
  display: inline-block;
  height: 24px;
  position: relative;
  width: 24px;
  -webkit-appearance: none;
  border: 1px solid #333;
  margin: 0 18px 0 0;
  z-index: 10;
  vertical-align: inherit;
  background-image: none;
  float: left;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-border-smoothing: antialiased;
  -moz-osx-border-smoothing: grayscale;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary:checked + label:after {
  background-color: #000;
  height: 12px;
  width: 12px;
  top: 6px;
  left: 6px;
  background-image: none;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary:checked + .label:before {
  content: "";
  background-color: #fff;
  border-radius: 100%;
  cursor: pointer;
  display: inline-block;
  height: 24px;
  position: relative;
  width: 24px;
  -webkit-appearance: none;
  border: 1px solid #333;
  margin: 0 18px 0 0;
  z-index: 10;
  vertical-align: inherit;
  background-image: none;
  float: left;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-border-smoothing: antialiased;
  -moz-osx-border-smoothing: grayscale;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary:checked + .label:after {
  background-color: #000;
  height: 12px;
  width: 12px;
  top: 6px;
  left: 6px;
  background-image: none;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary:checked + label.error:before {
  content: "";
  background-color: #fff;
  border-radius: 100%;
  cursor: pointer;
  display: inline-block;
  height: 24px;
  position: relative;
  width: 24px;
  -webkit-appearance: none;
  border: 1px solid #333;
  margin: 0 18px 0 0;
  z-index: 10;
  vertical-align: inherit;
  background-image: none;
  float: left;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-border-smoothing: antialiased;
  -moz-osx-border-smoothing: grayscale;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary:checked + .label.error:before {
  content: "";
  background-color: #fff;
  border-radius: 100%;
  cursor: pointer;
  display: inline-block;
  height: 24px;
  position: relative;
  width: 24px;
  -webkit-appearance: none;
  border: 1px solid #333;
  margin: 0 18px 0 0;
  z-index: 10;
  vertical-align: inherit;
  background-image: none;
  float: left;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-border-smoothing: antialiased;
  -moz-osx-border-smoothing: grayscale;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary:hover + label:not(.error):before {
  border-color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary:hover + label:after {
  height: 12px;
  width: 12px;
  top: 6px;
  left: 6px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary:hover + .label:not(.error):before {
  border-color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary:hover + .label:after {
  height: 12px;
  width: 12px;
  top: 6px;
  left: 6px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary:focus-visible + label:not(.error):before {
  border: 2px solid #333;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary:focus-visible + label:after {
  height: 12px;
  width: 12px;
  top: 6px;
  left: 6px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary:focus-visible + .label:not(.error):before {
  border: 2px solid #333;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .radio-primary:focus-visible + .label:after {
  height: 12px;
  width: 12px;
  top: 6px;
  left: 6px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary + label.error:before {
  border: 1px solid #bb0a30;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary + label.error:after {
  background-color: #bb0a30;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary + .label.error:before {
  border: 1px solid #bb0a30;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary + .label.error:after {
  background: none;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary + label {
  margin: 0;
  padding: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary + label:before {
  content: "";
  background-color: #fff;
  cursor: pointer;
  display: inline-block;
  height: 24px;
  position: relative;
  width: 24px;
  -webkit-appearance: none;
  border: 1px solid #333;
  margin: 0 18px 0 0;
  z-index: 10;
  vertical-align: inherit;
  background-image: none;
  float: left;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-border-smoothing: antialiased;
  -moz-osx-border-smoothing: grayscale;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary + label:after {
  content: "";
  display: block;
  height: 8px;
  left: 8px;
  position: absolute;
  top: 8px;
  width: 8px;
  background-color: #E5E5E5;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  background-image: none;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary + .label {
  margin: 0;
  padding: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary + .label:before {
  content: "";
  background-color: #fff;
  cursor: pointer;
  display: inline-block;
  height: 24px;
  position: relative;
  width: 24px;
  -webkit-appearance: none;
  border: 1px solid #333;
  margin: 0 18px 0 0;
  z-index: 10;
  vertical-align: inherit;
  background-image: none;
  float: left;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-border-smoothing: antialiased;
  -moz-osx-border-smoothing: grayscale;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary + .label:after {
  content: "";
  display: block;
  height: 8px;
  left: 8px;
  position: absolute;
  top: 8px;
  width: 8px;
  background-color: #fff;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  background: none;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary:checked + label:before {
  content: "";
  background-color: #fff;
  cursor: pointer;
  display: inline-block;
  height: 24px;
  position: relative;
  width: 24px;
  -webkit-appearance: none;
  border: 1px solid #333;
  margin: 0 18px 0 0;
  z-index: 10;
  vertical-align: inherit;
  background-image: none;
  float: left;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-border-smoothing: antialiased;
  -moz-osx-border-smoothing: grayscale;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary:checked + label:after {
  background-color: #000;
  height: 12px;
  width: 12px;
  top: 6px;
  left: 6px;
  background-image: none;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary:checked + .label:before {
  content: "";
  background-color: #fff;
  cursor: pointer;
  display: inline-block;
  height: 24px;
  position: relative;
  width: 24px;
  -webkit-appearance: none;
  border: 1px solid #333;
  margin: 0 18px 0 0;
  z-index: 10;
  vertical-align: inherit;
  background-image: none;
  float: left;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-border-smoothing: antialiased;
  -moz-osx-border-smoothing: grayscale;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary:checked + .label:after {
  background-color: #000;
  height: 12px;
  width: 12px;
  top: 6px;
  left: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpolygon fill='%23333333' points='4.945 12 0 7.699 0.667 6.92 4.708 10.435 11.132 0 12 0.543 4.945 12' /%3E%3C/svg%3E") center center no-repeat;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary:checked + label.error:before {
  content: "";
  background-color: #fff;
  cursor: pointer;
  display: inline-block;
  height: 24px;
  position: relative;
  width: 24px;
  -webkit-appearance: none;
  border: 1px solid #333;
  margin: 0 18px 0 0;
  z-index: 10;
  vertical-align: inherit;
  background-image: none;
  float: left;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-border-smoothing: antialiased;
  -moz-osx-border-smoothing: grayscale;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary:checked + .label.error:before {
  content: "";
  background-color: #fff;
  cursor: pointer;
  display: inline-block;
  height: 24px;
  position: relative;
  width: 24px;
  -webkit-appearance: none;
  border: 1px solid #333;
  margin: 0 18px 0 0;
  z-index: 10;
  vertical-align: inherit;
  background-image: none;
  float: left;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-border-smoothing: antialiased;
  -moz-osx-border-smoothing: grayscale;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary:hover + label:not(.error):before {
  border-color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary:hover + label:after {
  height: 12px;
  width: 12px;
  top: 6px;
  left: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpolygon fill='%23333333' points='4.945 12 0 7.699 0.667 6.92 4.708 10.435 11.132 0 12 0.543 4.945 12' /%3E%3C/svg%3E") center center no-repeat;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary:hover + .label:not(.error):before {
  border-color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls .checkbox-primary:hover + .label:after {
  height: 12px;
  width: 12px;
  top: 6px;
  left: 6px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls textarea {
  height: 100%;
  width: 100%;
  padding: 12px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls input[type=radio] {
  position: absolute;
  display: block;
  margin: 0;
  opacity: 0;
  width: 25px;
  height: 25px;
  cursor: pointer;
  z-index: 12;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls #financeoptions p.vtp-iform-page:after,
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls #aozoptions p.vtp-iform-page:after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  background-color: red;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls.controls-seperated {
  margin: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls.controls-seperator {
  padding: 24px 0;
  margin: 0;
  width: 100%;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group > .controls:first-of-type {
  margin-right: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group input[type=text] {
  font-size: 16px;
  line-height: 24px;
  font-family: "AudiTypeScreenNormal", Verdana, sans-serif;
  margin: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group input {
  height: auto;
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group input:focus {
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group > .controls.radio-button-controls > label {
  position: relative;
  margin: 0 30px 0 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group label.placeholder-label {
  position: absolute;
  padding: 0;
  margin: 0;
  top: 6px;
  left: 0;
  width: auto;
  color: #4c4c4c;
  cursor: text;
  -webkit-transition-property: font-size, top, color;
  -o-transition-property: font-size, top, color;
  transition-property: font-size, top, color;
  -webkit-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  transition-duration: 0.25s;
  font-weight: normal;
  pointer-events: none;
  color: #333;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group label.placeholder-label.selection-label {
  background: #fff;
  width: 100%;
  z-index: 3;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls._focus .placeholder-label {
  top: -18px;
  -webkit-transition-property: top, font-size, color;
  -o-transition-property: top, font-size, color;
  transition-property: top, font-size, color;
  -webkit-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  font-size: 13px;
  line-height: 18px;
  background: none;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls._focus input[type=text]:focus {
  border-width: 2px;
  border-color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls._focus input[type=text]:focus-within {
  border-width: 2px;
  border-color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls._focus input[type=text].error:focus {
  border-color: #bb0a30;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls._focus input[type=text].error:focus-within {
  border-color: #bb0a30;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls._withValue label.placeholder-label {
  top: -18px;
  -webkit-transition-property: top, font-size, color;
  -o-transition-property: top, font-size, color;
  transition-property: top, font-size, color;
  -webkit-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  font-size: 13px;
  line-height: 18px;
  background: none;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls._withValue input[type=text] {
  color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls._withValue input[type=text]:focus {
  border-width: 2px;
  border-color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls._withValue input[type=text]:focus-within {
  border-width: 2px;
  border-color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls._withValue input.error[type=text]:focus {
  color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group label.placeholder-label.error {
  color: #bb0a30;
  border-color: #bb0a30;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group span.error {
  color: #bb0a30;
  font-size: 13px;
  line-height: 18px;
  padding-top: 12px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group > #dSearchResult.controls {
  width: 100%;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group > #dSearchResult.controls label {
  border-top: 1px solid #333;
  padding: 30px 0 30px 18px;
  margin: 0;
  width: 100%;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group #dSearchResult.controls .label p {
  font-family: "AudiTypeScreenNormal", Verdana, sans-serif;
  font-size: 16px;
  line-height: 24px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group #dSearchResult.controls .label .vtp-result-title {
  font-family: "AudiTypeScreenBold", Verdana, sans-serif;
  margin-bottom: 6px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls.textarea {
  width: 70%;
  margin: 0 !important;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls.textarea textarea {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #4c4c4c;
  border-color: #b3b3b3;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls.textarea textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #4c4c4c;
  border-bottom-width: 2px;
  border-color: #000;
  color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls.textarea p {
  font-family: "AudiTypeScreenNormal", Verdana, sans-serif;
  font-size: 13px;
  line-height: 18px;
  color: #4c4c4c;
  padding-top: 12px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group:last-of-type #dSearchResult.controls {
  margin: 0 0 3px 3px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset label.placeholder-label {
  font-size: 16px;
  line-height: 24px;
  font-family: "AudiTypeScreenNormal", Verdana, sans-serif;
  margin: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset textarea {
  font-size: 16px;
  line-height: 24px;
  font-family: "AudiTypeScreenNormal", Verdana, sans-serif;
  margin: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .custom-select select {
  font-size: 16px;
  line-height: 24px;
  font-family: "AudiTypeScreenNormal", Verdana, sans-serif;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  background: #fff;
  color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .custom-select select > option {
  font-size: 16px;
  line-height: 24px;
  font-family: "AudiTypeScreenNormal", Verdana, sans-serif;
  margin: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .custom-select select option:hover {
  color: #fff;
  background: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset > .control-group:not(.controls-unite) .vtp-standalone-inquiry.vtp-iform-page fieldset > .control-group:last-of-type .controls {
  margin: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset p.vtp-form-info-bold.vtp-form-info {
  font-family: "AudiTypeScreenBold", Verdana, sans-serif;
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset p.vtp-form-info-bold {
  font-family: "AudiTypeScreenBold", Verdana, sans-serif;
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset:after {
  content: none;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset .control-group.fieldset > .controls {
  width: 100%;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset.vtp-form-resultlist {
  margin: 36px 0 42px 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset.vtp-form-resultlist legend.h3, .vtp-standalone-inquiry.vtp-iform-page fieldset.vtp-form-resultlist legend.lead, .vtp-standalone-inquiry.vtp-iform-page fieldset.vtp-form-resultlist .vtp-range-slider legend.slider-label, .vtp-range-slider .vtp-standalone-inquiry.vtp-iform-page fieldset.vtp-form-resultlist legend.slider-label, .vtp-standalone-inquiry.vtp-iform-page fieldset.vtp-form-resultlist .vtp-dealer-info-box legend.name, .vtp-dealer-info-box .vtp-standalone-inquiry.vtp-iform-page fieldset.vtp-form-resultlist legend.name {
  margin: 0 0 30px 0;
  font-size: 21px;
  line-height: 30px;
  font-family: "AudiTypeScreenNormal", Verdana, sans-serif;
  padding: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset.vtp-form-resultlist .label p {
  padding-left: 42px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset.vtp-form-resultlist .control-group {
  border: none;
  height: auto;
  overflow: hidden;
  padding: 0;
  width: auto;
  margin-bottom: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset.fromFinance legend.h3, .vtp-standalone-inquiry.vtp-iform-page fieldset.fromFinance legend.lead, .vtp-standalone-inquiry.vtp-iform-page fieldset.fromFinance .vtp-range-slider legend.slider-label, .vtp-range-slider .vtp-standalone-inquiry.vtp-iform-page fieldset.fromFinance legend.slider-label, .vtp-standalone-inquiry.vtp-iform-page fieldset.fromFinance .vtp-dealer-info-box legend.name, .vtp-dealer-info-box .vtp-standalone-inquiry.vtp-iform-page fieldset.fromFinance legend.name,
.vtp-standalone-inquiry.vtp-iform-page fieldset.aoz legend.h3,
.vtp-standalone-inquiry.vtp-iform-page fieldset.aoz legend.lead,
.vtp-standalone-inquiry.vtp-iform-page fieldset.aoz .vtp-range-slider legend.slider-label,
.vtp-range-slider .vtp-standalone-inquiry.vtp-iform-page fieldset.aoz legend.slider-label,
.vtp-standalone-inquiry.vtp-iform-page fieldset.aoz .vtp-dealer-info-box legend.name,
.vtp-dealer-info-box .vtp-standalone-inquiry.vtp-iform-page fieldset.aoz legend.name {
  margin-bottom: 18px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset.fromFinance .vtp-form-info,
.vtp-standalone-inquiry.vtp-iform-page fieldset.aoz .vtp-form-info {
  position: relative;
  padding-top: 12px;
  font-size: 13px;
  line-height: 18px;
  float: left;
  width: 100%;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset.fromFinance .vtp-form-info .aoz-content,
.vtp-standalone-inquiry.vtp-iform-page fieldset.aoz .vtp-form-info .aoz-content {
  display: table;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset.fromFinance .vtp-form-info .price,
.vtp-standalone-inquiry.vtp-iform-page fieldset.aoz .vtp-form-info .price {
  color: #333;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset.fromFinance .vtp-form-info:first-child,
.vtp-standalone-inquiry.vtp-iform-page fieldset.aoz .vtp-form-info:first-child {
  padding-top: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset.fromFinance .vtp-form-info:before,
.vtp-standalone-inquiry.vtp-iform-page fieldset.aoz .vtp-form-info:before {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2604px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  content: "";
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  left: auto;
  z-index: 2;
  pointer-events: none;
  display: block;
  float: left;
  margin-right: 6px;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  margin-top: -2px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-standalone-inquiry.vtp-iform-page fieldset.fromFinance .vtp-form-info:before,
  .vtp-standalone-inquiry.vtp-iform-page fieldset.aoz .vtp-form-info:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-standalone-inquiry.vtp-iform-page fieldset.fromFinance button,
.vtp-standalone-inquiry.vtp-iform-page fieldset.aoz button {
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 18px;
  padding: 0;
  display: inline-block;
  float: left;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset.fromFinance .control-group .controls,
.vtp-standalone-inquiry.vtp-iform-page fieldset.aoz .control-group .controls {
  width: 100%;
  margin-right: 0;
  margin-bottom: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset.legacy p.vtp-form-info {
  margin-bottom: 42px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset.legacy p.vtp-form-info:last-of-type {
  margin-bottom: 0;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset.dealer-search .control-group:first-of-type .controls {
  margin-top: 36px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset.dealer-search .control-group:last-of-type .controls {
  margin-bottom: 0px;
}
.vtp-standalone-inquiry.vtp-iform-page fieldset.dealer-search .control-group .controls button {
  margin-top: 6px;
  margin-bottom: 0;
}
.vtp-standalone-inquiry.vtp-iform-page .fieldset:after {
  content: none;
}
.vtp-standalone-inquiry.vtp-iform-page .vtp-btn, .vtp-standalone-inquiry.vtp-iform-page .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-standalone-inquiry.vtp-iform-page .vtp-btn {
  font-family: "AudiTypeScreenNormal", Verdana, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: unset;
  padding: 12px 0;
  min-width: 240px;
  max-width: 600px;
  -webkit-transition: background 0.2s;
  -o-transition: background 0.2s;
  transition: background 0.2s;
}
.vtp-standalone-inquiry.vtp-iform-page .vtp-btn.primary {
  background-color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page .vtp-btn.primary:hover {
  background-color: #4c4c4c;
}
.vtp-standalone-inquiry.vtp-iform-page .vtp-btn.primary:focus-visible {
  background-color: #4c4c4c;
  outline: 2px solid #000;
  outline-offset: 1px;
  border: 1px solid #fff;
  border-radius: 2px;
}
.vtp-standalone-inquiry.vtp-iform-page button {
  position: relative;
  margin: 0;
}
.vtp-standalone-inquiry.vtp-iform-page #dataFromParent {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}
.vtp-standalone-inquiry.vtp-iform-page #dSearchResult button {
  font-family: "AudiTypeScreenBold", Verdana, sans-serif;
  font-weight: 700;
  line-height: 24px;
  font-size: 16px;
  color: #000;
}
.vtp-standalone-inquiry.vtp-iform-page .dealer-results button i {
  content: "";
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  left: auto;
  right: 1em;
  z-index: 2;
  pointer-events: none;
  display: block;
  float: left;
  margin-top: 8px;
  margin-right: 6px;
}
.vtp-standalone-inquiry.vtp-iform-page .dealer-results button i.arrow-down {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -154px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-standalone-inquiry.vtp-iform-page .dealer-results button i.arrow-down {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-standalone-inquiry.vtp-iform-page .dealer-results button i.arrow-up {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -388px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-standalone-inquiry.vtp-iform-page .dealer-results button i.arrow-up {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-standalone-inquiry.vtp-iform-page .vtp-form-nav {
  text-align: left;
  margin-top: 42px;
}
.vtp-standalone-inquiry.vtp-iform-page .vtp-form-nav button.primary:after {
  content: none;
}
.vtp-standalone-inquiry.vtp-iform-page article {
  padding: 0px;
}
.vtp-standalone-inquiry.vtp-iform-page .vtp-dealer-inquiry-confirmation {
  margin-bottom: 42px;
}

@media only screen and (max-width: 768px) {
  .vtp-standalone-inquiry.vtp-iform-page fieldset .control-group > .controls.radio-button-controls.vtp_check_block > label {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 648px) {
  .vtp-standalone-inquiry.vtp-iform-page h1 {
    font-size: 24px;
    line-height: 36px;
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset.vtp-form-resultlist {
    margin: 36px 0 48px 0;
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset {
    margin-top: 48px;
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset .control-group.fieldset .controls {
    margin-top: 12px;
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls.vtp_check_block {
    width: -webkit-calc(35% - 30px);
    width: calc(35% - 30px);
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls.vtp_radio_block {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset .control-group > .controls:not(.controls-seperated):first-of-type {
    margin-right: 30px;
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset .control-group > .controls.vtp_check_block:not(.controls-seperated):first-of-type {
    margin-right: 0px;
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls.controls-seperated {
    width: -webkit-calc(50% - 58px);
    width: calc(50% - 58px);
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls.controls-seperator {
    width: auto;
    padding: 6px 24px;
    margin: 0 !important;
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset .control-group > .controls.radio-button-controls > label {
    margin-right: 36px;
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset.legacy p.vtp-form-info {
    margin-bottom: 36px;
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset.dealer-search .control-group .controls button {
    margin-top: 12px;
  }
  .vtp-standalone-inquiry.vtp-iform-page .vtp-form-nav {
    margin: 36px 0 0;
  }
  .vtp-standalone-inquiry.vtp-iform-page .vtp-dealer-inquiry-confirmation {
    margin-bottom: 48px;
  }
}
@media only screen and (min-width: 720px) {
  .vtp-standalone-inquiry.vtp-iform-page h1 {
    font-size: 30px;
    line-height: 42px;
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset {
    margin-top: 60px;
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset .control-group.fieldset .controls {
    margin-top: 18px;
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset .control-group .controls {
    margin-bottom: 42px;
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset .control-group > .controls.radio-button-controls > label {
    margin-right: 42px;
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset .control-group > .controls.radio-button-controls.vtp_check_block > label {
    margin-right: 10px;
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset.dealer-search .control-group:first-of-type .controls {
    margin-top: 42px;
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset.dealer-search .control-group .controls button {
    margin-top: 18px;
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset.vtp-form-resultlist {
    margin: 42px 0 60px 0;
  }
  .vtp-standalone-inquiry.vtp-iform-page fieldset.legacy p.vtp-form-info {
    margin-bottom: 42px;
  }
  .vtp-standalone-inquiry.vtp-iform-page .vtp-form-nav {
    margin-top: 42px;
  }
  .vtp-standalone-inquiry.vtp-iform-page .vtp-dealer-inquiry-confirmation {
    margin-bottom: 60px;
  }
}
.vtp-page-online-reservation .vtp-online-reservation {
  padding-bottom: 0;
  padding-top: 78px;
  padding-top: 6.5rem;
}
@media only screen and (max-width: 767px) {
  .vtp-page-online-reservation .vtp-online-reservation {
    padding-top: 0;
  }
}
.vtp-page-online-reservation .online-reservation-panel {
  margin-top: 20px;
  margin-top: 1.6666666667rem;
}
.vtp-page-online-reservation .online-reservation-panel .car-teaser .media .image-container, .vtp-page-online-reservation .online-reservation-panel .similar-car-item .media .image-container {
  cursor: default;
}
@media only screen and (max-width: 568px) {
  .vtp-page-online-reservation .online-reservation-panel .car-teaser .media .image-container, .vtp-page-online-reservation .online-reservation-panel .similar-car-item .media .image-container {
    margin-bottom: 0;
  }
}
.vtp-page-online-reservation .online-reservation-panel .car-teaser .media .available, .vtp-page-online-reservation .online-reservation-panel .similar-car-item .media .available {
  height: 100%;
  overflow: auto;
  float: left;
  position: relative;
}
@media only screen and (max-width: 568px) {
  .vtp-page-online-reservation .online-reservation-panel .car-teaser .media .available, .vtp-page-online-reservation .online-reservation-panel .similar-car-item .media .available {
    display: block;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-page-online-reservation .online-reservation-panel .car-teaser footer, .vtp-page-online-reservation .online-reservation-panel .similar-car-item footer {
    border-top: 1px solid #cdd0d2;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-page-online-reservation .online-reservation-panel .car-teaser footer .vtp-link, .vtp-page-online-reservation .online-reservation-panel .similar-car-item footer .vtp-link, .vtp-page-online-reservation .online-reservation-panel .car-teaser footer .vtp-breadcrumb-item, .vtp-page-online-reservation .online-reservation-panel .similar-car-item footer .vtp-breadcrumb-item {
    display: block;
    width: 100%;
    float: none;
    margin-left: 0;
  }
}
.vtp-page-online-reservation .online-reservation-panel .car-teaser footer .vtp-car-info-cta .vtp-btn, .vtp-page-online-reservation .online-reservation-panel .similar-car-item footer .vtp-car-info-cta .vtp-btn {
  margin: 0 12px 12px 0;
}
.vtp-page-online-reservation .online-reservation-panel .car-teaser footer .vtp-car-info-cta .vtp-btn:last-child, .vtp-page-online-reservation .online-reservation-panel .similar-car-item footer .vtp-car-info-cta .vtp-btn:last-child {
  margin-right: 0;
}
.vtp-page-online-reservation .online-reservation-panel .car-teaser .vtp-icon, .vtp-page-online-reservation .online-reservation-panel .similar-car-item .vtp-icon {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .vtp-online-reservation-empty {
    padding-top: 24px;
    padding-top: 2rem;
  }
}
.icon-arrow_double_right-red {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Ebene_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2032%2032%22%20height%3D%2232px%22%20width%3D%2232px%22%20enable-background%3D%22new%200%200%2032%2032%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%20fill%3D%22%23cc0033%22%3E%20%3Cpolygon%20points%3D%222.8%2C7.4%2011%2C16%202.8%2C24.6%2010.7%2C24.6%2018.7%2C16%2010.7%2C7.4%20%20%22%20fill%3D%22%23cc0033%22%3E%3C%2Fpolygon%3E%20%3Cpolygon%20points%3D%2213.3%2C7.4%2021.6%2C16%2013.3%2C24.6%2021.2%2C24.6%2029.2%2C16%2021.3%2C7.4%20%20%22%20fill%3D%22%23cc0033%22%3E%3C%2Fpolygon%3E%3C%2Fg%3E%3Crect%20fill%3D%22none%22%20width%3D%2232%22%20height%3D%2232%22%3E%3C%2Frect%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
}

.icon-arrow_double_right {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Ebene_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20viewBox%3D%220%200%2032%2032%22%20height%3D%2232px%22%20width%3D%2232px%22%20enable-background%3D%22new%200%200%2032%2032%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%20%3Cpolygon%20points%3D%222.8%2C7.4%2011%2C16%202.8%2C24.6%2010.7%2C24.6%2018.7%2C16%2010.7%2C7.4%20%20%22%2F%3E%20%3Cpolygon%20points%3D%2213.3%2C7.4%2021.6%2C16%2013.3%2C24.6%2021.2%2C24.6%2029.2%2C16%2021.3%2C7.4%20%20%22%2F%3E%3C%2Fg%3E%3Crect%20fill%3D%22none%22%20width%3D%2232%22%20height%3D%2232%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
}

.icon-car-sale-red {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Icon%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2032%2032%22%20enable-background%3D%22new%200%200%2032%2032%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M20%2C14.9c-1.1-0.1-3.8-0.2-4-0.2s-2.9%2C0.1-4%2C0.2c-0.3%2C0-0.5%2C0.2-0.6%2C0.3c-0.2%2C0.3-0.1%2C0.8-0.1%2C0.9l1%2C3.3%20c0%2C0%2C0.1%2C0.4%2C0.6%2C0.6c0.7%2C0.1%2C1.3%2C0.1%2C2.1%2C0.1c0.4%2C0%2C1.4%2C0%2C1.8%2C0c0.8%2C0%2C1.5%2C0%2C2.1-0.1c0.5-0.2%2C0.6-0.6%2C0.6-0.6l1-3.3%20c0-0.1%2C0.2-0.5-0.1-0.9C20.4%2C15.1%2C20.3%2C14.9%2C20%2C14.9z%20M20%2C15.9l-1%2C3.4c0%2C0%2C0%2C0.1-0.2%2C0.1c-0.5%2C0.1-1.1%2C0.1-1.9%2C0.1%20c-0.4%2C0-1.4%2C0-1.8%2C0c-0.8%2C0-1.4%2C0-1.9-0.1c-0.1%2C0-0.2-0.1-0.2-0.1l-1-3.4c0-0.1%2C0-0.3%2C0-0.3c1.1-0.1%2C3.8-0.2%2C4-0.2%20c0.1%2C0%2C2.9%2C0.1%2C4%2C0.2C20%2C15.6%2C20%2C15.8%2C20%2C15.9z%20M26.9%2C14.5c-0.1-0.5-0.4-0.9-0.7-1.2c-0.1%2C0-0.3-0.2-0.6-0.5%20c-0.1-0.1-0.2-0.2-0.3-0.2h1.1v-1.4h-2.1c-0.2-0.4-0.3-0.6-0.4-0.9c-0.3-0.7-0.4-0.8-0.6-1.2L23.2%2C9c-0.2-0.4-0.5-1-1.3-1.1%20c-0.1%2C0-3%2C0-5.9%2C0s-5.8%2C0-5.9%2C0C9.3%2C8%2C9%2C8.6%2C8.8%2C9L8.7%2C9.1c-0.3%2C0.5-0.3%2C0.6-0.6%2C1.2c-0.1%2C0.2-0.2%2C0.5-0.4%2C0.9H5.5v1.4h1.1%20c-0.1%2C0.1-0.2%2C0.2-0.3%2C0.2C6%2C13%2C5.8%2C13.2%2C5.7%2C13.3C5.4%2C13.6%2C5.1%2C14%2C5%2C14.5c0%2C0.5%2C0%2C0.9%2C0%2C1c0%2C0.2%2C0.1%2C0.8%2C0.1%2C1.5c0%2C0.1%2C0%2C0.2%2C0%2C0.3%20c0.2%2C6.1%2C0.2%2C6.3%2C0.3%2C6.4c0.2%2C0.5%2C0.7%2C0.5%2C1.1%2C0.5c2.1%2C0%2C2.2-0.1%2C2.3-0.1C9%2C24%2C9.2%2C23.6%2C9.2%2C23c0-0.5%2C0-0.9%2C0-1.2%20c1.4%2C0.1%2C3.6%2C0.2%2C6.8%2C0.3l0%2C0l0%2C0c3.2-0.1%2C5.3-0.2%2C6.8-0.3c0%2C0.3%2C0%2C0.7%2C0%2C1.2c0%2C0.6%2C0.2%2C0.9%2C0.4%2C1.1c0.1%2C0.1%2C0.2%2C0.1%2C2.3%2C0.1%20c0.4%2C0%2C0.9%2C0%2C1.1-0.5c0-0.1%2C0.1-0.3%2C0.3-6.4c0-0.1%2C0-0.2%2C0-0.3c0.1-0.7%2C0.1-1.4%2C0.1-1.5C27%2C15.4%2C27%2C15%2C26.9%2C14.5z%20M24.4%2C12.5%20L24.4%2C12.5L24.4%2C12.5L24.4%2C12.5L24.4%2C12.5z%20M8.9%2C10.7c0.3-0.6%2C0.3-0.7%2C0.6-1.2l0.1-0.1C9.8%2C9%2C10%2C8.8%2C10.3%2C8.7c0.2%2C0%2C2.9%2C0%2C5.7%2C0%20c2.7%2C0%2C5.5%2C0%2C5.7%2C0C22%2C8.8%2C22.2%2C9%2C22.4%2C9.4l0.1%2C0.1c0.2%2C0.4%2C0.3%2C0.5%2C0.6%2C1.2c0.1%2C0.3%2C0.3%2C0.7%2C0.6%2C1.3h-6.5H16h-1.2H8.4%20C8.6%2C11.4%2C8.8%2C11%2C8.9%2C10.7z%20M7.6%2C12.4L7.6%2C12.4L7.6%2C12.4L7.6%2C12.4L7.6%2C12.4z%20M6%2C15.4c0%2C0%2C0-0.2%2C0-0.4c0.4%2C0.1%2C0.8%2C0.1%2C1.2%2C0.2%20c0.7%2C0.1%2C1.4%2C0.2%2C1.6%2C0.3c0.3%2C0.1%2C0.4%2C0.1%2C0.5%2C0.3c0.2%2C0.3%2C0.3%2C1.1%2C0.3%2C1.4v0.1c-0.1%2C0-0.2%2C0-0.2%2C0H9.2C9%2C17.3%2C7%2C16.9%2C6%2C16.7%20C6%2C16.1%2C6%2C15.6%2C6%2C15.4z%20M25.6%2C19.8l-0.1%2C0.5c-0.1%2C0.1-0.1%2C0.2-0.2%2C0.3c-0.8%2C0.2-5.8%2C0.4-9.3%2C0.5l0%2C0l0%2C0c-3.4-0.1-8.5-0.3-9.3-0.5%20c0-0.1-0.1-0.2-0.2-0.3l-0.1-0.5c-0.1-0.5-0.2-1.5-0.3-2.4C7.2%2C17.6%2C9%2C18%2C9.2%2C18h0.2c0.1%2C0%2C0.2%2C0%2C0.4%2C0s0.4%2C0%2C0.5-0.2%20c0.1-0.1%2C0.2-0.2%2C0.1-0.5v-0.2c-0.1-0.4-0.2-1.2-0.4-1.6c-0.2-0.5-0.6-0.6-0.9-0.6c-0.4-0.1-1.1-0.2-1.8-0.3%20c-0.4-0.1-0.8-0.1-1.2-0.2c0.1-0.1%2C0.1-0.2%2C0.2-0.3c0.1%2C0%2C0.3-0.2%2C0.6-0.5c0.3-0.2%2C0.6-0.5%2C0.8-0.6h7.1H16h1.2h7.1%20c0.2%2C0.1%2C0.5%2C0.4%2C0.8%2C0.6c0.3%2C0.2%2C0.5%2C0.4%2C0.6%2C0.5s0.2%2C0.2%2C0.2%2C0.3c-0.3%2C0.1-0.8%2C0.1-1.2%2C0.2c-0.7%2C0.1-1.4%2C0.2-1.8%2C0.3%20C22.6%2C15%2C22.3%2C15%2C22%2C15.5c-0.2%2C0.4-0.3%2C1.2-0.4%2C1.6v0.2c0%2C0.3%2C0%2C0.4%2C0.1%2C0.5S22%2C18%2C22.2%2C18c0.1%2C0%2C0.2%2C0%2C0.4%2C0h0.2c0.2%2C0%2C2-0.3%2C3-0.5%20C25.7%2C18.4%2C25.6%2C19.3%2C25.6%2C19.8z%20M26%2C15.4c0%2C0.2-0.1%2C0.7-0.1%2C1.3c-1%2C0.2-2.9%2C0.6-3.2%2C0.6h-0.2c-0.1%2C0-0.1%2C0-0.2%2C0v-0.1%20c0.1-0.4%2C0.2-1.1%2C0.3-1.4c0.1-0.2%2C0.1-0.2%2C0.5-0.3c0.3-0.1%2C1-0.2%2C1.6-0.3c0.4-0.1%2C0.9-0.1%2C1.2-0.2C26.1%2C15.2%2C26%2C15.4%2C26%2C15.4z%22%20fill%3D%22%23cc0033%22%3E%3C%2Fpath%3E%3Crect%20fill%3D%22none%22%20width%3D%2232%22%20height%3D%2232%22%3E%3C%2Frect%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
}

.icon-car-sale-white {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Icon%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2032%2032%22%20enable-background%3D%22new%200%200%2032%2032%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M20%2C14.9c-1.1-0.1-3.8-0.2-4-0.2s-2.9%2C0.1-4%2C0.2c-0.3%2C0-0.5%2C0.2-0.6%2C0.3c-0.2%2C0.3-0.1%2C0.8-0.1%2C0.9l1%2C3.3%20c0%2C0%2C0.1%2C0.4%2C0.6%2C0.6c0.7%2C0.1%2C1.3%2C0.1%2C2.1%2C0.1c0.4%2C0%2C1.4%2C0%2C1.8%2C0c0.8%2C0%2C1.5%2C0%2C2.1-0.1c0.5-0.2%2C0.6-0.6%2C0.6-0.6l1-3.3%20c0-0.1%2C0.2-0.5-0.1-0.9C20.4%2C15.1%2C20.3%2C14.9%2C20%2C14.9z%20M20%2C15.9l-1%2C3.4c0%2C0%2C0%2C0.1-0.2%2C0.1c-0.5%2C0.1-1.1%2C0.1-1.9%2C0.1%20c-0.4%2C0-1.4%2C0-1.8%2C0c-0.8%2C0-1.4%2C0-1.9-0.1c-0.1%2C0-0.2-0.1-0.2-0.1l-1-3.4c0-0.1%2C0-0.3%2C0-0.3c1.1-0.1%2C3.8-0.2%2C4-0.2%20c0.1%2C0%2C2.9%2C0.1%2C4%2C0.2C20%2C15.6%2C20%2C15.8%2C20%2C15.9z%20M26.9%2C14.5c-0.1-0.5-0.4-0.9-0.7-1.2c-0.1%2C0-0.3-0.2-0.6-0.5%20c-0.1-0.1-0.2-0.2-0.3-0.2h1.1v-1.4h-2.1c-0.2-0.4-0.3-0.6-0.4-0.9c-0.3-0.7-0.4-0.8-0.6-1.2L23.2%2C9c-0.2-0.4-0.5-1-1.3-1.1%20c-0.1%2C0-3%2C0-5.9%2C0s-5.8%2C0-5.9%2C0C9.3%2C8%2C9%2C8.6%2C8.8%2C9L8.7%2C9.1c-0.3%2C0.5-0.3%2C0.6-0.6%2C1.2c-0.1%2C0.2-0.2%2C0.5-0.4%2C0.9H5.5v1.4h1.1%20c-0.1%2C0.1-0.2%2C0.2-0.3%2C0.2C6%2C13%2C5.8%2C13.2%2C5.7%2C13.3C5.4%2C13.6%2C5.1%2C14%2C5%2C14.5c0%2C0.5%2C0%2C0.9%2C0%2C1c0%2C0.2%2C0.1%2C0.8%2C0.1%2C1.5c0%2C0.1%2C0%2C0.2%2C0%2C0.3%20c0.2%2C6.1%2C0.2%2C6.3%2C0.3%2C6.4c0.2%2C0.5%2C0.7%2C0.5%2C1.1%2C0.5c2.1%2C0%2C2.2-0.1%2C2.3-0.1C9%2C24%2C9.2%2C23.6%2C9.2%2C23c0-0.5%2C0-0.9%2C0-1.2%20c1.4%2C0.1%2C3.6%2C0.2%2C6.8%2C0.3l0%2C0l0%2C0c3.2-0.1%2C5.3-0.2%2C6.8-0.3c0%2C0.3%2C0%2C0.7%2C0%2C1.2c0%2C0.6%2C0.2%2C0.9%2C0.4%2C1.1c0.1%2C0.1%2C0.2%2C0.1%2C2.3%2C0.1%20c0.4%2C0%2C0.9%2C0%2C1.1-0.5c0-0.1%2C0.1-0.3%2C0.3-6.4c0-0.1%2C0-0.2%2C0-0.3c0.1-0.7%2C0.1-1.4%2C0.1-1.5C27%2C15.4%2C27%2C15%2C26.9%2C14.5z%20M24.4%2C12.5%20L24.4%2C12.5L24.4%2C12.5L24.4%2C12.5L24.4%2C12.5z%20M8.9%2C10.7c0.3-0.6%2C0.3-0.7%2C0.6-1.2l0.1-0.1C9.8%2C9%2C10%2C8.8%2C10.3%2C8.7c0.2%2C0%2C2.9%2C0%2C5.7%2C0%20c2.7%2C0%2C5.5%2C0%2C5.7%2C0C22%2C8.8%2C22.2%2C9%2C22.4%2C9.4l0.1%2C0.1c0.2%2C0.4%2C0.3%2C0.5%2C0.6%2C1.2c0.1%2C0.3%2C0.3%2C0.7%2C0.6%2C1.3h-6.5H16h-1.2H8.4%20C8.6%2C11.4%2C8.8%2C11%2C8.9%2C10.7z%20M7.6%2C12.4L7.6%2C12.4L7.6%2C12.4L7.6%2C12.4L7.6%2C12.4z%20M6%2C15.4c0%2C0%2C0-0.2%2C0-0.4c0.4%2C0.1%2C0.8%2C0.1%2C1.2%2C0.2%20c0.7%2C0.1%2C1.4%2C0.2%2C1.6%2C0.3c0.3%2C0.1%2C0.4%2C0.1%2C0.5%2C0.3c0.2%2C0.3%2C0.3%2C1.1%2C0.3%2C1.4v0.1c-0.1%2C0-0.2%2C0-0.2%2C0H9.2C9%2C17.3%2C7%2C16.9%2C6%2C16.7%20C6%2C16.1%2C6%2C15.6%2C6%2C15.4z%20M25.6%2C19.8l-0.1%2C0.5c-0.1%2C0.1-0.1%2C0.2-0.2%2C0.3c-0.8%2C0.2-5.8%2C0.4-9.3%2C0.5l0%2C0l0%2C0c-3.4-0.1-8.5-0.3-9.3-0.5%20c0-0.1-0.1-0.2-0.2-0.3l-0.1-0.5c-0.1-0.5-0.2-1.5-0.3-2.4C7.2%2C17.6%2C9%2C18%2C9.2%2C18h0.2c0.1%2C0%2C0.2%2C0%2C0.4%2C0s0.4%2C0%2C0.5-0.2%20c0.1-0.1%2C0.2-0.2%2C0.1-0.5v-0.2c-0.1-0.4-0.2-1.2-0.4-1.6c-0.2-0.5-0.6-0.6-0.9-0.6c-0.4-0.1-1.1-0.2-1.8-0.3%20c-0.4-0.1-0.8-0.1-1.2-0.2c0.1-0.1%2C0.1-0.2%2C0.2-0.3c0.1%2C0%2C0.3-0.2%2C0.6-0.5c0.3-0.2%2C0.6-0.5%2C0.8-0.6h7.1H16h1.2h7.1%20c0.2%2C0.1%2C0.5%2C0.4%2C0.8%2C0.6c0.3%2C0.2%2C0.5%2C0.4%2C0.6%2C0.5s0.2%2C0.2%2C0.2%2C0.3c-0.3%2C0.1-0.8%2C0.1-1.2%2C0.2c-0.7%2C0.1-1.4%2C0.2-1.8%2C0.3%20C22.6%2C15%2C22.3%2C15%2C22%2C15.5c-0.2%2C0.4-0.3%2C1.2-0.4%2C1.6v0.2c0%2C0.3%2C0%2C0.4%2C0.1%2C0.5S22%2C18%2C22.2%2C18c0.1%2C0%2C0.2%2C0%2C0.4%2C0h0.2c0.2%2C0%2C2-0.3%2C3-0.5%20C25.7%2C18.4%2C25.6%2C19.3%2C25.6%2C19.8z%20M26%2C15.4c0%2C0.2-0.1%2C0.7-0.1%2C1.3c-1%2C0.2-2.9%2C0.6-3.2%2C0.6h-0.2c-0.1%2C0-0.1%2C0-0.2%2C0v-0.1%20c0.1-0.4%2C0.2-1.1%2C0.3-1.4c0.1-0.2%2C0.1-0.2%2C0.5-0.3c0.3-0.1%2C1-0.2%2C1.6-0.3c0.4-0.1%2C0.9-0.1%2C1.2-0.2C26.1%2C15.2%2C26%2C15.4%2C26%2C15.4z%22%20fill%3D%22%23ffffff%22%3E%3C%2Fpath%3E%3Crect%20fill%3D%22none%22%20width%3D%2232%22%20height%3D%2232%22%3E%3C%2Frect%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
}

.icon-car-sale {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Icon%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20viewBox%3D%220%200%2032%2032%22%20enable-background%3D%22new%200%200%2032%2032%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M20%2C14.9c-1.1-0.1-3.8-0.2-4-0.2s-2.9%2C0.1-4%2C0.2c-0.3%2C0-0.5%2C0.2-0.6%2C0.3c-0.2%2C0.3-0.1%2C0.8-0.1%2C0.9l1%2C3.3%20c0%2C0%2C0.1%2C0.4%2C0.6%2C0.6c0.7%2C0.1%2C1.3%2C0.1%2C2.1%2C0.1c0.4%2C0%2C1.4%2C0%2C1.8%2C0c0.8%2C0%2C1.5%2C0%2C2.1-0.1c0.5-0.2%2C0.6-0.6%2C0.6-0.6l1-3.3%20c0-0.1%2C0.2-0.5-0.1-0.9C20.4%2C15.1%2C20.3%2C14.9%2C20%2C14.9z%20M20%2C15.9l-1%2C3.4c0%2C0%2C0%2C0.1-0.2%2C0.1c-0.5%2C0.1-1.1%2C0.1-1.9%2C0.1%20c-0.4%2C0-1.4%2C0-1.8%2C0c-0.8%2C0-1.4%2C0-1.9-0.1c-0.1%2C0-0.2-0.1-0.2-0.1l-1-3.4c0-0.1%2C0-0.3%2C0-0.3c1.1-0.1%2C3.8-0.2%2C4-0.2%20c0.1%2C0%2C2.9%2C0.1%2C4%2C0.2C20%2C15.6%2C20%2C15.8%2C20%2C15.9z%20M26.9%2C14.5c-0.1-0.5-0.4-0.9-0.7-1.2c-0.1%2C0-0.3-0.2-0.6-0.5%20c-0.1-0.1-0.2-0.2-0.3-0.2h1.1v-1.4h-2.1c-0.2-0.4-0.3-0.6-0.4-0.9c-0.3-0.7-0.4-0.8-0.6-1.2L23.2%2C9c-0.2-0.4-0.5-1-1.3-1.1%20c-0.1%2C0-3%2C0-5.9%2C0s-5.8%2C0-5.9%2C0C9.3%2C8%2C9%2C8.6%2C8.8%2C9L8.7%2C9.1c-0.3%2C0.5-0.3%2C0.6-0.6%2C1.2c-0.1%2C0.2-0.2%2C0.5-0.4%2C0.9H5.5v1.4h1.1%20c-0.1%2C0.1-0.2%2C0.2-0.3%2C0.2C6%2C13%2C5.8%2C13.2%2C5.7%2C13.3C5.4%2C13.6%2C5.1%2C14%2C5%2C14.5c0%2C0.5%2C0%2C0.9%2C0%2C1c0%2C0.2%2C0.1%2C0.8%2C0.1%2C1.5c0%2C0.1%2C0%2C0.2%2C0%2C0.3%20c0.2%2C6.1%2C0.2%2C6.3%2C0.3%2C6.4c0.2%2C0.5%2C0.7%2C0.5%2C1.1%2C0.5c2.1%2C0%2C2.2-0.1%2C2.3-0.1C9%2C24%2C9.2%2C23.6%2C9.2%2C23c0-0.5%2C0-0.9%2C0-1.2%20c1.4%2C0.1%2C3.6%2C0.2%2C6.8%2C0.3l0%2C0l0%2C0c3.2-0.1%2C5.3-0.2%2C6.8-0.3c0%2C0.3%2C0%2C0.7%2C0%2C1.2c0%2C0.6%2C0.2%2C0.9%2C0.4%2C1.1c0.1%2C0.1%2C0.2%2C0.1%2C2.3%2C0.1%20c0.4%2C0%2C0.9%2C0%2C1.1-0.5c0-0.1%2C0.1-0.3%2C0.3-6.4c0-0.1%2C0-0.2%2C0-0.3c0.1-0.7%2C0.1-1.4%2C0.1-1.5C27%2C15.4%2C27%2C15%2C26.9%2C14.5z%20M24.4%2C12.5%20L24.4%2C12.5L24.4%2C12.5L24.4%2C12.5L24.4%2C12.5z%20M8.9%2C10.7c0.3-0.6%2C0.3-0.7%2C0.6-1.2l0.1-0.1C9.8%2C9%2C10%2C8.8%2C10.3%2C8.7c0.2%2C0%2C2.9%2C0%2C5.7%2C0%20c2.7%2C0%2C5.5%2C0%2C5.7%2C0C22%2C8.8%2C22.2%2C9%2C22.4%2C9.4l0.1%2C0.1c0.2%2C0.4%2C0.3%2C0.5%2C0.6%2C1.2c0.1%2C0.3%2C0.3%2C0.7%2C0.6%2C1.3h-6.5H16h-1.2H8.4%20C8.6%2C11.4%2C8.8%2C11%2C8.9%2C10.7z%20M7.6%2C12.4L7.6%2C12.4L7.6%2C12.4L7.6%2C12.4L7.6%2C12.4z%20M6%2C15.4c0%2C0%2C0-0.2%2C0-0.4c0.4%2C0.1%2C0.8%2C0.1%2C1.2%2C0.2%20c0.7%2C0.1%2C1.4%2C0.2%2C1.6%2C0.3c0.3%2C0.1%2C0.4%2C0.1%2C0.5%2C0.3c0.2%2C0.3%2C0.3%2C1.1%2C0.3%2C1.4v0.1c-0.1%2C0-0.2%2C0-0.2%2C0H9.2C9%2C17.3%2C7%2C16.9%2C6%2C16.7%20C6%2C16.1%2C6%2C15.6%2C6%2C15.4z%20M25.6%2C19.8l-0.1%2C0.5c-0.1%2C0.1-0.1%2C0.2-0.2%2C0.3c-0.8%2C0.2-5.8%2C0.4-9.3%2C0.5l0%2C0l0%2C0c-3.4-0.1-8.5-0.3-9.3-0.5%20c0-0.1-0.1-0.2-0.2-0.3l-0.1-0.5c-0.1-0.5-0.2-1.5-0.3-2.4C7.2%2C17.6%2C9%2C18%2C9.2%2C18h0.2c0.1%2C0%2C0.2%2C0%2C0.4%2C0s0.4%2C0%2C0.5-0.2%20c0.1-0.1%2C0.2-0.2%2C0.1-0.5v-0.2c-0.1-0.4-0.2-1.2-0.4-1.6c-0.2-0.5-0.6-0.6-0.9-0.6c-0.4-0.1-1.1-0.2-1.8-0.3%20c-0.4-0.1-0.8-0.1-1.2-0.2c0.1-0.1%2C0.1-0.2%2C0.2-0.3c0.1%2C0%2C0.3-0.2%2C0.6-0.5c0.3-0.2%2C0.6-0.5%2C0.8-0.6h7.1H16h1.2h7.1%20c0.2%2C0.1%2C0.5%2C0.4%2C0.8%2C0.6c0.3%2C0.2%2C0.5%2C0.4%2C0.6%2C0.5s0.2%2C0.2%2C0.2%2C0.3c-0.3%2C0.1-0.8%2C0.1-1.2%2C0.2c-0.7%2C0.1-1.4%2C0.2-1.8%2C0.3%20C22.6%2C15%2C22.3%2C15%2C22%2C15.5c-0.2%2C0.4-0.3%2C1.2-0.4%2C1.6v0.2c0%2C0.3%2C0%2C0.4%2C0.1%2C0.5S22%2C18%2C22.2%2C18c0.1%2C0%2C0.2%2C0%2C0.4%2C0h0.2c0.2%2C0%2C2-0.3%2C3-0.5%20C25.7%2C18.4%2C25.6%2C19.3%2C25.6%2C19.8z%20M26%2C15.4c0%2C0.2-0.1%2C0.7-0.1%2C1.3c-1%2C0.2-2.9%2C0.6-3.2%2C0.6h-0.2c-0.1%2C0-0.1%2C0-0.2%2C0v-0.1%20c0.1-0.4%2C0.2-1.1%2C0.3-1.4c0.1-0.2%2C0.1-0.2%2C0.5-0.3c0.3-0.1%2C1-0.2%2C1.6-0.3c0.4-0.1%2C0.9-0.1%2C1.2-0.2C26.1%2C15.2%2C26%2C15.4%2C26%2C15.4z%22%2F%3E%3Crect%20fill%3D%22none%22%20width%3D%2232%22%20height%3D%2232%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
}

.icon-close-black {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2232px%22%20height%3D%2232px%22%20viewBox%3D%220%2031%2032%2032%22%20enable-background%3D%22new%200%2031%2032%2032%22%20xml%3Aspace%3D%22preserve%22%3E%3Crect%20y%3D%2231%22%20fill%3D%22none%22%20width%3D%2232%22%20height%3D%2232%22%3E%3C%2Frect%3E%3Cpolygon%20points%3D%2228%2C36.4%2026.4%2C35%2016%2C45.6%205.4%2C35%204%2C36.4%2014.6%2C47%204%2C57.4%205.4%2C59%2016%2C48.4%2026.6%2C59%2028%2C57.6%2017.4%2C47%20%22%20fill%3D%22%23000000%22%3E%3C%2Fpolygon%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
}

.icon-close-white, .m_m-nav__flyout-exit, .m_header .m_header__flyout-exit {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2232px%22%20height%3D%2232px%22%20viewBox%3D%220%2031%2032%2032%22%20enable-background%3D%22new%200%2031%2032%2032%22%20xml%3Aspace%3D%22preserve%22%3E%3Crect%20y%3D%2231%22%20fill%3D%22none%22%20width%3D%2232%22%20height%3D%2232%22%3E%3C%2Frect%3E%3Cpolygon%20points%3D%2228%2C36.4%2026.4%2C35%2016%2C45.6%205.4%2C35%204%2C36.4%2014.6%2C47%204%2C57.4%205.4%2C59%2016%2C48.4%2026.6%2C59%2028%2C57.6%2017.4%2C47%20%22%20fill%3D%22%23ffffff%22%3E%3C%2Fpolygon%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
}

.icon-close {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2232px%22%20height%3D%2232px%22%20viewBox%3D%220%2031%2032%2032%22%20enable-background%3D%22new%200%2031%2032%2032%22%20xml%3Aspace%3D%22preserve%22%3E%3Crect%20y%3D%2231%22%20fill%3D%22none%22%20width%3D%2232%22%20height%3D%2232%22%2F%3E%3Cpolygon%20points%3D%2228%2C36.4%2026.4%2C35%2016%2C45.6%205.4%2C35%204%2C36.4%2014.6%2C47%204%2C57.4%205.4%2C59%2016%2C48.4%2026.6%2C59%2028%2C57.6%2017.4%2C47%20%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
}

.icon-menu-red {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2232px%22%20height%3D%2232px%22%20viewBox%3D%22-107%20-1%2032%2032%22%20enable-background%3D%22new%20-107%20-1%2032%2032%22%20xml%3Aspace%3D%22preserve%22%3E%3Crect%20x%3D%22-107%22%20y%3D%22-1%22%20fill%3D%22none%22%20width%3D%2232%22%20height%3D%2232%22%3E%3C%2Frect%3E%3Cg%20fill%3D%22%23cc0033%22%3E%20%3Crect%20x%3D%22-101%22%20y%3D%229%22%20width%3D%2220%22%20height%3D%221%22%20fill%3D%22%23cc0033%22%3E%3C%2Frect%3E%20%3Crect%20x%3D%22-101%22%20y%3D%2214%22%20width%3D%2220%22%20height%3D%221%22%20fill%3D%22%23cc0033%22%3E%3C%2Frect%3E%20%3Crect%20x%3D%22-101%22%20y%3D%2219%22%20width%3D%2220%22%20height%3D%221%22%20fill%3D%22%23cc0033%22%3E%3C%2Frect%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
}

.icon-menu {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2232px%22%20height%3D%2232px%22%20viewBox%3D%22-107%20-1%2032%2032%22%20enable-background%3D%22new%20-107%20-1%2032%2032%22%20xml%3Aspace%3D%22preserve%22%3E%3Crect%20x%3D%22-107%22%20y%3D%22-1%22%20fill%3D%22none%22%20width%3D%2232%22%20height%3D%2232%22%2F%3E%3Cg%3E%20%3Crect%20x%3D%22-101%22%20y%3D%229%22%20width%3D%2220%22%20height%3D%221%22%2F%3E%20%3Crect%20x%3D%22-101%22%20y%3D%2214%22%20width%3D%2220%22%20height%3D%221%22%2F%3E%20%3Crect%20x%3D%22-101%22%20y%3D%2219%22%20width%3D%2220%22%20height%3D%221%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
}

.icon-rhombus-red, .m_dealer_info .m_dealer_info__partner-item--sport:before, .m_m-nav__item--rhombus:before {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2232px%22%20height%3D%2232px%22%20viewBox%3D%220%2031%2032%2032%22%20enable-background%3D%22new%200%2031%2032%2032%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%20id%3D%22Form_1_1_%22%20enable-background%3D%22new%20%20%20%20%22%20fill%3D%22%23cc0033%22%3E%20%3Cg%20id%3D%22Form_1%22%20fill%3D%22%23cc0033%22%3E%20%20%3Cg%20fill%3D%22%23cc0033%22%3E%20%20%20%3Cpolygon%20points%3D%2213.2%2C36.7%202%2C57.3%2020.7%2C57.3%2030%2C36.7%20%20%20%20%22%20fill%3D%22%23cc0033%22%3E%3C%2Fpolygon%3E%20%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fg%3E%3Crect%20y%3D%2231%22%20fill%3D%22none%22%20width%3D%2232%22%20height%3D%2232%22%3E%3C%2Frect%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
}

.icon-rhombus {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2232px%22%20height%3D%2232px%22%20viewBox%3D%220%2031%2032%2032%22%20enable-background%3D%22new%200%2031%2032%2032%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%20id%3D%22Form_1_1_%22%20enable-background%3D%22new%20%20%20%20%22%3E%20%3Cg%20id%3D%22Form_1%22%3E%20%20%3Cg%3E%20%20%20%3Cpolygon%20points%3D%2213.2%2C36.7%202%2C57.3%2020.7%2C57.3%2030%2C36.7%20%20%20%20%22%2F%3E%20%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fg%3E%3Crect%20y%3D%2231%22%20fill%3D%22none%22%20width%3D%2232%22%20height%3D%2232%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
}

.responsive-container {
  display: block;
  height: 0;
  overflow: hidden;
  position: relative;
}

.responsive-container--2x1 {
  padding-top: 50%;
}

.responsive-container--2x3 {
  padding-top: 150%;
}

.responsive-container--4x3 {
  padding-top: 75%;
}

.responsive-container--3x4 {
  padding-top: 133%;
}

.responsive-container--16x9 {
  padding-top: 56.25%;
}

.responsive-container--16x5 {
  padding-top: 31.25%;
}

.responsive-container--32x15 {
  padding-top: 46.875%;
}

.responsive-container--12x19 {
  padding-top: 158.333%;
}

.responsive-container--15x11 {
  padding-top: 73.333%;
}

.responsive-container__image,
.responsive-container__picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5;
}

.responsive-container__picture-image {
  width: 100%;
}

.responsive-container__content {
  position: absolute;
  z-index: 10;
}

.responsive-container__content--left {
  left: 5%;
  right: auto;
}

.responsive-container__content--right {
  left: auto;
  right: 5%;
}

.responsive-container__content--top {
  top: 5%;
  bottom: auto;
}

.responsive-container__content--bottom {
  top: auto;
  bottom: 5%;
}

.responsive-container__content--center {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.responsive-container__content--stage {
  width: 100.5%;
  height: 100.5%;
  background-size: cover;
  background-position: center center;
}

.col-xs-full, .col-sm-full, .col-md-full, .col-lg-full, .col-xl-full {
  float: left;
  width: 100%;
  min-height: 1px;
  position: relative;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
  margin-left: 4%;
  min-height: 1px;
  position: relative;
}

.col-xs-1 {
  width: 4%;
}

.col-xs-2 {
  width: 12%;
}

.col-xs-3 {
  width: 20%;
}

.col-xs-4 {
  width: 28%;
}

.col-xs-5 {
  width: 36%;
}

.col-xs-6 {
  width: 44%;
}

.col-xs-7 {
  width: 52%;
}

.col-xs-8 {
  width: 60%;
}

.col-xs-9 {
  width: 68%;
}

.col-xs-10 {
  width: 76%;
}

.col-xs-11 {
  width: 84%;
}

.col-xs-12 {
  width: 92%;
}

.col-xs-offset-1 {
  margin-left: 12%;
}

.col-xs-offset-2 {
  margin-left: 20%;
}

.col-xs-offset-3 {
  margin-left: 28%;
}

.col-xs-offset-4 {
  margin-left: 36%;
}

.col-xs-offset-5 {
  margin-left: 44%;
}

.col-xs-offset-6 {
  margin-left: 52%;
}

.col-xs-offset-7 {
  margin-left: 60%;
}

.col-xs-offset-8 {
  margin-left: 68%;
}

.col-xs-offset-9 {
  margin-left: 76%;
}

.col-xs-offset-10 {
  margin-left: 84%;
}

.col-xs-offset-11 {
  margin-left: 92%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 321px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
    margin-left: 4%;
    min-height: 1px;
    position: relative;
  }
  .col-sm-1 {
    width: 4%;
  }
  .col-sm-2 {
    width: 12%;
  }
  .col-sm-3 {
    width: 20%;
  }
  .col-sm-4 {
    width: 28%;
  }
  .col-sm-5 {
    width: 36%;
  }
  .col-sm-6 {
    width: 44%;
  }
  .col-sm-7 {
    width: 52%;
  }
  .col-sm-8 {
    width: 60%;
  }
  .col-sm-9 {
    width: 68%;
  }
  .col-sm-10 {
    width: 76%;
  }
  .col-sm-11 {
    width: 84%;
  }
  .col-sm-12 {
    width: 92%;
  }
  .col-sm-offset-1 {
    margin-left: 12%;
  }
  .col-sm-offset-2 {
    margin-left: 20%;
  }
  .col-sm-offset-3 {
    margin-left: 28%;
  }
  .col-sm-offset-4 {
    margin-left: 36%;
  }
  .col-sm-offset-5 {
    margin-left: 44%;
  }
  .col-sm-offset-6 {
    margin-left: 52%;
  }
  .col-sm-offset-7 {
    margin-left: 60%;
  }
  .col-sm-offset-8 {
    margin-left: 68%;
  }
  .col-sm-offset-9 {
    margin-left: 76%;
  }
  .col-sm-offset-10 {
    margin-left: 84%;
  }
  .col-sm-offset-11 {
    margin-left: 92%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 501px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
    margin-left: 4%;
    min-height: 1px;
    position: relative;
  }
  .col-md-1 {
    width: 4%;
  }
  .col-md-2 {
    width: 12%;
  }
  .col-md-3 {
    width: 20%;
  }
  .col-md-4 {
    width: 28%;
  }
  .col-md-5 {
    width: 36%;
  }
  .col-md-6 {
    width: 44%;
  }
  .col-md-7 {
    width: 52%;
  }
  .col-md-8 {
    width: 60%;
  }
  .col-md-9 {
    width: 68%;
  }
  .col-md-10 {
    width: 76%;
  }
  .col-md-11 {
    width: 84%;
  }
  .col-md-12 {
    width: 92%;
  }
  .col-md-offset-1 {
    margin-left: 12%;
  }
  .col-md-offset-2 {
    margin-left: 20%;
  }
  .col-md-offset-3 {
    margin-left: 28%;
  }
  .col-md-offset-4 {
    margin-left: 36%;
  }
  .col-md-offset-5 {
    margin-left: 44%;
  }
  .col-md-offset-6 {
    margin-left: 52%;
  }
  .col-md-offset-7 {
    margin-left: 60%;
  }
  .col-md-offset-8 {
    margin-left: 68%;
  }
  .col-md-offset-9 {
    margin-left: 76%;
  }
  .col-md-offset-10 {
    margin-left: 84%;
  }
  .col-md-offset-11 {
    margin-left: 92%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 769px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
    margin-left: 4%;
    min-height: 1px;
    position: relative;
  }
  .col-lg-1 {
    width: 4%;
  }
  .col-lg-2 {
    width: 12%;
  }
  .col-lg-3 {
    width: 20%;
  }
  .col-lg-4 {
    width: 28%;
  }
  .col-lg-5 {
    width: 36%;
  }
  .col-lg-6 {
    width: 44%;
  }
  .col-lg-7 {
    width: 52%;
  }
  .col-lg-8 {
    width: 60%;
  }
  .col-lg-9 {
    width: 68%;
  }
  .col-lg-10 {
    width: 76%;
  }
  .col-lg-11 {
    width: 84%;
  }
  .col-lg-12 {
    width: 92%;
  }
  .col-lg-offset-1 {
    margin-left: 12%;
  }
  .col-lg-offset-2 {
    margin-left: 20%;
  }
  .col-lg-offset-3 {
    margin-left: 28%;
  }
  .col-lg-offset-4 {
    margin-left: 36%;
  }
  .col-lg-offset-5 {
    margin-left: 44%;
  }
  .col-lg-offset-6 {
    margin-left: 52%;
  }
  .col-lg-offset-7 {
    margin-left: 60%;
  }
  .col-lg-offset-8 {
    margin-left: 68%;
  }
  .col-lg-offset-9 {
    margin-left: 76%;
  }
  .col-lg-offset-10 {
    margin-left: 84%;
  }
  .col-lg-offset-11 {
    margin-left: 92%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1025px) {
  .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    float: left;
    margin-left: 4%;
    min-height: 1px;
    position: relative;
  }
  .col-xl-1 {
    width: 4%;
  }
  .col-xl-2 {
    width: 12%;
  }
  .col-xl-3 {
    width: 20%;
  }
  .col-xl-4 {
    width: 28%;
  }
  .col-xl-5 {
    width: 36%;
  }
  .col-xl-6 {
    width: 44%;
  }
  .col-xl-7 {
    width: 52%;
  }
  .col-xl-8 {
    width: 60%;
  }
  .col-xl-9 {
    width: 68%;
  }
  .col-xl-10 {
    width: 76%;
  }
  .col-xl-11 {
    width: 84%;
  }
  .col-xl-12 {
    width: 92%;
  }
  .col-xl-offset-1 {
    margin-left: 12%;
  }
  .col-xl-offset-2 {
    margin-left: 20%;
  }
  .col-xl-offset-3 {
    margin-left: 28%;
  }
  .col-xl-offset-4 {
    margin-left: 36%;
  }
  .col-xl-offset-5 {
    margin-left: 44%;
  }
  .col-xl-offset-6 {
    margin-left: 52%;
  }
  .col-xl-offset-7 {
    margin-left: 60%;
  }
  .col-xl-offset-8 {
    margin-left: 68%;
  }
  .col-xl-offset-9 {
    margin-left: 76%;
  }
  .col-xl-offset-10 {
    margin-left: 84%;
  }
  .col-xl-offset-11 {
    margin-left: 92%;
  }
  .col-xl-offset-12 {
    margin-left: 100%;
  }
}
.grid-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

[class^=icon-] {
  background-size: contain;
  background-position: center center;
}

.m_logo_bar {
  display: table;
  width: 100%;
}
.m_logo_bar .audi-plus-label {
  color: #c03;
  font-style: italic;
}
.m_logo_bar .m_logo_bar__logo-part {
  float: left;
}
.m_logo_bar .m_logo_bar__logo-part:not(:last-of-type) {
  margin-right: 5px;
}
.m_logo_bar .m_logo_bar__main {
  display: table-cell;
  vertical-align: top;
  padding-top: 17px;
}
.m_logo_bar .m_logo_bar__brand,
.m_logo_bar .m_logo_bar__dealer {
  font-size: 13px;
  font-size: 1.0833333333rem;
  line-height: 1.3846153846;
}
.m_logo_bar .m_logo_bar__brand {
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  color: #c03;
  margin: 0;
}
.m_logo_bar .m_logo_bar__dealer {
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  font-weight: normal;
  margin: 0;
}
.m_logo_bar .m_logo_bar__aside {
  float: right;
  margin: 20px 0 0 20px;
  height: 30px;
  text-align: right;
}
.m_logo_bar .m_logo_bar__logo {
  height: 100%;
  display: block;
}
.m_logo_bar .m_logo_bar__logo .x_responsive_picture,
.m_logo_bar .m_logo_bar__logo .x_responsive_picture__image {
  display: block;
  position: relative;
  width: auto;
  height: 100%;
}
.m_logo_bar .m_logo_bar__logo-part {
  display: inline-block;
}

/*
<div class="m_header m_header--[retail|service|vtp|error]" data-id="[...]">

    <div class="m_header__logo-bar">
        [> m_logo_bar]
    </div>

    <div class="m_header__m-nav-holder js-m-nav-holder">
        [> m_model_navigation]
    </div>

    <div class="m_header__body">
        <div class="m_header__t-nav-holder js-t-nav-holder">
            [> m_topic_navigation]
        </div>
        <div class="m_header__aside">
            [> m_header_aside]
        </div>
    </div>

    <div class="m_header__flyout js-flyout">
        <div class="m_header__flyout-body js-flyout-body">
            <a href="#" class="m_header__flyout-exit js-flyout-exit">X</a>
        </div>
    </div>

</div>
*/
.vtp-header-iph {
  max-width: 1280px;
  margin: auto;
}

.m_header .m_header__logo-bar {
  padding: 0 4%;
  margin-bottom: 20px;
}
.m_header .m_header__body {
  display: block;
}
.m_header .m_header__navigations {
  position: absolute;
  top: 100%;
  width: 100%;
}
.m_header .m_header__aside {
  padding: 0 4%;
}
.m_header .m_header__holder {
  overflow: hidden;
  z-index: 150;
  position: absolute;
  top: 100%;
  width: 100%;
  background-color: #ffffff;
}
.m_header .m_header__t-nav-holder.m_header__nav-holder.is-open,
.m_header .m_header__m-nav-holder.m_header__nav-holder.is-open,
.m_header .has-shadow {
  -webkit-box-shadow: 0px 10px 5px -5px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 10px 5px -5px rgba(0, 0, 0, 0.25);
  z-index: 3000;
}
.m_header .m_header__flyout-exit {
  display: none;
  width: 30px;
  height: 30px;
  background-color: #000;
  position: absolute;
  right: 4%;
  bottom: 20px;
  text-indent: -999em;
  background-position: center center;
  background-size: 15px;
}
.m_header .m_header__flyout--contact .m_header__flyout-exit,
.m_header .m_header__flyout--contact .m_header__flyout-exit {
  display: block;
}
.m_header .m_header__flyout--search .m_header__flyout-exit {
  display: none;
}
.m_header .m_header__flyout-origin {
  min-height: 50px;
  background-color: #ffffff;
}
.m_header .m_header__nav-holder {
  display: none;
  clear: both;
}
.m_header .m_header__flyout {
  overflow: hidden;
  -webkit-transition: max-height 0.4s;
  -o-transition: max-height 0.4s;
  transition: max-height 0.4s;
  position: absolute;
  z-index: 1200;
  width: 100%;
  top: 100%;
  -webkit-box-shadow: 0 10px 5px -5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 10px 5px -5px rgba(0, 0, 0, 0.25);
}
.m_header .m_header__flyout .bg-gradient {
  background: none;
}
.m_header .m_header__nav-holder.is-open {
  display: block;
  position: absolute;
  width: 100%;
  top: 100%;
  z-index: 100;
}

.m_header__flyout--topic,
.m_header__flyout--model {
  background-color: #e7e9ea;
}

.m_header__flyout--search {
  background-color: #ffffff;
}

.js-header-holder.open .m_header__flyout--search {
  padding: 20px 4% 20px;
}

.m_header__flyout--contact {
  background-color: #ffffff;
}

@media (min-width: 501px) {
  .m_header__flyout--topic,
  .m_header__flyout--model {
    background-color: #e7e9ea;
  }
  .m_header__flyout--search,
  .m_header__flyout--contact {
    background-color: #ffffff;
    padding: 20px 4% 20px;
  }
}
@media (min-width: 769px) {
  .m_header .m_header__t-nav-holder.m_header__nav-holder.is-open {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .m_header .m_header__flyout-body {
    padding: 20px 4% 60px;
    background-color: #ffffff;
    position: relative;
  }
  .m_header .m_header__flyout--search,
  .m_header .m_header__flyout--contact {
    padding: 0;
  }
  .m_header .m_header__body {
    background-color: #ffffff;
    display: table;
    width: 100%;
    padding: 0 4%;
  }
  .m_header .m_header__m-nav-holder {
    padding: 0 4%;
    display: block;
  }
  .m_header .m_header__m-nav-holder.is-open {
    width: auto;
    position: static;
  }
  .m_header .m_header__t-nav-holder,
  .m_header .m_header__t-nav-holder.is-open {
    display: table-cell;
    vertical-align: top;
    position: static;
    width: auto;
    top: auto;
  }
  .m_header .m_header__aside {
    float: right;
  }
  .m_header .m_header__aside {
    padding: 0;
  }
  .m_header .m_header__flyout-exit {
    display: block;
  }
  .m_header .m_header__flyout--search .m_header__flyout-exit {
    display: block;
  }
}
/*
<div class="m_header_aside" data-id="[...]">
    <div class="m_header_aside__part m_header_aside__part--left">
        <a class="x_button x_button--blank js-header-aside-menu" href="#">
            <span class="x_button__body">
                <i class="x_button__icon icon-menu"></i>
                <i class="x_button__icon x_button__icon--active icon-menu-red"></i>
                <b class="x_button__label">[...]</b>
            </span>
        </a>
        <a class="x_button x_button--blank js-header-aside-models" href="#">
            <span class="x_button__body">
                <i class="x_button__icon icon-car-sale"></i>
                <i class="x_button__icon x_button__icon--active icon-car-sale-red"></i>
                <b class="x_button__label">[...]</b>
            </span>
        </a>
    </div>
    <div class="m_header_aside__part m_header_aside__part--right">
        <a class="x_button x_button--blank js-header-aside-contact" href="#">
            <span class="x_button__body">
                <i class="x_button__icon icon-contact"></i>
                <i class="x_button__icon x_button__icon--active icon-contact-red"></i>
                <b class="x_button__label">[...]</b>
            </span>
        </a>
        <a class="x_button x_button--blank js-header-aside-search" href="#">
            <span class="x_button__body">
                <i class="x_button__icon icon-search"></i>
                <i class="x_button__icon x_button__icon--active icon-search-red"></i>
                <b class="x_button__label">[...]</b>
            </span>
        </a>
    </div>
</div>
*/
.m_header_aside {
  overflow: visible;
}
.m_header_aside .m_header_aside__part {
  white-space: nowrap;
  font-size: 0;
}
.m_header_aside .m_header_aside__part--left {
  float: left;
  margin-left: -15px;
}
.m_header_aside .m_header_aside__part--right {
  float: right;
  margin-right: -9px;
}

@media (min-width: 501px) {
  .m_header_aside .m_header_aside__part--left {
    margin-left: -35px;
  }
  .m_header_aside .m_header_aside__part--right {
    margin-right: 0;
  }
}
@media (min-width: 769px) {
  .m_header_aside .m_header_aside__btn:hover {
    color: #c03;
  }
  .m_header_aside .m_header_aside__part--left {
    display: none;
  }
}
.m_header--service .m_header_aside__item--models {
  display: none;
}

.m_header--vtp .m_header_aside__part--right {
  display: none;
}

/*
<div class="m_t-nav" data-id="[...]">
    <ul class="m_t-nav__list js-nav-list">
        <li class="m_t-nav__item [m_t-nav__item--rhombus] js-nav-item">
            <a class="m_t-nav__anchor js-nav-item-anchor" href="[...]" target="[...]">
                <span class="m_t-nav__label">[...]</span>
            </a>
            <div class="m_t-nav__subnav js-subnav-origin">
                <ul class="m_t-nav__subnav-list js-subnav-list">
                    <li class="m_t-nav__subnav-item js-subnav-item">
                        [> m_topic_subnavigation]
                    </li>
                </ul>
                <div class="m_t-nav__subnav-teaser">
                    [> m_teaser_focus]
                </div>
            </div>
        </li>
    </ul>
</div>

*/
.m_t-nav {
  position: relative;
}
.m_t-nav .m_t-nav__item,
.m_t-nav .m_t-nav__subnav-item {
  border-top: solid 1px #d5d9d8;
}
.m_t-nav .m_t-nav__subnav {
  display: none;
}
.m_t-nav .m_t-nav__item.is-active .m_t-nav__subnav {
  display: block;
}
.m_t-nav .m_t-nav__list {
  background-color: #ffffff;
  border-bottom: solid 1px #d5d9d8;
}
.m_t-nav .m_t-nav__anchor {
  display: block;
}
.m_t-nav .m_t-nav__anchor:hover {
  color: #c03;
}
.m_t-nav .m_t-nav__label {
  font-size: 12px;
  font-size: 1rem;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  padding: 0 4%;
  max-width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 4.2;
}
.m_t-nav .m_t-nav__item.is-active {
  color: #c03;
}
.m_t-nav .m_t-nav__item.is-active .m_t-nav__subnav-item {
  color: #000;
}
.m_t-nav .m_t-nav__label:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -154px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  right: 4%;
  top: 50%;
  margin-top: -6px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .m_t-nav .m_t-nav__label:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.m_t-nav .m_t-nav__item.is-active .m_t-nav__label:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -370px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  width: 12px;
  height: 12px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .m_t-nav .m_t-nav__item.is-active .m_t-nav__label:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.m_t-nav .m_t-nav__subnav-teaser {
  display: none;
}

@media (min-width: 769px) {
  .m_t-nav .m_t-nav__item.is-active .m_t-nav__subnav {
    display: none;
  }
  .m_t-nav .m_t-nav__list {
    *zoom: 1;
    overflow: hidden;
    border: 0;
    margin-left: -30px;
  }
  .m_t-nav .m_t-nav__list:before, .m_t-nav .m_t-nav__list:after {
    content: "";
    display: table;
  }
  .m_t-nav .m_t-nav__list:after {
    clear: both;
  }
  .m_t-nav .m_t-nav__item,
  .m_t-nav .m_t-nav__subnav-item {
    border: none;
  }
  .m_t-nav .m_t-nav__item {
    float: left;
    margin-left: 30px;
  }
  .m_t-nav .m_t-nav__label {
    padding: 0;
  }
  .m_t-nav .m_t-nav__label:after {
    content: none;
  }
  .m_t-nav .m_t-nav__subnav,
  .m_t-nav .m_x-nav__subnav-holder {
    background-color: transparent;
  }
  .m_t-nav__subnav-content {
    *zoom: 1;
  }
  .m_t-nav__subnav-content:before, .m_t-nav__subnav-content:after {
    content: "";
    display: table;
  }
  .m_t-nav__subnav-content:after {
    clear: both;
  }
  .m_t-nav__subnav-list {
    float: left;
    width: 65%;
  }
  .m_t-nav__subnav-teaser {
    display: block;
    float: left;
    width: 31%;
    margin-left: 4%;
  }
  .m_t-nav__subnav-item {
    float: left;
    width: 46.5%;
    border-top: solid 1px #d3d5d7;
    border-bottom: solid 1px #d3d5d7;
    margin-top: -1px;
  }
  .m_t-nav__subnav-item:nth-child(2n+2) {
    margin-left: 6%;
  }
}
/*
<a class="m_t-subnav responsive-container responsive-container--16x9">
    <span class="m_t-subnav__label">[...]</span>
</a>
*/
.m_t-subnav {
  display: block;
}
.m_t-subnav .m_t-subnav__label {
  font-size: 12px;
  font-size: 1rem;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
  padding: 0 4% 0 10%;
  max-width: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 4.2;
}

@media (min-width: 501px) {
  .m_t-subnav .m_t-subnav__label {
    padding-right: 20px;
  }
  .m_t-subnav .m_t-subnav__label:after {
    display: block;
  }
  .m_t-subnav:hover {
    background: #d5d9d8;
  }
}
@media (min-width: 769px) {
  .m_t-subnav .m_t-subnav__label {
    padding: 0 0 0 5.5%;
  }
}
.x_button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: block;
}
.x_button .x_button__body {
  font-size: 12px;
  font-size: 1rem;
  font-family: Verdana, sans-serif;
  font-weight: bold;
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 40px;
}
.x_button .x_button__icon {
  background-size: 30px;
  background-position: center center;
  display: inline-block;
  height: 40px;
  vertical-align: middle;
  width: 40px;
}
.x_button .x_button__label {
  margin-left: -5px;
}

/* - - - - - - - - - - - - - - - *\
    VARIATIONS
\* - - - - - - - - - - - - - - - */
/* HEADER ASIDE */
.m_header_aside .x_button {
  display: inline-block;
}
.m_header_aside .x_button .x_button__body {
  line-height: 50px;
}
.m_header_aside .x_button .x_button__label {
  font-weight: normal;
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
}
.m_header_aside .x_button .x_button__icon--active {
  display: none;
}
.m_header_aside .x_button:hover,
.m_header_aside .x_button.is-active {
  color: #c03;
}
.m_header_aside .x_button:hover .x_button__icon,
.m_header_aside .x_button.is-active .x_button__icon {
  display: none;
}
.m_header_aside .x_button:hover .x_button__icon--active,
.m_header_aside .x_button.is-active .x_button__icon--active {
  display: inline-block;
}
.m_header_aside .m_header_aside__part--left .x_button {
  margin-left: 5px;
}
.m_header_aside .m_header_aside__part--right .x_button {
  margin-left: 5px;
}
.m_header_aside .m_header_aside__part--right .x_button__label {
  display: none;
}

@media (min-width: 501px) {
  .m_header_aside .m_header_aside__part--left .x_button {
    margin-left: 25px;
  }
  .m_header_aside .m_header_aside__part--right .x_button {
    margin-left: 25px;
  }
  .m_header_aside .m_header_aside__part--right .x_button__label {
    display: inline-block;
  }
}
.m_m-nav .m_x-nav__subnav-holder {
  float: left;
  width: 100%;
}

.m_m-nav__subnav {
  display: none;
}

.m_m-nav__flyout-exit {
  display: block;
  width: 30px;
  height: 30px;
  background-color: #000;
  position: absolute;
  right: 4%;
  bottom: 20px;
  text-indent: -999em;
  background-position: center center;
  background-size: 15px;
}

.m_m-nav__list {
  padding-bottom: 65px;
}

.m_m-nav__list,
.m_m-nav__subnav-list {
  *zoom: 1;
  background-color: #ffffff;
}
.m_m-nav__list:before, .m_m-nav__list:after,
.m_m-nav__subnav-list:before,
.m_m-nav__subnav-list:after {
  content: "";
  display: table;
}
.m_m-nav__list:after,
.m_m-nav__subnav-list:after {
  clear: both;
}

.m_m-nav__subnav-list {
  background-color: #e7e9ea;
}

.m_m-nav__item,
.m_m-nav__subnav-item {
  float: left;
}

.m_m-nav__item.is-active {
  color: #c03;
  background-color: #e7e9ea;
}
.m_m-nav__item.is-active .m_m-nav__image {
  z-index: 1;
  display: none;
}
.m_m-nav__item.is-active .m_m-nav__image.m_m-nav__image--active {
  z-index: 2;
  display: block;
}

.m_m-nav__item--rhombus {
  padding-left: 20px;
  position: relative;
}

.m_m-nav__item--rhombus:before {
  content: "";
  display: none;
  width: 18px;
  height: 18px;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}

.m_m-nav__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}
.m_m-nav__image.m_m-nav__image--active {
  z-index: 1;
  display: none;
}

.m_m-nav__label {
  font-size: 12px;
  font-size: 1rem;
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.m_m-nav__label:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -543px;
  background-repeat: no-repeat;
  width: 14px;
  height: 11px;
  content: "";
  display: none;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  top: 4px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .m_m-nav__label:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}

.m_m-nav__subnav-item.js-subnav-item:nth-child(3n+3) {
  clear: left;
}

@media (max-width: 500px) {
  .m_m-nav__item,
  .m_m-nav__subnav-item {
    width: 50%;
  }
  /* left column */
  .m_m-nav__item:nth-child(2n+1),
  .m_m-nav__subnav-item:nth-child(2n+1),
  .m_x-nav__subnav-holder ~ .m_m-nav__item:nth-child(2n+2) {
    padding: 0 1% 0 4%;
  }
  /* right column */
  .m_m-nav__item:nth-child(2n+2),
  .m_m-nav__subnav-item:nth-child(2n+2),
  .m_x-nav__subnav-holder ~ .m_m-nav__item:nth-child(2n+1) {
    padding: 0 4% 0 1%;
  }
}
@media (min-width: 321px) {
  .m_m-nav__subnav-item.js-subnav-item:nth-child(3n+3) {
    clear: none;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  .m_m-nav__item,
  .m_m-nav__subnav-item {
    width: 33.3333333333%;
  }
  /* left column */
  .m_m-nav__item:nth-child(3n+1),
  .m_m-nav__subnav-item:nth-child(3n+1),
  .m_x-nav__subnav-holder ~ .m_m-nav__item:nth-child(3n+2) {
    padding: 0 1% 0 4%;
  }
  /* middle column */
  .m_m-nav__item:nth-child(3n+2),
  .m_m-nav__subnav-item:nth-child(3n+2),
  .m_x-nav__subnav-holder ~ .m_m-nav__item:nth-child(3n+3) {
    padding: 0 2.5% 0 2.51%;
  }
  /* right column */
  .m_m-nav__item:nth-child(3n+3),
  .m_m-nav__subnav-item:nth-child(3n+3),
  .m_x-nav__subnav-holder ~ .m_m-nav__item:nth-child(3n+1) {
    padding: 0 4% 0 1%;
  }
}
@media (min-width: 769px) {
  .m_m-nav__flyout-exit {
    display: none;
  }
  .m_m-nav__list {
    background-color: transparent;
    padding-top: 12px;
    padding-bottom: 15px;
  }
  .m_m-nav__item {
    margin: 0 20px 0 0;
  }
  .m_m-nav__item.is-active {
    color: #c03;
    background-color: transparent;
  }
  .m_m-nav__item.is-active .m_m-nav__image.m_m-nav__image--active {
    display: none;
  }
  .m_m-nav__anchor {
    height: auto;
    padding-top: 0;
  }
  .m_m-nav__anchor:hover {
    color: #c03;
  }
  .m_m-nav__item--rhombus:before {
    display: inline-block;
  }
  .m_m-nav__image {
    display: none;
  }
  .m_m-nav__label {
    font-size: 12px;
    font-size: 1rem;
    font-family: "AudiTypeExtNormal", Verdana, sans-serif;
    position: static;
  }
  .m_m-nav__subnav-list {
    background-color: transparent;
  }
  .m_m-nav__subnav-item {
    width: 25%;
    padding: 0.5% 1%;
  }
  .m_x-nav__subnav-holder {
    display: none;
  }
  .m_m-nav__subnav-item.js-subnav-item:nth-child(3n+3),
  .m_m-nav__subnav-item.js-subnav-item:nth-child(4n+4) {
    clear: none;
  }
  .m_m-nav__subnav-item.js-subnav-item:nth-child(4n+1) {
    clear: left;
  }
}
/*
<a class="m_m-subnav responsive-container responsive-container--16x9">
    <img class="m_m-subnav__image" src="[...]" alt="[...]">
    <span class="m_m-subnav__label">[...]<i class="icon-arrow_double_right-red"></i></span>
</a>
*/
.m_m-subnav {
  display: block;
}
.m_m-subnav .m_m-subnav__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.m_m-subnav .m_m-subnav__image--hover {
  display: none;
}
.m_m-subnav .m_m-subnav__label {
  font-size: 15px;
  font-size: 1.25rem;
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  left: 0;
  bottom: 0;
  max-width: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: absolute;
}
.m_m-subnav .m_m-subnav__label i {
  width: 20px;
  height: 15px;
  margin-bottom: -3px;
  padding-left: 9px;
  display: inline-block;
  background-position-x: right;
}
.m_m-subnav .m_m-subnav__label:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -543px;
  background-repeat: no-repeat;
  width: 14px;
  height: 11px;
  background-size: cover;
  display: none;
  width: 15px;
  height: 15px;
  float: left;
  right: 0;
  top: 4px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .m_m-subnav .m_m-subnav__label:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.m_m-subnav .m_m-subnav__emissions-label {
  margin-bottom: 16px;
}

@media (min-width: 501px) {
  .m_m-subnav .m_m-subnav__label {
    padding-right: 20px;
  }
  .m_m-subnav .m_m-subnav__label:after {
    display: block;
  }
}
@media (min-width: 769px) {
  .m_m-nav__subnav-item .m_m-subnav:hover .m_m-subnav__image {
    display: none;
  }
  .m_m-nav__subnav-item .m_m-subnav:hover .m_m-subnav__image--hover {
    display: block;
  }
}
.m_dealer_info {
  *zoom: 1;
  /*
      Type specific Styles
  */
}
.m_dealer_info:before, .m_dealer_info:after {
  content: "";
  display: table;
}
.m_dealer_info:after {
  clear: both;
}
.m_dealer_info p {
  margin: 0;
  padding: 0;
}
.m_dealer_info .m_dealer_info__container {
  position: relative;
}
.m_dealer_info .m_dealer_info__container--1 {
  margin-bottom: 6px;
  line-height: 0;
}
.m_dealer_info .m_dealer_info__container--2 {
  margin-bottom: 11px;
}
.m_dealer_info .m_dealer_info__container--6 {
  float: left;
  width: 100%;
}
.m_dealer_info.m_dealer_info--flyout .m_dealer_info__container--6 {
  padding-bottom: 70px;
}
.m_dealer_info.m_dealer_info--flyout .m_dealer_info__container--6 .m_m-nav__flyout-exit {
  bottom: 20px;
}
.m_dealer_info .m_dealer_info__container--5 {
  margin-top: 20px;
}
.m_dealer_info .m_dealer_info__direct-link {
  background-position: right 3px;
  background-size: 15px;
  display: inline-block;
  margin-bottom: 6px;
  padding-right: 25px;
}
.m_dealer_info .m_dealer_info__image {
  width: 100%;
}
.m_dealer_info .m_dealer_info__direct-link,
.m_dealer_info .m_dealer_info__headline,
.m_dealer_info .m_dealer_info__subline {
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-size: 13px;
  font-size: 1.0833333333rem;
  line-height: 1.3846153846;
}
.m_dealer_info .m_dealer_info__partner-list {
  margin-bottom: 8px;
}
.m_dealer_info .m_dealer_info__partner-item {
  font-size: 12px;
  font-size: 1rem;
  line-height: 1.3333333333;
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  padding-top: 2px;
  padding-bottom: 2px;
  position: relative;
}
.m_dealer_info .m_dealer_info__partner-item--sport {
  padding-left: 18px;
}
.m_dealer_info .m_dealer_info__partner-item--sport:before {
  content: "";
  width: 18px;
  height: 18px;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}
.m_dealer_info .m_dealer_info__address .address__fax {
  margin-top: 7px;
}
.m_dealer_info .m_dealer_info__address-container:first-child {
  margin-bottom: 7px;
}
.m_dealer_info .m_dealer_info__address-phone {
  margin-top: 13px;
}
.m_dealer_info .m_dealer_info__function-item {
  margin-top: 10px;
}
.m_dealer_info .m_dealer_info__partner-label .icon-raute {
  height: 10px;
  width: 19px;
  display: inline-block;
}
.m_dealer_info .m_dealer_info__function-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}
.m_dealer_info .m_dealer_info__function-list .m_dealer_info__function-item:nth-child(1) {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
.m_dealer_info .m_dealer_info__function-list .m_dealer_info__function-item:nth-child(2) {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
}
.m_dealer_info .m_dealer_info__function-list .m_dealer_info__function-item:nth-child(3) {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}
.m_dealer_info .m_dealer_info__service-list {
  *zoom: 1;
  margin-top: 20px;
}
.m_dealer_info .m_dealer_info__service-list:before, .m_dealer_info .m_dealer_info__service-list:after {
  content: "";
  display: table;
}
.m_dealer_info .m_dealer_info__service-list:after {
  clear: both;
}
.m_dealer_info.m_dealer_info--flyout .m_dealer_info__container--1 {
  margin-bottom: 16px;
}
.m_dealer_info.m_dealer_info--flyout .badge__list {
  position: static;
}
.m_dealer_info.m_dealer_info--flyout .m_dealer_info__headline,
.m_dealer_info.m_dealer_info--flyout .m_dealer_info__subline {
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  font-size: 15px;
  font-size: 1.25rem;
  line-height: 1.3333333333;
}
.m_dealer_info.m_dealer_info--flyout .m_dealer_info__headline {
  margin-bottom: 2px;
}
.m_dealer_info.m_dealer_info--contact .m_dealer_info__headline,
.m_dealer_info.m_dealer_info--contact .m_dealer_info__subline {
  font-size: 18px;
  font-size: 1.5rem;
  line-height: 1.3333333333;
}
.m_dealer_info.m_dealer_info--business {
  margin-top: 50px;
}
.m_header__flyout--topic .m_dealer_info-container--aboutUs .m_dealer_info {
  margin-top: 0px;
}

@media (min-width: 501px) {
  .m_dealer_info {
    /*
        Type specific Styles
    */
  }
  .m_dealer_info.m_dealer_info--variant-a .m_dealer_info__container--1 {
    float: left;
    margin: 0 3% 0 0;
    width: 34%;
  }
  .m_dealer_info.m_dealer_info--variant-a .m_dealer_info__container--2 {
    margin-top: -4px;
  }
  .m_dealer_info.m_dealer_info--variant-a .m_dealer_info__container--2,
  .m_dealer_info.m_dealer_info--variant-a .m_dealer_info__container--3 {
    float: left;
    width: 63%;
  }
  .m_dealer_info.m_dealer_info--variant-b .m_dealer_info__container--1 {
    float: left;
    margin: 0 5% 0 0;
    width: 47.5%;
  }
  .m_dealer_info.m_dealer_info--variant-b .m_dealer_info__container--2,
  .m_dealer_info.m_dealer_info--variant-b .m_dealer_info__container--3 {
    float: left;
    width: 47.5%;
  }
  .m_dealer_info.m_dealer_info--variant-b .m_dealer_info__address-container {
    float: none;
    margin: 0 0 13px 0;
    width: 100%;
  }
  .m_dealer_info.m_dealer_info--variant-b .m_dealer_info__address-container:first-child {
    margin-bottom: 7px;
  }
  .m_dealer_info.m_dealer_info--variant-b .m_dealer_info__address-phone {
    float: none;
    display: block;
    width: 100%;
  }
  .m_dealer_info .m_dealer_info__container--2 {
    margin-bottom: 6px;
  }
  .m_dealer_info .m_dealer_info__container-wrapper {
    clear: left;
    display: table;
    width: 100%;
    padding-top: 20px;
  }
  .m_dealer_info .m_dealer_info__container--4 {
    display: table-footer-group;
  }
  .m_dealer_info .m_dealer_info__container--5 {
    display: table-header-group;
  }
  .m_dealer_info .m_dealer_info__container--6 {
    border-top: solid 1px #b0b6b8;
    margin-top: 20px;
  }
  .m_dealer_info.m_dealer_info--flyout .m_dealer_info__container--6 {
    padding-bottom: 40px;
  }
  .m_dealer_info.m_dealer_info--flyout .m_dealer_info__container--6 .m_m-nav__flyout-exit {
    bottom: 0;
  }
  .m_dealer_info .m_dealer_info__direct-link,
  .m_dealer_info .m_dealer_info__headline,
  .m_dealer_info .m_dealer_info__subline {
    font-size: 15px;
    font-size: 1.25rem;
    line-height: 1.3333333333;
  }
  .m_dealer_info .m_dealer_info__partner-list {
    *zoom: 1;
  }
  .m_dealer_info .m_dealer_info__partner-list:before, .m_dealer_info .m_dealer_info__partner-list:after {
    content: "";
    display: table;
  }
  .m_dealer_info .m_dealer_info__partner-list:after {
    clear: both;
  }
  .m_dealer_info .m_dealer_info__partner-item,
  .m_dealer_info .m_dealer_info__address-container {
    float: left;
    width: 47.5%;
    margin-left: 5%;
  }
  .m_dealer_info .m_dealer_info__partner-item:nth-child(odd),
  .m_dealer_info .m_dealer_info__address-container:nth-child(odd) {
    margin-left: 0;
    margin-bottom: 0;
  }
  .m_dealer_info .m_dealer_info__address-phone {
    clear: left;
    float: right;
    width: 47.5%;
  }
  .m_dealer_info .m_dealer_info__function-list {
    *zoom: 1;
    margin-left: -3%;
    display: block;
  }
  .m_dealer_info .m_dealer_info__function-list:before, .m_dealer_info .m_dealer_info__function-list:after {
    content: "";
    display: table;
  }
  .m_dealer_info .m_dealer_info__function-list:after {
    clear: both;
  }
  .m_dealer_info .m_dealer_info__function-item {
    float: left;
    margin-left: 3%;
    margin-top: 20px;
  }
  .m_dealer_info .m_dealer_info__service-item {
    float: left;
    width: 30%;
    margin-left: 3%;
  }
  .m_dealer_info .m_dealer_info__service-item:nth-child(3n+1) {
    clear: left;
    margin-left: 0;
  }
  .m_dealer_info.m_dealer_info--contact .m_dealer_info__headline,
  .m_dealer_info.m_dealer_info--contact .m_dealer_info__subline {
    font-size: 18px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
  .m_dealer_info.m_dealer_info--flyout .badge__list {
    position: absolute;
  }
}
@media (min-width: 769px) {
  .m_dealer_info {
    /*
        Type specific Styles
    */
  }
  .m_dealer_info.m_dealer_info--variant-a .m_dealer_info__container {
    float: none;
    margin: 0;
    width: 100%;
  }
  .m_dealer_info.m_dealer_info--variant-a .m_dealer_info__container--1 {
    margin-bottom: 6px;
  }
  .m_dealer_info.m_dealer_info--variant-a .m_dealer_info__container--2 {
    margin-bottom: 11px;
  }
  .m_dealer_info.m_dealer_info--variant-a .btn i {
    height: 50px;
    width: 50px;
  }
  .m_dealer_info.m_dealer_info--variant-a .btn span {
    line-height: 50px;
  }
  .m_dealer_info.m_dealer_info--variant-b .m_dealer_info__container--1 {
    width: 40%;
    margin-right: 4%;
  }
  .m_dealer_info.m_dealer_info--variant-b .m_dealer_info__container--2 {
    margin-bottom: 23px;
    width: 56%;
  }
  .m_dealer_info.m_dealer_info--variant-b .m_dealer_info__container--3 {
    border-right: solid 1px #b0b6b8;
    padding: 0 5.45% 0 0;
    width: 22%;
  }
  .m_dealer_info.m_dealer_info--variant-b .m_dealer_info__container--4,
  .m_dealer_info.m_dealer_info--variant-b .m_dealer_info__container--6 {
    padding: 0 0 0 2.295%;
    width: 34%;
  }
  .m_dealer_info.m_dealer_info--variant-b .m_dealer_info__container--6 {
    margin: 0;
    border: 0;
  }
  .m_dealer_info.m_dealer_info--variant-b .m_dealer_info__headline {
    margin-bottom: 4px;
  }
  .m_dealer_info.m_dealer_info--variant-b .m_dealer_info__partner-item,
  .m_dealer_info.m_dealer_info--variant-b .m_dealer_info__address-container {
    float: none;
    width: 100%;
    margin: 0;
  }
  .m_dealer_info.m_dealer_info--variant-b.m_dealer_info--aboutUs .m_dealer_info__container--1 {
    width: 100%;
    margin-right: 0;
  }
  .m_dealer_info.m_dealer_info--variant-b.m_dealer_info--aboutUs .m_dealer_info__container--2 {
    margin-bottom: 0;
    width: 100%;
  }
  .m_dealer_info.m_dealer_info--variant-b.m_dealer_info--aboutUs .m_dealer_info__container--2 .m_dealer_info__subline {
    margin-bottom: 10px;
    margin-top: 0px;
  }
  .m_dealer_info.m_dealer_info--variant-b.m_dealer_info--aboutUs .m_dealer_info__container--2 .m_dealer_info__subline:empty {
    display: none;
  }
  .m_dealer_info.m_dealer_info--variant-b.m_dealer_info--aboutUs .m_dealer_info__container--3 {
    border-right: none;
    padding: 0;
    width: 100%;
  }
  .m_dealer_info .m_dealer_info__container--1 {
    margin-bottom: 6px;
  }
  .m_dealer_info .m_dealer_info__container--2 {
    margin-bottom: 13px;
  }
  .m_dealer_info .m_dealer_info__container-wrapper {
    padding-top: 13px;
  }
  .m_dealer_info .m_dealer_info__address-container {
    float: none;
    margin: 0;
    width: 100%;
  }
  .m_dealer_info .m_dealer_info__address-container:first-child {
    margin: 0 0 7px 0;
  }
  .m_dealer_info .m_dealer_info__direct-link,
  .m_dealer_info .m_dealer_info__headline,
  .m_dealer_info .m_dealer_info__subline {
    font-size: 15px;
    font-size: 1.25rem;
    line-height: 1.3333333333;
  }
  .m_dealer_info .m_dealer_info__partner-item {
    font-size: 13px;
    font-size: 1.0833333333rem;
    line-height: 1.3846153846;
    font-family: "AudiTypeExtBold", Verdana, sans-serif;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .m_dealer_info .m_dealer_info__function-list {
    margin: 0;
    text-align: center;
  }
  .m_dealer_info .m_dealer_info__function-item {
    float: none;
    display: inline-block;
    margin-left: 15px;
  }
  .m_dealer_info .m_dealer_info__function-item:first-child {
    margin-left: -5px;
  }
  .m_dealer_info .m_dealer_info__service-item {
    float: left;
    width: 45%;
    margin-left: 5%;
  }
  .m_dealer_info .m_dealer_info__service-item:nth-child(3n+1) {
    clear: none;
    margin-left: 5%;
  }
  .m_dealer_info .m_dealer_info__service-item:nth-child(2n+1) {
    clear: left;
    margin-left: 0;
  }
  .m_dealer_info .m_dealer_info__service-list {
    margin-top: 0;
  }
  .m_dealer_info.m_dealer_info--flyout .m_dealer_info__container--6 {
    padding-bottom: 0;
  }
  .m_dealer_info.m_dealer_info--flyout .m_dealer_info__headline,
  .m_dealer_info.m_dealer_info--flyout .m_dealer_info__subline {
    font-family: "AudiTypeExtBold", Verdana, sans-serif;
    font-size: 18px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
  .m_dealer_info.m_dealer_info--flyout .m_dealer_info__headline {
    margin-bottom: 9px;
  }
  .m_dealer_info.m_dealer_info--flyout .m_dealer_info__function-list {
    text-align: left;
  }
  .m_dealer_info.m_dealer_info--flyout .m_dealer_info__function-item {
    margin: 20px 0 0 0;
    display: block;
  }
  .m_dealer_info.m_dealer_info--flyout .m_dealer_info__function-item:first-child {
    margin-top: 0;
  }
  .m_dealer_info.m_dealer_info--contact .m_dealer_info__headline,
  .m_dealer_info.m_dealer_info--contact .m_dealer_info__subline {
    font-size: 18px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
  .m_dealer_info.m_dealer_info--contact .m_dealer_info__partner-list {
    margin-bottom: 10px;
  }
}
.vtp-footer .footer-disclaimer {
  margin-bottom: 50px;
}

.m_footer {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.m_footer .m_footer__body {
  background-color: #eef1f3;
}
.m_footer .m_footer__sitemap {
  clear: left;
}
.m_footer .m_footer__footer {
  *zoom: 1;
  color: #000;
}
.m_footer .m_footer__footer:before, .m_footer .m_footer__footer:after {
  content: "";
  display: table;
}
.m_footer .m_footer__footer:after {
  clear: both;
}
.m_footer .m_footer__copyright {
  margin-top: 15px;
  margin-bottom: 20px;
}
.m_footer hr {
  background-color: #434c53;
  border: 0;
  height: 1px;
  margin: 0;
  position: relative;
  top: -1px;
}
.m_footer .m_footer__lower-body {
  padding: 0 0 3px 0;
  border-top: 1px solid #3A4246;
  border-bottom: 1px solid #3A4246;
  position: relative;
  z-index: 1;
  margin: 0;
}
.m_footer .m_dealer_info {
  margin-bottom: -1px;
}
.m_footer .m_footer__metanavigation {
  margin-left: 0;
}
.m_footer .m_footer__socialbar {
  float: right;
  margin-top: 10px;
}
.m_footer .m_footer .m_footer__datleitfadenid {
  padding: 1rem 0 35px 0;
}
.m_footer #vtp-footer-disclaimers-target-container {
  margin-top: 15px;
}
.m_footer #vtp-footer-disclaimers-target-container sup {
  vertical-align: sup;
  font-size: smaller;
  padding-right: 5px;
}

@media (min-width: 321px) {
  .m_footer .m_dealer_info {
    margin-bottom: -1px;
  }
}
@media (min-width: 501px) {
  .m_footer .m_footer__header {
    padding: 50px 0 38px 0;
  }
  .m_footer .m_footer__supportbar {
    padding: 40px 0;
  }
  .m_footer .m_footer__lower-body {
    padding: 0 0 8px 0;
  }
  .m_footer .m_dealer_info {
    margin-bottom: 0;
  }
}
@media (min-width: 769px) {
  .m_footer .m_footer__sitemap {
    border-left: solid 1px #b0b6b8;
    clear: none;
  }
  .m_footer .m_footer__lower-body {
    padding: 15px 0 3px 0;
    margin: 0 4%;
  }
  .m_footer .m_footer__socialbar {
    margin-top: 0;
  }
}
.m_kontaktbar__item:hover .svg {
  fill: #c03;
}

.m_kontaktbar__item:hover .svg {
  fill: #8e9498;
}

.m_kontaktbar .m_kontaktbar__list {
  border-top: solid 1px #d5d9d8;
  font-size: 0;
}
.m_kontaktbar .m_kontaktbar__item {
  background-position: 4% center;
  background-size: 28px;
  border-bottom: solid 1px #d5d9d8;
  position: relative;
}
.m_kontaktbar .m_kontaktbar__item:last-child {
  border-bottom: none;
}
.m_kontaktbar .m_kontaktbar__anchor {
  display: block;
  padding: 18px 4%;
  /* tserra 12.05.2016 - removing -> position: relative; */
}
.m_kontaktbar .m_kontaktbar__anchor:hover {
  color: #000;
}
.m_kontaktbar .m_kontaktbar_icon {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 12px;
}
.m_kontaktbar .m_kontaktbar__item:hover .m_kontaktbar__label,
.m_kontaktbar .m_kontaktbar__item.is-active .m_kontaktbar__label {
  color: #c03;
}
.m_kontaktbar .m_kontaktbar__item:hover svg path,
.m_kontaktbar .m_kontaktbar__item.is-active svg path {
  fill: #c03;
}
.m_kontaktbar .m_kontaktbar__label {
  font-size: 11px;
  font-size: 0.9166666667rem;
  line-height: 1.3636363636;
  background-position: right center;
  background-size: 15px;
  display: block;
  font-family: "AudiTypeExtBold", Verdana, sans-serif;
  padding: 0 20px 0 33px;
}

.m_kontaktbar.m_kontaktbar--inverted {
  background-color: #434c53;
}
.m_kontaktbar.m_kontaktbar--inverted .m_kontaktbar__list {
  border-top: solid 1px #8e9498;
}
.m_kontaktbar.m_kontaktbar--inverted .m_kontaktbar__item {
  border-bottom: solid 1px #8e9498;
}
.m_kontaktbar.m_kontaktbar--inverted .m_kontaktbar__item:hover .m_kontaktbar__label {
  color: #b0b6b8;
}
.m_kontaktbar.m_kontaktbar--inverted .m_kontaktbar__label {
  color: #ffffff;
}

@media (min-width: 501px) {
  .m_kontaktbar .m_kontaktbar__list {
    *zoom: 1;
    border-top: 0;
    margin: 0 4%;
    text-align: center;
  }
  .m_kontaktbar .m_kontaktbar__list:before, .m_kontaktbar .m_kontaktbar__list:after {
    content: "";
    display: table;
  }
  .m_kontaktbar .m_kontaktbar__list:after {
    clear: both;
  }
  .m_kontaktbar .m_kontaktbar__item {
    background-position: center 17px;
    background-size: 45px;
    border-bottom: 0;
    border-left: solid 1px #d5d9d8;
    display: inline-block;
    vertical-align: top;
    width: 20%;
  }
  .m_kontaktbar .m_kontaktbar__item:first-child {
    border-left: 0;
  }
  .m_kontaktbar .m_kontaktbar__anchor {
    height: 117px;
    padding: 14px 0 0;
    margin: 0 10px;
  }
  .m_kontaktbar .m_kontaktbar_icon {
    width: 50px;
    height: 50px;
    position: static;
  }
  .m_kontaktbar .m_kontaktbar__label {
    font-size: 10px;
    font-size: 0.8333333333rem;
    line-height: 1.5;
    background: 0;
    padding: 0;
    margin-top: 3px;
    text-align: center;
  }
  .m_kontaktbar.m_kontaktbar--inverted .m_kontaktbar__list {
    border-top: 0;
  }
  .m_kontaktbar.m_kontaktbar--inverted .m_kontaktbar__item {
    border-bottom: 0;
  }
  .m_kontaktbar.m_kontaktbar--inverted .m_kontaktbar__label {
    background: 0;
  }
  .m_kontaktbar.m_kontaktbar--equal-columns .m_kontaktbar__item {
    float: left;
    margin-right: 0;
  }
  .m_kontaktbar.m_kontaktbar--equal-columns .m_kontaktbar__item:first-child:nth-last-child(3),
  .m_kontaktbar.m_kontaktbar--equal-columns .m_kontaktbar__item:first-child:nth-last-child(3) ~ .m_kontaktbar__item {
    width: 100%/3;
  }
  .m_kontaktbar.m_kontaktbar--equal-columns .m_kontaktbar__item:first-child:nth-last-child(4),
  .m_kontaktbar.m_kontaktbar--equal-columns .m_kontaktbar__item:first-child:nth-last-child(4) ~ .m_kontaktbar__item {
    width: 100%/4;
  }
  .m_kontaktbar.m_kontaktbar--equal-columns .m_kontaktbar__item:first-child:nth-last-child(5),
  .m_kontaktbar.m_kontaktbar--equal-columns .m_kontaktbar__item:first-child:nth-last-child(5) ~ .m_kontaktbar__item {
    width: 100%/5;
  }
}
@media (min-width: 769px) {
  .m_kontaktbar .m_kontaktbar__anchor {
    height: 123px;
  }
  .m_kontaktbar .m_kontaktbar__label {
    font-size: 13px;
    font-size: 1.0833333333rem;
    line-height: 1.3846153846;
    -webkit-transition: color 0.1s;
    -o-transition: color 0.1s;
    transition: color 0.1s;
  }
  .m_kontaktbar.m_kontaktbar--inverted .m_kontaktbar__anchor:hover .m_kontaktbar__label {
    color: #b0b6b8;
  }
}
/*
 * STYLES FOR WHEN USED IN FLY-OUT
 */
.m_kontaktbar .m_kontaktbar__list {
  margin: 0;
}

.m_metanavigation {
  margin: 10px 0 0;
}
.m_metanavigation .m_metanavigation__list {
  *zoom: 1;
}
.m_metanavigation .m_metanavigation__list:before, .m_metanavigation .m_metanavigation__list:after {
  content: "";
  display: table;
}
.m_metanavigation .m_metanavigation__list:after {
  clear: both;
}
.m_metanavigation .m_metanavigation__item {
  float: left;
  margin: 6px 0;
  width: 100%;
}
.m_metanavigation .m_metanavigation__anchor {
  font-family: "AudiTypeExtNormal", Verdana, sans-serif;
}

@media (min-width: 501px) {
  .m_metanavigation .m_metanavigation__list {
    margin-left: -20px;
  }
  .m_metanavigation .m_metanavigation__item {
    margin: 15px 20px;
    width: auto;
  }
}
@media (min-width: 769px) {
  .m_metanavigation {
    margin: 0;
  }
  .m_metanavigation .m_metanavigation__list {
    margin-left: -15px;
  }
  .m_metanavigation .m_metanavigation__item {
    margin: 10px 15px;
  }
  .m_metanavigation .m_metanavigation__anchor {
    -webkit-transition: color 0.1s;
    -o-transition: color 0.1s;
    transition: color 0.1s;
  }
  .m_metanavigation .m_metanavigation__anchor:hover {
    color: #b0b6b8;
  }
}
/*
<div class="m_socialbar" id="[...]">
    <ul class="m_socialbar__list">
        <li class="m_socialbar__item">
            <a href="#" class="m_socialbar__anchor m_socialbar__anchor-[facebook|youtube|twitter|google-plus|pinterest|instagram]">[...]</a>
        </li>
    </ul>
</div>
*/
.m_socialbar {
  margin: 10px;
  *zoom: 1;
}
.m_socialbar:before, .m_socialbar:after {
  content: "";
  display: table;
}
.m_socialbar:after {
  clear: both;
}
.m_socialbar .m_socialbar__list {
  *zoom: 1;
  float: left;
  margin: 0 -5px;
}
.m_socialbar .m_socialbar__list:before, .m_socialbar .m_socialbar__list:after {
  content: "";
  display: table;
}
.m_socialbar .m_socialbar__list:after {
  clear: both;
}
.m_socialbar .m_socialbar__item {
  float: right;
  margin: 0 5px 5px;
}
.m_socialbar .m_socialbar__anchor {
  background-color: #000;
  background-size: cover;
  display: block;
  height: 40px;
  width: 40px;
}
.m_socialbar .m_socialbar_icon {
  width: 100%;
  height: 100%;
  max-width: 40px;
  max-height: 40px;
}
@media (min-width: 501px) {
  .m_socialbar {
    margin-bottom: 0;
  }
  .m_socialbar .m_socialbar__list {
    margin: 0 -10px;
  }
  .m_socialbar .m_socialbar__item {
    margin: 0 10px 10px;
  }
}
@media (min-width: 769px) {
  .m_socialbar .m_socialbar__list {
    float: right;
  }
}
@media print {
  .vtp-page-compare .vtp-fixedsticky-teaser {
    position: static !important;
    top: 0 !important;
  }
  .vtp-page-compare .teaser-info h3 {
    font-size: 15px;
    font-size: 1.25rem;
  }
  .vtp-header-print {
    position: relative;
    max-width: 1280px;
    clear: both;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 4%;
    padding-right: 4%;
  }
  .vtp-compare-head,
  .vtp-compare-table {
    -webkit-print-color-adjust: exact;
  }
  .vtp-compare-head.fixedsticky-on,
  .vtp-compare-table.fixedsticky-on {
    position: static;
  }
  .vtp-compare-head.fixedsticky-on .container,
  .vtp-compare-table.fixedsticky-on .container {
    padding-left: 0;
    padding-right: 0;
  }
  .vtp-compare-head {
    padding-top: 0;
  }
  .vtp-page-compare .fixedsticky-dummy,
  .vtp-compare-head a[href]:after,
  .vtp-compare-head .vtp-icon-favstar {
    display: none !important;
  }
  .vtp-compare-head .icon {
    display: none !important;
  }
  .vtp-compare-head h3 {
    clear: both;
    float: none;
  }
  .vtp-compare-head .vtp-carousel > ul > li {
    padding-left: 0;
  }
  .vtp-compare-item {
    display: inline-block;
    border: none !important;
  }
  .vtp-compare-table table {
    font-size: 12px !important;
  }
  .vtp-compare-head-bar .container:after {
    border-color: #828282;
  }
  .vtp-compare-table .icn-true {
    background: none !important;
  }
  .vtp-compare-table .icn-true {
    margin-top: -4px;
  }
  .vtp-compare-table table {
    margin-bottom: 2em;
  }
  .vtp-compare-table table .vtp-link, .vtp-compare-table table .vtp-breadcrumb-item {
    display: none !important;
  }
  .vtp-compare-table th,
  .vtp-compare-table td {
    border: none;
  }
  .vtp-compare-table table tbody {
    display: table-row-group !important;
  }
  .vtp-compare-table table tbody th, .vtp-compare-table table tbody td {
    padding-top: 1em;
  }
  .vtp-compare-table table tbody tr:first-child th,
  .vtp-compare-table table tbody tr:first-child td {
    border-top: 1px solid #828282 !important;
  }
  .vtp-compare-table table thead {
    background-color: transparent !important;
  }
  .vtp-compare-table table thead .icn-toggle {
    display: none !important;
  }
  .vtp-compare-table table .sub-head {
    padding-left: 10px !important;
  }
  .vtp-compare-table table td,
  .vtp-compare-table table th {
    background-color: transparent !important;
    font-size: 12px;
    font-size: 1rem;
    padding: 0 10px 8px 0;
    text-align: left;
  }
  .vtp-compare-table tr:last-child {
    border: none;
  }
  .vtp-compare-table table thead td {
    font-size: 14px;
    font-size: 1.1666666667rem;
    width: 25% !important;
  }
  .vtp-compare-table table td {
    width: 25% !important;
  }
  .vtp-compare-table .toggle-all {
    display: none;
  }
  .vtp-page-compare .rate .has-info {
    display: none !important;
  }
  .vtp-page-compare .printRate-icon {
    display: inline-block !important;
    width: 15px;
    height: 15px;
  }
  .vtp-page-compare .printRate {
    display: block;
    clear: both;
  }
}
@media print {
  .vtp-page-detail {
    padding: 40px 0;
  }
  .vtp-page-detail .vtp-highlights [class*=module-highlights-item] {
    display: none;
  }
  .vtp-page-detail .vtp-codes .vtp-codes-audi-code .vtp-codes-audi-code-headline {
    font-size: 15px;
  }
  .vtp-page-detail .vtp-print-page-first,
  .vtp-page-detail .vtp-print-page {
    min-height: 0 !important;
  }
  .vtp-page-detail .vtp-car-info h3 {
    border: none !important;
    margin: 0 0 8px 0;
  }
  .vtp-page-detail .vtp-car-info .dealer {
    width: 100%;
  }
  .vtp-page-detail .vtp-car-info .offer,
  .vtp-page-detail .vtp-car-info .offer strong,
  .vtp-page-detail .vtp-car-info .offer small,
  .vtp-page-detail .vtp-car-info .offer span,
  .vtp-page-detail .vtp-car-info .offer a {
    line-height: 1.5 !important;
  }
  .vtp-page-detail .vtp-car-info .description {
    margin-top: 24px;
    text-align: left;
  }
  .vtp-page-detail .vtp-car-info .description.print-only {
    font-family: Verdana, sans-serif;
    font-size: 12px;
  }
  .vtp-page-detail .vtp-highlights .module-highlights-item-audi-plus dt span {
    display: block;
  }
  .vtp-page-detail .vtp-highlights {
    font-size: 12px;
  }
  .vtp-page-detail .vtp-description-list-wrap dl {
    margin-bottom: 14px !important;
  }
  .vtp-page-detail .vtp-description-list-wrap dl dd {
    line-height: 1.3em;
    text-align: justify;
  }
  .vtp-page-detail .vtp-description-further-info {
    margin-top: 36px;
  }
  .vtp-page-detail .vtp-highlights [class*=module-highlights-item] dd,
  .vtp-page-detail .vtp-highlights [class*=module-highlights-item] dt {
    font-size: 10px !important;
  }
  .vtp-page-detail .vtp-features,
  .vtp-page-detail .vtp-dealer-info-no-map {
    padding-bottom: 16px;
  }
  .vtp-page-detail .vtp-features {
    margin-top: -40px;
  }
  .vtp-page-detail #features-extended {
    margin-top: -40px;
  }
  .vtp-page-detail .vtp-highlights [class*=module-highlights-item]:nth-of-type(3n+1) {
    padding-left: 40px;
  }
  .vtp-page-detail .dealer-imprint {
    margin-bottom: 24px !important;
  }
  .vtp-page-detail .dealer-imprint h1.h3, .vtp-page-detail .dealer-imprint h1.lead, .vtp-page-detail .dealer-imprint .vtp-range-slider h1.slider-label, .vtp-range-slider .vtp-page-detail .dealer-imprint h1.slider-label, .vtp-page-detail .dealer-imprint .vtp-dealer-info-box h1.name, .vtp-dealer-info-box .vtp-page-detail .dealer-imprint h1.name {
    border-top: solid 2px #cdd0d2;
    margin-top: -24px;
    margin-top: -2rem;
    padding-top: 36px;
    padding-top: 3rem;
  }
  .vtp-page-detail .vtp-icon-plakette-4 {
    display: none;
    -webkit-print-color-adjust: exact;
  }
  .vtp-page-detail .vtp-plakette.print-only {
    display: block;
    width: 34px;
  }
  .vtp-page-detail .vtp-section.seperated .container:before {
    border: none;
  }
  .vtp-page-detail .vtp-features,
  .vtp-page-detail .vtp-technical-data,
  .vtp-page-detail .vtp-dealer-info-no-map,
  .vtp-page-detail .vtp-highlights,
  .vtp-page-detail #features-extended,
  .vtp-page-detail footer {
    margin-top: 0 !important;
    padding-top: 36px !important;
  }
  .vtp-page-detail .vtp-feature-teaser {
    page-break-inside: avoid;
  }
  .vtp-page-detail .vtp-feature-teaser picture {
    background-color: #e7e9ea;
    border: 1px solid #e7e9ea;
  }
  .vtp-page-detail .vtp-highlights dl:before {
    background: none !important;
    display: none !important;
  }
  .vtp-page-detail .vtp-highlights dl dt > .print-only {
    display: block;
    float: left;
    min-height: 45px;
    margin: -3px 20px 0 0;
    overflow: hidden;
    width: 45px;
  }
  .vtp-page-detail .vtp-highlights dl dt > .print-only-detailpage img {
    width: 45px;
  }
  .vtp-page-detail .vtp-highlights dl dt > .print-only-common img {
    width: 45px;
  }
  .vtp-page-detail .vtp-highlights dl.module-highlights-item-seatcover dt > .print-only img {
    width: 34px;
  }
  .vtp-page-detail .vtp-highlights table.print-only {
    display: table;
    margin-bottom: 40px;
    margin-top: -20px;
  }
  .vtp-page-detail .vtp-highlights table.print-only tr {
    margin: 0 0 20px 0;
  }
  .vtp-page-detail .vtp-highlights table.print-only tr td img {
    width: 45px;
  }
  .vtp-page-detail .vtp-highlights table.print-only tr td {
    clear: both;
    padding-top: 24px;
    vertical-align: top;
    width: 25%;
  }
  .vtp-page-detail .vtp-highlights table.print-only tr td div {
    float: left;
    text-align: left;
    font-size: 10px;
    padding: 0 0 0 8px;
  }
  .vtp-page-detail .vtp-highlights table.print-only tr td div.vtp-icon {
    width: 45px;
  }
  .vtp-page-detail .vtp-highlights table.print-only tr td div.vtp-description {
    width: 80%;
  }
  .vtp-page-detail .vtp-highlights table.print-only tr td > span,
  .vtp-page-detail .vtp-highlights table.print-only tr td strong {
    display: block;
  }
  .vtp-page-detail .vtp-highlights table.print-only tr td div:first-child {
    float: left;
    width: 45px;
  }
  .vtp-page-detail .vtp-highlights table.print-only tr td.table-highlights-item-seatcover img {
    width: 34px;
  }
  .vtp-page-detail .vtp-modal.dealer-imprint {
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-page-detail .vtp-modal.dealer-imprint h1,
  .vtp-page-detail .vtp-modal.dealer-imprint .dealer-imprint-info {
    display: none !important;
  }
  .vtp-page-detail .vtp-modal.dealer-imprint .dealer-imprint-imprint {
    border-width: 2px;
    margin-top: 0;
    padding-top: 2em;
  }
  .vtp-page-detail .vtp-modal.dealer-imprint .dealer-imprint-imprint h5 {
    font-family: "AudiTypeExtNormal", Verdana, sans-serif;
    font-size: 18px;
  }
  .vtp-page-detail .sup a, .vtp-page-detail sup a {
    font-size: 8px;
  }
  .vtp-page-detail iframe {
    display: none;
  }
}
@media print {
  .vtp-header-print {
    position: relative;
    max-width: 1280px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 4%;
    padding-right: 4%;
  }
  .vtp-favorites {
    -webkit-print-color-adjust: exact;
  }
  .vtp-favorites a[href]:after {
    display: none !important;
  }
  .vtp-favorites .car-teaser-options,
  .vtp-favorites .favorites-user-info,
  .vtp-favorites .vtp-compare-link,
  .vtp-favorites .vtp-mini-select {
    display: none;
  }
  .vtp-favorites article {
    page-break-inside: avoid;
  }
  .vtp-favorites article .details {
    min-height: 170px;
  }
  .vtp-favorites article .details > p i {
    display: none;
  }
  .vtp-favorites article .details > p img {
    background-color: transparent;
    display: block;
    height: 30px;
    left: 0;
    margin: 0;
    position: relative;
    top: 0;
    width: 30px;
    page-break-inside: avoid;
  }
  .vtp-favorites article .details h3 {
    float: none;
  }
  .vtp-favorites article .details h3 .icon {
    display: none !important;
  }
  .vtp-favorites article .details .description {
    display: block;
  }
  .vtp-favorites article .details .product-extras img.vtp-icon {
    background-color: transparent;
    display: block;
    margin: 0 0 0 0;
    position: relative;
    width: 60px;
  }
  .vtp-favorites article .details .product-extras i {
    display: none !important;
  }
  .vtp-favorites article .media .favorites-link {
    display: none !important;
  }
  .vtp-favorites article .media .image-container, .vtp-favorites article .media img {
    page-break-inside: avoid;
  }
  .vtp-favorites .vtp-favorites-toolbar,
  .vtp-favorites .vtp-list-view .vtp-results-view .car-teaser,
  .vtp-favorites .vtp-list-view .vtp-results-view .similar-car-item {
    border-color: #828282;
  }
  .vtp-favorites .sups {
    display: block;
    margin-top: 10px;
    page-break-before: always;
  }
  .vtp-favorites .printRate-icon {
    display: inline-block !important;
    width: 15px;
    height: 15px;
  }
  .vtp-favorites .printRate {
    display: block;
    clear: both;
    margin-bottom: 10px;
  }
}
.vtp-page-results .printonly {
  display: none;
}

@media print {
  body.noscroll {
    overflow: auto !important;
    position: static !important;
  }
  .vtp-page-results {
    -webkit-print-color-adjust: exact;
  }
  .vtp-page-results .vtp-header-print {
    position: relative;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 4%;
    padding-right: 4%;
  }
  .vtp-page-results .vtp-icon-favstar,
  .vtp-page-results .vtp-teaser-module,
  .vtp-page-results .vtp-breadcrumbs,
  .vtp-page-results .vtp-filter-breadcrumb,
  .vtp-page-results .save-search-btn-container,
  .vtp-page-results .reset-search-btn-container,
  .vtp-page-results .vtp-results-toolbar .vtp-list-view-chooser,
  .vtp-page-results .vtp-results-toolbar .vtp-compare-link,
  .vtp-page-results .vtp-results-toolbar .vtp-mini-select,
  .vtp-page-results .vtp-results-toolbar .vtp-discussion-link {
    display: none;
  }
  .vtp-page-results article .details {
    min-height: 170px;
  }
  .vtp-page-results article .details h3 {
    float: none;
  }
  .vtp-page-results article .details h3 .icon {
    display: none !important;
  }
  .vtp-page-results .sups {
    display: block;
    margin-top: 10px;
  }
  .vtp-page-results .vtp-list-view .description {
    clear: both;
  }
  .vtp-page-results .vtp-grid-view article {
    border-bottom: solid 1px #828282;
    float: none;
    page-break-inside: avoid;
    width: 100%;
  }
  .vtp-page-results .vtp-grid-view .vtp-results-view {
    position: relative;
    display: block;
    float: none;
  }
  .vtp-page-results .vtp-grid-view .vtp-results-view > article {
    float: none;
    position: relative;
    display: block;
    page-break-inside: avoid;
    width: 100%;
  }
  .vtp-page-results .vtp-grid-view .car-teaser > div:first-child, .vtp-page-results .vtp-grid-view .similar-car-item > div:first-child {
    width: 15%;
  }
  .vtp-page-results .vtp-grid-view .media,
  .vtp-page-results .vtp-grid-view .details {
    float: left;
    position: relative;
  }
  .vtp-page-results .vtp-grid-view .media {
    width: 20%;
  }
  .vtp-page-results .vtp-grid-view .media .image-container, .vtp-page-results .vtp-grid-view .media img {
    page-break-inside: avoid;
  }
  .vtp-page-results .vtp-grid-view .details {
    padding-left: 20px;
    width: 80%;
    position: relative;
  }
  .vtp-page-results .vtp-grid-view .details h3 {
    clear: both;
    float: none;
  }
  .vtp-page-results .vtp-grid-view .envkv {
    display: none;
  }
  .vtp-page-results .vtp-grid-view .car-teaser-options {
    border-top: none;
    border-bottom: none;
  }
  .vtp-page-results .vtp-grid-view .product-extras {
    position: unset;
  }
  .vtp-page-results .vtp-grid-view .product-extras .left-icons {
    position: absolute;
    top: 0;
    right: 0;
  }
  .vtp-page-results .vtp-grid-view .vtp-wltp-nefz-consumptions {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
  .vtp-page-results .vtp-grid-view .vtp-wltp-nefz-consumptions p {
    margin-right: 12px;
  }
  .vtp-page-results .vtp-grid-view .envkv.printonly {
    display: block;
    font-family: Verdana, sans-serif;
    position: relative;
    top: 0;
    left: 0;
    font-size: 10px;
  }
  .vtp-page-results .vtp-grid-view .envkv.printonly.noicon .envkv-info {
    left: auto;
  }
  .vtp-page-results .vtp-grid-view .envkv.printonly .envkv-info {
    top: -1px;
    left: 46px;
  }
  .vtp-page-results .vtp-grid-view .envkv.noicon {
    padding-left: 0;
  }
  .vtp-page-results .printRate-icon {
    display: inline-block !important;
    width: 15px;
    height: 15px;
  }
  .vtp-page-results .printRate {
    clear: both;
    display: block;
    margin-bottom: 10px;
  }
}
@media print {
  .vtp-results-page .resultstyle-jpapproach .car-teaser-aaa, .vtp-favorites .resultstyle-jpapproach .car-teaser-aaa {
    top: 0;
    right: 0;
    position: relative;
    margin-bottom: 20px;
    width: 50px !important;
  }
  .vtp-results-page .resultstyle-jpapproach .details, .vtp-favorites .resultstyle-jpapproach .details {
    position: relative;
    min-height: 150px;
  }
  .vtp-results-page .resultstyle-jpapproach .dealer-link, .vtp-favorites .resultstyle-jpapproach .dealer-link {
    margin-top: 50px;
  }
  .vtp-results-page .resultstyle-jpapproach .special-offer, .vtp-results-page .resultstyle-jpapproach .contact-dealer, .vtp-favorites .resultstyle-jpapproach .special-offer, .vtp-favorites .resultstyle-jpapproach .contact-dealer {
    display: none;
  }
  .vtp-results-page .resultstyle-jpapproach .finance-data .printRate, .vtp-favorites .resultstyle-jpapproach .finance-data .printRate {
    display: inline !important;
  }
  .vtp-results-page .resultstyle-jpapproach .printRate, .vtp-favorites .resultstyle-jpapproach .printRate {
    width: 95%;
  }
}

@media print {
  .resultstyle-ukapproach .media, .resultstyle-caapproach .media, .resultstyle-jpapproach .media {
    margin-bottom: 10px;
  }
  .resultstyle-ukapproach .vtp-results-view .car-teaser > div.details, .resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details, .resultstyle-caapproach .vtp-results-view .car-teaser > div.details, .resultstyle-caapproach .vtp-results-view .similar-car-item > div.details, .resultstyle-jpapproach .vtp-results-view .car-teaser > div.details, .resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details {
    padding-right: 0 !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .special-offer, .resultstyle-caapproach .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .special-offer, .resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .special-offer, .resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .special-offer {
    float: right;
  }
  .resultstyle-ukapproach .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details .dealer-link, .resultstyle-caapproach .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-caapproach .vtp-results-view .similar-car-item > div.details .dealer-link, .resultstyle-jpapproach .vtp-results-view .car-teaser > div.details .dealer-link, .resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details .dealer-link {
    text-align: right;
    clear: both;
    width: 100%;
  }
  .resultstyle-ukapproach .vtp-results-view .car-teaser > div.details footer, .resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details footer, .resultstyle-caapproach .vtp-results-view .car-teaser > div.details footer, .resultstyle-caapproach .vtp-results-view .similar-car-item > div.details footer, .resultstyle-jpapproach .vtp-results-view .car-teaser > div.details footer, .resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details footer {
    position: absolute;
    bottom: 10px;
    right: 0;
    padding-right: 0;
  }
  .resultstyle-ukapproach .vtp-results-view .car-teaser > div.details footer label, .resultstyle-ukapproach .vtp-results-view .similar-car-item > div.details footer label, .resultstyle-caapproach .vtp-results-view .car-teaser > div.details footer label, .resultstyle-caapproach .vtp-results-view .similar-car-item > div.details footer label, .resultstyle-jpapproach .vtp-results-view .car-teaser > div.details footer label, .resultstyle-jpapproach .vtp-results-view .similar-car-item > div.details footer label {
    white-space: nowrap;
  }
  .resultstyle-ukapproach .result-listview-left-column, .resultstyle-caapproach .result-listview-left-column, .resultstyle-jpapproach .result-listview-left-column {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .resultstyle-ukapproach .result-listview-right-column, .resultstyle-caapproach .result-listview-right-column, .resultstyle-jpapproach .result-listview-right-column {
    width: 50%;
  }
  .resultstyle-ukapproach .car-teaser .price-grid, .resultstyle-ukapproach .similar-car-item .price-grid, .resultstyle-caapproach .car-teaser .price-grid, .resultstyle-caapproach .similar-car-item .price-grid, .resultstyle-jpapproach .car-teaser .price-grid, .resultstyle-jpapproach .similar-car-item .price-grid {
    display: none;
  }
  .resultstyle-ukapproach .car-teaser .price-list, .resultstyle-ukapproach .similar-car-item .price-list, .resultstyle-caapproach .car-teaser .price-list, .resultstyle-caapproach .similar-car-item .price-list, .resultstyle-jpapproach .car-teaser .price-list, .resultstyle-jpapproach .similar-car-item .price-list {
    text-align: right;
    font-size: 15px;
    margin-bottom: 2.4rem;
    display: block;
  }
}

.no-csshyphens {
  word-wrap: break-word;
  white-space: normal;
}

.vtp-leasingmatrix .table-condensed td {
  font-size: 90%;
  background-color: #fff;
  vertical-align: bottom;
  padding: 15px 4px 15px 4px;
}
.vtp-leasingmatrix .table-condensed td.active {
  background-color: #e7e9ea;
}
.vtp-leasingmatrix .table-condensed tbody tr:nth-child(2) td {
  font-weight: 700;
}
.vtp-leasingmatrix .table-condensed tbody td:first-child {
  font-weight: 700;
}
.vtp-leasingmatrix .table-condensed .leasingmatrix-hd-col {
  width: 35px;
}
.vtp-leasingmatrix .table-condensed .leasingmatrix-ll-col {
  width: 30px;
}
.vtp-leasingmatrix .table-condensed .leasingmatrix-hd-text {
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  display: block;
  white-space: nowrap;
  text-align: left;
  padding: 5px 0px;
}
.vtp-leasingmatrix .table-condensed .leasingmatrix-ll-td {
  font-weight: 700;
  border-left: 0px;
  padding-left: 35px;
  font-size: 100%;
}
.vtp-leasingmatrix .table-condensed .leasingmatrix-hd-td {
  font-weight: 700;
  border-right: 0px;
  font-size: 100%;
}

.leasingmatrix-grid {
  display: none;
}
@media only screen and (max-width: 568px) {
  .leasingmatrix-grid {
    display: block;
  }
}

.leasingmatrix-bg {
  display: block;
}
@media only screen and (max-width: 568px) {
  .leasingmatrix-bg {
    display: none;
  }
}

.vtp-rentmatrix .leasingmatrix-grid, .vtp-leasingmatrix .leasingmatrix-grid {
  *zoom: 1;
}
.vtp-rentmatrix .leasingmatrix-grid:before, .vtp-leasingmatrix .leasingmatrix-grid:before, .vtp-rentmatrix .leasingmatrix-grid:after, .vtp-leasingmatrix .leasingmatrix-grid:after {
  content: "";
  display: table;
}
.vtp-rentmatrix .leasingmatrix-grid:after, .vtp-leasingmatrix .leasingmatrix-grid:after {
  clear: both;
}
.vtp-rentmatrix .leasingmatrix-grid > li, .vtp-leasingmatrix .leasingmatrix-grid > li {
  float: left;
  clear: none;
  width: 24.95%;
  margin-left: 0;
  margin-right: 0;
}
.vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(n), .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(n) {
  margin-right: 0;
  float: left;
  clear: none;
}
.vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(4n), .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(4n + 1), .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(4n + 1) {
  clear: both;
}
@media only screen and (max-width: 940px) {
  .vtp-rentmatrix .leasingmatrix-grid > li, .vtp-leasingmatrix .leasingmatrix-grid > li {
    float: left;
    clear: none;
    width: 33.2666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(4n), .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(4n) {
    margin-right: 0;
    float: left;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(4n + 1), .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(4n + 1) {
    clear: none;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(n), .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(3n), .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(3n + 1), .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-rentmatrix .leasingmatrix-grid > li, .vtp-leasingmatrix .leasingmatrix-grid > li {
    float: left;
    clear: none;
    width: 33.2666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(4n), .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(4n) {
    margin-right: 0;
    float: left;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(4n + 1), .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(4n + 1) {
    clear: none;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(n), .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(3n), .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(3n + 1), .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid > li, .vtp-leasingmatrix .leasingmatrix-grid > li {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:first-child, .vtp-leasingmatrix .leasingmatrix-grid > li:first-child {
    margin-left: auto;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:last-child, .vtp-leasingmatrix .leasingmatrix-grid > li:last-child {
    margin-right: auto;
  }
}

.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid, .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid {
  *zoom: 1;
}
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid:before, .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid:before, .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid:after, .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid:after {
  content: "";
  display: table;
}
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid:after, .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid:after {
  clear: both;
}
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li, .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li {
  float: left;
  clear: none;
  width: 24.95%;
  margin-left: 0;
  margin-right: 0;
}
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(n), .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(n) {
  margin-right: 0;
  float: left;
  clear: none;
}
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(4n), .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(4n + 1), .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(4n + 1) {
  clear: both;
}
@media only screen and (max-width: 940px) {
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li, .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li {
    float: left;
    clear: none;
    width: 33.2666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(4n), .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(4n) {
    margin-right: 0;
    float: left;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(4n + 1), .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(4n + 1) {
    clear: none;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(n), .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(3n), .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(3n + 1), .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li, .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li {
    float: left;
    clear: none;
    width: 49.9%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(3n), .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(3n) {
    margin-right: 0;
    float: left;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(3n + 1), .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(3n + 1) {
    clear: none;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(n), .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(2n), .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(2n + 1), .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(2n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li, .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:first-child, .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:first-child {
    margin-left: auto;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:last-child, .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:last-child {
    margin-right: auto;
  }
}

.vtp-leasingmatrix .leasingmatrix-grid {
  clear: both;
  position: relative;
  overflow: hidden;
}
.vtp-leasingmatrix .leasingmatrix-grid .collapse-toggle {
  background-color: white;
  background-size: auto 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-bottom: none;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.vtp-leasingmatrix .leasingmatrix-grid .collapse-toggle:after {
  display: none;
}
@media only screen and (max-width: 568px) {
  .vtp-leasingmatrix .leasingmatrix-grid .collapse-toggle {
    padding-top: 19px;
    padding-top: 1.5833333333rem;
    font-size: 12px;
    font-size: 1rem;
    padding-bottom: 16px;
    padding-bottom: 1.3333333333rem;
    background: #e7e9ea;
    border-bottom: 1px solid #cdd0d2;
    cursor: pointer;
    font-family: "AudiTypeExtBold", Verdana, sans-serif;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0;
    padding-left: 4%;
    position: relative;
    left: 0;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    background: white;
    padding-left: 0;
  }
  .vtp-leasingmatrix .leasingmatrix-grid .collapse-toggle:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -172px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
    content: "";
    position: absolute;
    right: 4%;
    top: 50%;
    margin-top: -4px;
    display: block;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-leasingmatrix .leasingmatrix-grid .collapse-toggle:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-leasingmatrix .leasingmatrix-grid .collapse-toggle.active:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -226px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-leasingmatrix .leasingmatrix-grid .collapse-toggle.active:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-leasingmatrix .leasingmatrix-grid .collapse-toggle:after {
    right: 2px;
    background-image: url(../images/sprite-common.png);
    background-position: 0px -226px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-leasingmatrix .leasingmatrix-grid .collapse-toggle:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-leasingmatrix .leasingmatrix-grid .collapse-toggle.active:after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="1"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="2"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="3"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="4"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="5"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="6"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="7"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="8"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="9"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="10"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="11"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="12"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="13"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="14"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="15"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="16"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="17"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="18"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="19"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="20"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="21"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="22"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="23"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="24"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="25"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="26"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="27"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="28"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="29"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="30"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="31"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="32"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="33"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="34"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="35"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="36"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="37"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="38"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="39"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="40"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="41"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="42"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="43"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="44"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="45"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="46"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="47"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="48"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="49"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="50"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-leasingmatrix .leasingmatrix-grid > li:last-child .collapse-toggle:not(.active) {
  border-bottom: none;
}
.vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var {
  margin-left: 0;
}
@media only screen and (max-width: 568px) {
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var {
    padding-bottom: 20px;
    padding-bottom: 1.6666666667rem;
    text-align: center;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var.in {
    border-bottom: 1px solid #cdd0d2;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var .leasingmatrix-result-grid > li {
    text-align: left;
  }
}
.vtp-leasingmatrix .leasingmatrix-grid > li:last-child .vtp-leasingmatrix-var.in {
  border-bottom: none;
}
.vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(4n+2) .vtp-leasingmatrix-var {
  margin-left: -100%;
}
.vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(4n+3) .vtp-leasingmatrix-var {
  margin-left: -200%;
}
.vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(4n+4) .vtp-leasingmatrix-var {
  margin-left: -300%;
}
@media only screen and (max-width: 940px) {
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="1"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="2"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="3"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="4"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="5"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="6"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="7"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="8"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="9"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="10"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="11"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="12"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="13"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="14"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="15"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="16"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="17"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="18"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="19"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="20"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="21"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="22"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="23"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="24"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="25"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="26"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="27"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="28"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="29"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="30"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="31"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="32"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="33"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="34"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="35"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="36"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="37"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="38"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="39"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="40"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="41"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="42"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="43"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="44"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="45"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="46"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="47"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="48"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="49"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="50"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(3n+1) .vtp-leasingmatrix-var {
    margin-left: 0;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(3n+2) .vtp-leasingmatrix-var {
    margin-left: -100%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(3n+3) .vtp-leasingmatrix-var {
    margin-left: -200%;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="1"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="2"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="3"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="4"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="5"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="6"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="7"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="8"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="9"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="10"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="11"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="12"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="13"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="14"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="15"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="16"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="17"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="18"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="19"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="20"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="21"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="22"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="23"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="24"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="25"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="26"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="27"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="28"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="29"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="30"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="31"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="32"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="33"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="34"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="35"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="36"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="37"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="38"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="39"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="40"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="41"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="42"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="43"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="44"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="45"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="46"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="47"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="48"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="49"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="50"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(3n+1) .vtp-leasingmatrix-var {
    margin-left: 0;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(3n+2) .vtp-leasingmatrix-var {
    margin-left: -100%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(3n+3) .vtp-leasingmatrix-var {
    margin-left: -200%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-leasingmatrix .leasingmatrix-grid > li {
    overflow: visible;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="1"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="2"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="3"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="4"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="5"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="6"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="7"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="8"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="9"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="10"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="11"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="12"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="13"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="14"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="15"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="16"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="17"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="18"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="19"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="20"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="21"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="22"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="23"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="24"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="25"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="26"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="27"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="28"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="29"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="30"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="31"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="32"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="33"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="34"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="35"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="36"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="37"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="38"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="39"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="40"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="41"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="42"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="43"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="44"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="45"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="46"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="47"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="48"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="49"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="50"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(1n+1) .vtp-leasingmatrix-var {
    margin-left: 0;
  }
  .vtp-leasingmatrix .leasingmatrix-grid > li:nth-of-type(4n+1) {
    clear: both;
  }
}
.vtp-leasingmatrix .leasingmatrix-grid .control-group {
  margin: 0;
}
.vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-label {
  position: relative;
  cursor: pointer;
  -webkit-transition: background 0.1s ease-in-out;
  -o-transition: background 0.1s ease-in-out;
  transition: background 0.1s ease-in-out;
}
@media only screen and (max-width: 568px) {
  .vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-label {
    background-image: none;
    padding-top: 24px;
    padding-top: 2rem;
    padding-bottom: 24px;
    padding-bottom: 2rem;
  }
  .vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-label:before {
    display: none;
  }
  .vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-label:hover {
    background-image: none;
  }
}
.vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-label.active {
  background-color: #e7e9ea;
  color: #c03;
}
@media only screen and (max-width: 568px) {
  .vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-label.active {
    background-color: transparent;
  }
}
.vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid {
  overflow: hidden;
  background-color: #e7e9ea;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 568px) {
  .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid {
    background-color: transparent;
    margin: 0;
  }
}
.vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid .checkbox-primary + label {
  min-height: 0;
  padding-left: 0;
  padding-bottom: 10px;
}
@media only screen and (max-width: 568px) {
  .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid .checkbox-primary + label {
    padding-bottom: 0;
  }
}
.vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid .checkbox-primary + label:before,
.vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid .checkbox-primary + .label:before {
  position: absolute;
  margin: 0;
  top: 20px;
  top: 1.6666666667rem;
  right: auto;
  left: 10px;
  left: 0.8333333333rem;
}
@media only screen and (max-width: 768px) {
  .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid .checkbox-primary + label:before,
  .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid .checkbox-primary + .label:before {
    top: 23px;
    top: 1.9166666667rem;
  }
}
.vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid label {
  display: block;
  position: relative;
  margin: 0;
}
@media only screen and (max-width: 568px) {
  .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid label {
    display: table;
    padding: 0;
    background-size: auto 80px;
    background-position: left center;
    position: relative;
  }
  .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid label:after {
    top: 10px;
  }
}
.vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid label p {
  line-height: 15.6px;
  line-height: 1.3rem;
  margin: 18px 40px 0 50px;
  margin: 1.5rem 3.3333333333rem 0 4.1666666667rem;
  line-height: 20px;
  line-height: 1.6666666667rem;
}
@media only screen and (max-width: 768px) {
  .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid label p {
    margin-left: 17%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid label p {
    position: relative;
    display: table-cell;
    width: 90%;
    margin-left: 0;
    background-color: transparent;
    vertical-align: middle;
    top: auto;
    padding-left: 0;
    padding-left: 0;
    padding-top: 13px;
    padding-top: 1.0833333333rem;
    padding-bottom: 13px;
    padding-bottom: 1.0833333333rem;
  }
}
.vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid label p .region-address {
  font-weight: normal;
}
@media only screen and (max-width: 568px) {
  .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid {
    position: relative;
    width: auto;
    height: auto;
  }
  .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li {
    margin: 0;
  }
  .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
  .vtp-leasingmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:last-child:after {
    border-bottom: none;
  }
}
.vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-var {
  position: relative;
  width: 400%;
}
@media only screen and (max-width: 940px) {
  .vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-var {
    width: 300%;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-var {
    width: 300%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-var {
    width: 100%;
  }
}
.vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-var .vtp-btn {
  position: absolute;
  right: 20px;
  right: 1.6666666667rem;
  bottom: 20px;
  bottom: 1.6666666667rem;
  background-color: #c6c9cb;
}
.vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-var .vtp-btn.primary {
  background-color: #c03;
}
@media only screen and (max-width: 568px) {
  .vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-var .vtp-btn {
    position: relative;
    right: auto;
    bottom: 15px;
    bottom: 1.25rem;
  }
}
.vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-label.active label:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-label .vtp-leasingmatrix-var-label {
  display: block;
  padding: 20px 15px 20px 40px;
  padding: 1.6666666667rem 1.25rem 1.6666666667rem 3.3333333333rem;
}
.vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-label .vtp-leasingmatrix-var-label label {
  position: relative;
  padding: 0;
  margin: 0;
}
.vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-label .vtp-leasingmatrix-var-label label:before {
  content: "";
  background-image: url(../images/sprite-common.png);
  background-position: 0px -136px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  position: absolute;
  left: -25px;
  top: 4px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-label .vtp-leasingmatrix-var-label label:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-label .vtp-leasingmatrix-var-label label:before {
    display: none;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-leasingmatrix .leasingmatrix-grid .vtp-leasingmatrix-label .vtp-leasingmatrix-var-label {
    padding: 0;
  }
}

.vtp-leasingmatrix .leasingmatrix-container {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
@media only screen and (max-width: 1024px) {
  .vtp-leasingmatrix .leasingmatrix-container {
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
  }
}
@media only screen and (max-width: 1024px) {
  .vtp-leasingmatrix .leasingmatrix-container {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-leasingmatrix .leasingmatrix-container {
    margin-bottom: 70px;
  }
}
.vtp-leasingmatrix .leasingmatrix-container .vtp-btn, .vtp-leasingmatrix .leasingmatrix-container .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-leasingmatrix .leasingmatrix-container .vtp-btn {
  position: absolute;
  background-color: #c6c9cb;
}
.vtp-leasingmatrix .leasingmatrix-container .vtp-btn.primary {
  background-color: #c03;
}
@media only screen and (max-width: 1024px) {
  .vtp-leasingmatrix .leasingmatrix-container .vtp-btn, .vtp-leasingmatrix .leasingmatrix-container .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-leasingmatrix .leasingmatrix-container .vtp-btn {
    bottom: -20px;
    bottom: -1.6666666667rem;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-leasingmatrix .leasingmatrix-container .vtp-btn, .vtp-leasingmatrix .leasingmatrix-container .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-leasingmatrix .leasingmatrix-container .vtp-btn {
    bottom: 20px;
    bottom: 1.6666666667rem;
  }
}
.vtp-leasingmatrix .leasingmatrix-item {
  -webkit-flex: 1 0 50%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
}
@media only screen and (max-width: 1024px) {
  .vtp-leasingmatrix .leasingmatrix-item {
    -webkit-flex: 1 0 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-leasingmatrix .leasingmatrix-item .vtp-btn, .vtp-leasingmatrix .leasingmatrix-item .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-leasingmatrix .leasingmatrix-item .vtp-btn {
    display: none;
  }
}
.vtp-leasingmatrix .leasingmatrix-bg {
  background-color: #e7e9ea;
  padding: 10px;
}
@media only screen and (max-width: 1024px) {
  .vtp-leasingmatrix .leasingmatrix-bg {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin: 0 auto;
    width: 70%;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-leasingmatrix .leasingmatrix-bg {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin: 0;
    width: 100%;
  }
}
.vtp-leasingmatrix .leasingmatrix-bg-75 {
  -webkit-flex: 1 0 75%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 75%;
  flex: 1 0 75%;
}
.vtp-leasingmatrix .leasingmatrix-bg-35 {
  -webkit-flex: 1 0 35%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 35%;
  flex: 1 0 35%;
}
.vtp-leasingmatrix .leasingmatrix-info-text {
  padding: 30px;
}
@media only screen and (max-width: 1024px) {
  .vtp-leasingmatrix .leasingmatrix-info-text {
    padding: 30px 0 30px 0;
  }
}
.vtp-leasingmatrix .leasingmatrix-infotext-25 {
  -webkit-flex: 1 0 25%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 25%;
  flex: 1 0 25%;
}
.vtp-leasingmatrix .leasingmatrix-infotext-65 {
  -webkit-flex: 1 0 65%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 65%;
  flex: 1 0 65%;
}
.vtp-leasingmatrix .leasingmatrix-container table {
  width: 100%;
  table-layout: fixed;
}

.vtp-rentmatrix .leasingmatrix-grid {
  display: block;
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid {
    display: block;
  }
}
.vtp-rentmatrix .leasingmatrix-bg {
  display: none;
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-bg {
    display: none;
  }
}
.vtp-rentmatrix .leasingmatrix-grid {
  *zoom: 1;
}
.vtp-rentmatrix .leasingmatrix-grid:before, .vtp-rentmatrix .leasingmatrix-grid:after {
  content: "";
  display: table;
}
.vtp-rentmatrix .leasingmatrix-grid:after {
  clear: both;
}
.vtp-rentmatrix .leasingmatrix-grid > li {
  float: left;
  clear: none;
  width: 24.95%;
  margin-left: 0;
  margin-right: 0;
}
.vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(n) {
  margin-right: 0;
  float: left;
  clear: none;
}
.vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(4n + 1) {
  clear: both;
}
@media only screen and (max-width: 940px) {
  .vtp-rentmatrix .leasingmatrix-grid > li {
    float: left;
    clear: none;
    width: 33.2666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(4n) {
    margin-right: 0;
    float: left;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(4n + 1) {
    clear: none;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-rentmatrix .leasingmatrix-grid > li {
    float: left;
    clear: none;
    width: 33.2666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(4n) {
    margin-right: 0;
    float: left;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(4n + 1) {
    clear: none;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid > li {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:first-child {
    margin-left: auto;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:last-child {
    margin-right: auto;
  }
}
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid, .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid {
  *zoom: 1;
}
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid:before, .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid:before, .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid:after, .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid:after {
  content: "";
  display: table;
}
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid:after, .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid:after {
  clear: both;
}
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li, .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid > li {
  float: left;
  clear: none;
  width: 24.95%;
  margin-left: 0;
  margin-right: 0;
}
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(n), .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid > li:nth-of-type(n) {
  margin-right: 0;
  float: left;
  clear: none;
}
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(4n), .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid > li:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(4n + 1), .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid > li:nth-of-type(4n + 1) {
  clear: both;
}
@media only screen and (max-width: 940px) {
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li, .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid > li {
    float: left;
    clear: none;
    width: 33.2666666667%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(4n), .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid > li:nth-of-type(4n) {
    margin-right: 0;
    float: left;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(4n + 1), .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid > li:nth-of-type(4n + 1) {
    clear: none;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(n), .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(3n), .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid > li:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(3n + 1), .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid > li:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li, .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid > li {
    float: left;
    clear: none;
    width: 49.9%;
    margin-left: 0;
    margin-right: 0;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(3n), .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid > li:nth-of-type(3n) {
    margin-right: 0;
    float: left;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(3n + 1), .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid > li:nth-of-type(3n + 1) {
    clear: none;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(n), .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid > li:nth-of-type(n) {
    margin-right: 0;
    float: left;
    clear: none;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(2n), .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid > li:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:nth-of-type(2n + 1), .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid > li:nth-of-type(2n + 1) {
    clear: both;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li, .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid > li {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:first-child, .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid > li:first-child {
    margin-left: auto;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:last-child, .vtp-leasingmatrix .leasingmatrix-grid .vtp-rentmatrix .leasingmatrix-result-grid > li:last-child {
    margin-right: auto;
  }
}
.vtp-rentmatrix .leasingmatrix-grid {
  clear: both;
  position: relative;
  overflow: hidden;
}
.vtp-rentmatrix .leasingmatrix-grid .collapse-toggle {
  background-color: white;
  background-size: auto 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-bottom: none;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.vtp-rentmatrix .leasingmatrix-grid .collapse-toggle:after {
  display: none;
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid .collapse-toggle {
    padding-top: 19px;
    padding-top: 1.5833333333rem;
    font-size: 12px;
    font-size: 1rem;
    padding-bottom: 16px;
    padding-bottom: 1.3333333333rem;
    background: #e7e9ea;
    border-bottom: 1px solid #cdd0d2;
    cursor: pointer;
    font-family: "AudiTypeExtBold", Verdana, sans-serif;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 0;
    padding-left: 4%;
    position: relative;
    left: 0;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    background: white;
    padding-left: 0;
  }
  .vtp-rentmatrix .leasingmatrix-grid .collapse-toggle:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -172px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
    content: "";
    position: absolute;
    right: 4%;
    top: 50%;
    margin-top: -4px;
    display: block;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-rentmatrix .leasingmatrix-grid .collapse-toggle:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid .collapse-toggle.active:after {
    background-image: url(../images/sprite-common.png);
    background-position: 0px -226px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-rentmatrix .leasingmatrix-grid .collapse-toggle.active:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid .collapse-toggle:after {
    right: 2px;
    background-image: url(../images/sprite-common.png);
    background-position: 0px -226px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 3/2), only screen and (max-width: 568px) and (min-device-pixel-ratio: 1.5), only screen and (max-width: 568px) and (min-resolution: 144dpi), only screen and (max-width: 568px) and (min-resolution: 1.5dppx) {
  .vtp-rentmatrix .leasingmatrix-grid .collapse-toggle:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid .collapse-toggle.active:after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="1"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="2"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="3"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="4"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="5"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="6"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="7"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="8"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="9"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="10"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="11"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="12"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="13"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="14"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="15"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="16"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="17"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="18"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="19"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="20"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="21"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="22"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="23"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="24"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="25"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="26"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="27"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="28"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="29"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="30"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="31"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="32"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="33"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="34"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="35"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="36"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="37"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="38"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="39"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="40"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="41"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="42"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="43"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="44"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="45"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="46"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="47"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="48"] .leasingmatrix-result-grid {
  padding-bottom: 9%;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="49"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="50"] .leasingmatrix-result-grid {
  padding-bottom: 10px;
}
.vtp-rentmatrix .leasingmatrix-grid > li:last-child .collapse-toggle:not(.active) {
  border-bottom: none;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var {
  margin-left: 0;
}
.vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var .leasingmatrix-result-grid > li.leasingOption-blank {
  min-height: 73px;
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var {
    padding-bottom: 20px;
    padding-bottom: 1.6666666667rem;
    text-align: center;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var.in {
    border-bottom: 1px solid #cdd0d2;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var .leasingmatrix-result-grid > li {
    text-align: left;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var .leasingmatrix-result-grid > li.leasingOption-blank {
    margin: 0;
    min-height: 0;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var .leasingmatrix-result-grid > li.leasingOption-blank p {
    line-height: 2px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var .leasingmatrix-result-grid > li.leasingOption-blank:after {
    border-bottom: none;
  }
}
.vtp-rentmatrix .leasingmatrix-grid > li:last-child .vtp-leasingmatrix-var.in {
  border-bottom: none;
}
.vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(4n+2) .vtp-leasingmatrix-var {
  margin-left: -100%;
}
.vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(4n+3) .vtp-leasingmatrix-var {
  margin-left: -200%;
}
.vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(4n+4) .vtp-leasingmatrix-var {
  margin-left: -300%;
}
@media only screen and (max-width: 940px) {
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="1"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="2"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="3"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="4"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="5"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="6"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="7"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="8"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="9"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="10"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="11"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="12"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="13"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="14"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="15"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="16"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="17"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="18"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="19"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="20"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="21"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="22"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="23"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="24"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="25"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="26"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="27"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="28"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="29"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="30"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="31"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="32"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="33"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="34"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="35"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="36"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="37"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="38"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="39"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="40"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="41"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="42"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="43"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="44"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="45"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="46"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="47"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="48"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="49"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="50"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(3n+1) .vtp-leasingmatrix-var {
    margin-left: 0;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(3n+2) .vtp-leasingmatrix-var {
    margin-left: -100%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(3n+3) .vtp-leasingmatrix-var {
    margin-left: -200%;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="1"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="2"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="3"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="4"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="5"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="6"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="7"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="8"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="9"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="10"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="11"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="12"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="13"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="14"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="15"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="16"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="17"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="18"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="19"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="20"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="21"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="22"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="23"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="24"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="25"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="26"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="27"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="28"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="29"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="30"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="31"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="32"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="33"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="34"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="35"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="36"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="37"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="38"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="39"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="40"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="41"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="42"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="43"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="44"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="45"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="46"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="47"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="48"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="49"] .leasingmatrix-result-grid {
    padding-bottom: 10px;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="50"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(3n+1) .vtp-leasingmatrix-var {
    margin-left: 0;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(3n+2) .vtp-leasingmatrix-var {
    margin-left: -100%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(3n+3) .vtp-leasingmatrix-var {
    margin-left: -200%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid > li {
    overflow: visible;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="1"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="2"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="3"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="4"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="5"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="6"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="7"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="8"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="9"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="10"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="11"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="12"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="13"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="14"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="15"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="16"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="17"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="18"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="19"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="20"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="21"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="22"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="23"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="24"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="25"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="26"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="27"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="28"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="29"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="30"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="31"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="32"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="33"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="34"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="35"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="36"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="37"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="38"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="39"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="40"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="41"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="42"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="43"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="44"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="45"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="46"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="47"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="48"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="49"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li .vtp-leasingmatrix-var[data-result-count="50"] .leasingmatrix-result-grid {
    padding-bottom: 9%;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(1n+1) .vtp-leasingmatrix-var {
    margin-left: 0;
  }
  .vtp-rentmatrix .leasingmatrix-grid > li:nth-of-type(4n+1) {
    clear: both;
  }
}
.vtp-rentmatrix .leasingmatrix-grid .control-group {
  margin: 0;
}
.vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-label {
  position: relative;
  cursor: pointer;
  -webkit-transition: background 0.1s ease-in-out;
  -o-transition: background 0.1s ease-in-out;
  transition: background 0.1s ease-in-out;
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-label {
    background-image: none;
    padding-top: 24px;
    padding-top: 2rem;
    padding-bottom: 24px;
    padding-bottom: 2rem;
  }
  .vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-label:before {
    display: none;
  }
  .vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-label:hover {
    background-image: none;
  }
}
.vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-label.active {
  background-color: #e7e9ea;
  color: #c03;
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-label.active {
    background-color: transparent;
  }
}
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid {
  overflow: hidden;
  background-color: #e7e9ea;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid {
    background-color: transparent;
    margin: 0;
  }
}
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid .checkbox-primary + label {
  min-height: 0;
  padding-left: 0;
  padding-bottom: 10px;
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid .checkbox-primary + label {
    padding-bottom: 0;
  }
}
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid .checkbox-primary + label:before,
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid .checkbox-primary + .label:before {
  position: absolute;
  margin: 0;
  top: 20px;
  top: 1.6666666667rem;
  right: auto;
  left: 10px;
  left: 0.8333333333rem;
}
@media only screen and (max-width: 768px) {
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid .checkbox-primary + label:before,
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid .checkbox-primary + .label:before {
    top: 23px;
    top: 1.9166666667rem;
  }
}
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid label {
  display: block;
  position: relative;
  margin: 0;
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid label {
    display: table;
    padding: 0;
    background-size: auto 80px;
    background-position: left center;
    position: relative;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid label:after {
    top: 10px;
  }
}
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid label p {
  line-height: 15.6px;
  line-height: 1.3rem;
  margin: 18px 40px 0 50px;
  margin: 1.5rem 3.3333333333rem 0 4.1666666667rem;
  line-height: 20px;
  line-height: 1.6666666667rem;
}
@media only screen and (max-width: 768px) {
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid label p {
    margin-left: 17%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid label p {
    position: relative;
    display: table-cell;
    width: 90%;
    margin-left: 0;
    background-color: transparent;
    vertical-align: middle;
    top: auto;
    padding-left: 0;
    padding-left: 0;
    padding-top: 13px;
    padding-top: 1.0833333333rem;
    padding-bottom: 13px;
    padding-bottom: 1.0833333333rem;
  }
}
.vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid label p .text {
  font-weight: normal;
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid {
    position: relative;
    width: auto;
    height: auto;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li {
    margin: 0;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
  .vtp-rentmatrix .leasingmatrix-grid .leasingmatrix-result-grid > li:last-child:after {
    border-bottom: none;
  }
}
.vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-var {
  position: relative;
  width: 400%;
}
@media only screen and (max-width: 940px) {
  .vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-var {
    width: 300%;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-var {
    width: 300%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-var {
    width: 100%;
  }
}
.vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-var .vtp-btn {
  position: absolute;
  right: 20px;
  right: 1.6666666667rem;
  bottom: 20px;
  bottom: 1.6666666667rem;
  background-color: #c6c9cb;
}
.vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-var .vtp-btn.primary {
  background-color: #c03;
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-var .vtp-btn {
    position: relative;
    right: auto;
    bottom: 15px;
    bottom: 1.25rem;
  }
}
.vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-label.active label:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-label .vtp-leasingmatrix-var-label {
  display: block;
  padding: 20px 15px 20px 40px;
  padding: 1.6666666667rem 1.25rem 1.6666666667rem 3.3333333333rem;
}
.vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-label .vtp-leasingmatrix-var-label label {
  position: relative;
  padding: 0;
  margin: 0;
}
.vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-label .vtp-leasingmatrix-var-label label:before {
  content: "";
  background-image: url(../images/sprite-common.png);
  background-position: 0px -136px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  position: absolute;
  left: -25px;
  top: 4px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-label .vtp-leasingmatrix-var-label label:before {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-label .vtp-leasingmatrix-var-label label:before {
    display: none;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-grid .vtp-leasingmatrix-label .vtp-leasingmatrix-var-label {
    padding: 0;
  }
}
.vtp-rentmatrix .leasingmatrix-container {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin-bottom: 0px;
}
@media only screen and (max-width: 1024px) {
  .vtp-rentmatrix .leasingmatrix-container {
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
  }
}
.vtp-rentmatrix .leasingmatrix-container .vtp-btn, .vtp-rentmatrix .leasingmatrix-container .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-rentmatrix .leasingmatrix-container .vtp-btn {
  position: absolute;
  background-color: #c6c9cb;
}
.vtp-rentmatrix .leasingmatrix-container .vtp-btn.primary {
  background-color: #c03;
}
@media only screen and (max-width: 1024px) {
  .vtp-rentmatrix .leasingmatrix-container .vtp-btn, .vtp-rentmatrix .leasingmatrix-container .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-rentmatrix .leasingmatrix-container .vtp-btn {
    bottom: -20px;
    bottom: -1.6666666667rem;
  }
}
@media only screen and (max-width: 767px) {
  .vtp-rentmatrix .leasingmatrix-container .vtp-btn, .vtp-rentmatrix .leasingmatrix-container .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-rentmatrix .leasingmatrix-container .vtp-btn {
    bottom: 20px;
    bottom: 1.6666666667rem;
  }
}
.vtp-rentmatrix .leasingmatrix-item {
  -webkit-flex: 1 0 50%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
}
@media only screen and (max-width: 1024px) {
  .vtp-rentmatrix .leasingmatrix-item {
    -webkit-flex: 1 0 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
@media only screen and (max-width: 568px) {
  .vtp-rentmatrix .leasingmatrix-item .vtp-btn, .vtp-rentmatrix .leasingmatrix-item .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-rentmatrix .leasingmatrix-item .vtp-btn {
    display: none;
  }
}
.vtp-rentmatrix .leasingmatrix-bg {
  background-color: #e7e9ea;
  padding: 10px;
}
@media only screen and (max-width: 1024px) {
  .vtp-rentmatrix .leasingmatrix-bg {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin: 0 auto;
    width: 70%;
  }
}
@media only screen and (max-width: 768px) {
  .vtp-rentmatrix .leasingmatrix-bg {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin: 0;
    width: 100%;
  }
}
.vtp-rentmatrix .leasingmatrix-info-text {
  padding: 30px;
}
@media only screen and (max-width: 1024px) {
  .vtp-rentmatrix .leasingmatrix-info-text {
    padding: 30px 0 30px 0;
  }
}

.vtp-lightversion .ie9 .vtp-anchor-nav ul[data-items] {
  padding-right: 105px;
}
.vtp-lightversion .ie9 .vtp-anchor-nav li {
  margin-right: 2%;
  padding-left: 2%;
}
.vtp-lightversion .vtp-filter-bar-provinces {
  position: relative;
}
.vtp-lightversion .vtp-filter-bar-provinces ul.list {
  position: absolute;
  top: 54px;
  left: 0;
  width: 100%;
  max-height: 198px;
  overflow: auto;
  border-bottom: solid 1px #cecece;
  border-left: solid 1px #cecece;
  border-right: solid 1px #cecece;
}
.vtp-lightversion .vtp-filter-bar-provinces ul.list li {
  display: block;
  width: 100%;
  height: auto;
  margin-right: 0;
  padding: 10px 5px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: solid 1px #cecece;
  text-align: left;
}
.vtp-lightversion .vtp-filter-bar-provinces ul.list li:active {
  background-color: #cecece;
}
.vtp-lightversion .vtp-filter-bar-provinces ul.list li:before {
  display: none;
}
.vtp-lightversion .vtp-filter-bar-provinces ul.list span.region {
  padding-right: 10px;
}
.vtp-lightversion .vtp-filter-bar-provinces ul.list span.provinceId,
.vtp-lightversion .vtp-filter-bar-provinces ul.list span.cityId {
  display: none;
}
.vtp-lightversion .vtp-filter-bar-provinces label {
  display: none;
}
.vtp-lightversion .vtp-filter-bar-provinces input[type=text] {
  display: block;
  float: left;
  padding-right: 4.9em;
  min-width: 0;
  width: 100%;
}
.vtp-lightversion .vtp-filter-bar-provinces .close {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -463px;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  float: left;
  margin-top: 15px;
  margin-left: -55px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-lightversion .vtp-filter-bar-provinces .close {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-lightversion .vtp-filter-bar-provinces .vtp-btn, .vtp-lightversion .vtp-filter-bar-provinces .vtp-compare-bar.compare-enabled .action-holder .vtp-btn, .vtp-compare-bar.compare-enabled .action-holder .vtp-lightversion .vtp-filter-bar-provinces .vtp-btn {
  position: relative;
  display: block;
  float: left;
  width: 40px;
  min-width: 0;
  height: 40px;
  margin-left: -40px;
  padding: 0;
  background-color: transparent;
  border: solid 1px transparent;
}
.vtp-lightversion .vtp-filter-bar-provinces .vtp-btn:after, .vtp-lightversion .vtp-filter-bar-provinces .vtp-compare-bar.compare-enabled .action-holder .vtp-btn:after, .vtp-compare-bar.compare-enabled .action-holder .vtp-lightversion .vtp-filter-bar-provinces .vtp-btn:after {
  background-image: url(../images/sprite-common.png);
  background-position: 0px -2468px;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  margin-left: 0;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  .vtp-lightversion .vtp-filter-bar-provinces .vtp-btn:after, .vtp-lightversion .vtp-filter-bar-provinces .vtp-compare-bar.compare-enabled .action-holder .vtp-btn:after, .vtp-compare-bar.compare-enabled .action-holder .vtp-lightversion .vtp-filter-bar-provinces .vtp-btn:after {
    background-size: 221px 7472px;
    background-image: url(../images/sprite-common@2x.png);
  }
}
.vtp-lightversion .vtp-filter-bar-provinces .vtp-btn:before, .vtp-lightversion .vtp-filter-bar-provinces .vtp-compare-bar.compare-enabled .action-holder .vtp-btn:before, .vtp-compare-bar.compare-enabled .action-holder .vtp-lightversion .vtp-filter-bar-provinces .vtp-btn:before {
  content: "";
  display: block;
  border-left: solid 1px #cecece;
  height: 28px;
  position: absolute;
  left: 0;
  top: 5px;
}
.vtp-lightversion .vtp-filter-bar-provinces .vtp-btn:hover, .vtp-lightversion .vtp-filter-bar-provinces .vtp-btn:active, .vtp-lightversion .vtp-filter-bar-provinces .vtp-btn:focus {
  background-color: transparent !important;
}
.vtp-lightversion .vtp-filter-bar-provinces .error {
  background-color: #fff;
  border-bottom: solid 1px #cecece;
  border-left: solid 1px #cecece;
  border-right: solid 1px #cecece;
  display: none;
  left: 0;
  top: 54px;
  padding: 10px;
  position: absolute;
  text-align: left;
  width: 100%;
}
.vtp-lightversion .ie-lt9 .vtp-filter-bar-provinces .vtp-flyout .content {
  border: none;
}
@media only screen and (max-width: 767px) {
  .vtp-lightversion .vtp-filter-bar ul[data-items] li.vtp-filter-bar-provinces:after {
    display: none;
  }
  .vtp-lightversion .vtp-filter-bar-provinces a {
    display: none;
  }
  .vtp-lightversion .vtp-filter-bar-provinces .vtp-flyout {
    display: block !important;
    position: relative;
    width: 100%;
  }
  .vtp-lightversion .vtp-filter-bar-provinces .vtp-flyout.content {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-bottom: 14px;
    padding-top: 14px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .vtp-lightversion .vtp-filter-bar-provinces .vtp-flyout.content:before {
    display: none;
  }
  .vtp-lightversion .vtp-filter-bar-provinces .vtp-flyout .content.text {
    width: 100%;
  }
  .vtp-lightversion .vtp-filter-bar-provinces .vtp-flyout ul.list {
    position: relative;
    left: auto;
    top: auto;
  }
  .vtp-lightversion .vtp-filter-bar-provinces .vtp-flyout .error {
    left: auto;
    top: 83px;
    width: 92%;
  }
  .vtp-lightversion .vtp-filter-bar-provinces .vtp-flyout ul.list li:after {
    display: none;
  }
  .vtp-lightversion .vtp-filter-bar-provinces .vtp-mobile-breadcrumb {
    font-family: Verdana, sans-serif;
    font-size: 12px;
  }
  .vtp-lightversion .vtp-filter-bar-provinces .vtp-filter-panel-exhaust .vtp-exhaust .control-group {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-top: 1px solid #d7dadb;
  }
  .vtp-lightversion .vtp-filter-bar-provinces .vtp-filter-panel-exhaust .vtp-exhaust {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d7dadb;
  }
  .vtp-lightversion .vtp-filter-bar-provinces .vtp-filter-panel-engines [class*=vtp-icon-highlights-] {
    display: none;
  }
}
@media only screen and (min-width: 767px) {
  .vtp-lightversion .vtp-anchor-nav li {
    margin-right: 1.4%;
    padding-left: 1.4%;
  }
  .vtp-lightversion .vtp-filter-bar-provinces .vtp-flyout {
    position: absolute;
  }
  .vtp-lightversion .vtp-filter-bar-provinces .vtp-flyout .content.text {
    padding: 20px;
  }
  .vtp-lightversion .vtp-filter-bar-provinces .vtp-flyout .content:before {
    left: 20px;
  }
  .vtp-lightversion .vtp-filter-panel-engines .vtp-filter-gearext label.vtp-filter-inline-image {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .vtp-lightversion .vtp-anchor-nav li.vtp-filter-bar-provinces {
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 0;
  }
  .vtp-lightversion .vtp-anchor-nav li.vtp-filter-bar-models {
    padding-left: 0.5%;
  }
  .vtp-lightversion .vtp-anchor-nav li.vtp-filter-bar-models:before {
    display: none;
  }
  .vtp-lightversion .vtp-filter-bar-provinces a {
    display: none;
  }
  .vtp-lightversion .vtp-filter-bar-provinces .vtp-flyout {
    display: block !important;
    position: relative;
  }
  .vtp-lightversion .vtp-filter-bar-provinces .vtp-flyout .content.text {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-bottom: 14px;
    padding-top: 14px;
    padding-left: 0;
    padding-right: 0;
  }
  .vtp-lightversion .vtp-filter-bar-provinces .vtp-flyout .content.text:before {
    display: none;
  }
  .vtp-lightversion .vtp-filter-bar-provinces .content.text {
    width: 190px;
  }
}
.vtp-lightversion .ie9 .vtp-anchor-nav li.vtp-filter-bar-provinces {
  padding-left: 15px;
  padding-right: 15px;
  margin-right: 0;
}
.vtp-lightversion .ie9 .vtp-anchor-nav li.vtp-filter-bar-models {
  padding-left: 0.5%;
}
.vtp-lightversion .ie9 .vtp-anchor-nav li.vtp-filter-bar-models:before {
  display: none;
}
.vtp-lightversion .ie9 .vtp-filter-bar-provinces label,
.vtp-lightversion .ie9 .vtp-filter-bar-provinces a {
  display: none;
}
.vtp-lightversion .ie9 .vtp-filter-bar-provinces .vtp-flyout {
  display: block !important;
  position: relative;
}
.vtp-lightversion .ie9 .vtp-filter-bar-provinces .vtp-flyout .content.text {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-bottom: 14px;
  padding-top: 14px;
  padding-left: 0;
  padding-right: 0;
}
.vtp-lightversion .ie9 .vtp-filter-bar-provinces .vtp-flyout .content.text:before {
  display: none;
}
.vtp-lightversion .ie9 .vtp-filter-bar-provinces .content.text {
  width: 190px;
}