.title {
  text-align: center;
  padding: 23px 0 0;
}

@media (min-width: 480px) {
  .title {
    padding-top: 43px;
  }
}

.filter {
  padding-top: 12px;
  position: relative;
  z-index: 1;
}

.filter__inner {
  text-align: center;
}

@media (min-width: 992px) {
  .filter__inner {
    display: grid;
    grid-template-columns: 25% auto 25%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.filter__buttons {
  padding-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

@media (min-width: 992px) {
  .filter__buttons {
    display: none;
  }
}

.filter__button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}

.filter__refine-button {
  padding: 0 24px;
  display: none;
}

@media (min-width: 992px) {
  .filter__refine-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.filter__svg {
  margin-right: 5px;
}

.filter__sort {
  display: none;
}

@media (min-width: 992px) {
  .filter__sort {
    display: inline-grid;
    grid-template-columns: auto 1fr;
    gap: 11px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.filter__text {
  color: #54565A;
}

.filter__link {
  color: black;
  font-size: 12px;
  text-transform: none;
}

.filter__search {
  text-align: right;
  display: none;
}

@media (min-width: 992px) {
  .filter__search {
    display: block;
  }
}

.filter__dropdown {
  display: none;
  position: absolute;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 15px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  top: 100%;
  left: 0;
  background: white;
  gap: 5px;
}

.filter__dropdown--open {
  display: grid;
}

@media (min-width: 480px) {
  .filter {
    padding-top: 24px;
  }
}

.toggle {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.toggle__text:hover, .toggle__inner:hover {
  cursor: pointer;
}

.toggle__text {
  font-size: 14px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.toggle__input {
  display: none;
}

.toggle__input:checked + .toggle__text {
  color: #0093d6;
}

.toggle__inner {
  background: #EDEDED;
  border-radius: 13px;
  width: 50px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2px;
  position: relative;
  border: 0;
}

.toggle__circle {
  background: #0093d6;
  border-radius: 13px;
  width: 22px;
  height: 22px;
  position: absolute;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.toggle--checked .toggle__circle {
  -webkit-transform: translateX(calc(50px - 100% - 4px));
          transform: translateX(calc(50px - 100% - 4px));
}

/*! nouislider - 14.6.0 - 6/27/2020 */
.noUi-target, .noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base, .noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect, .noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  -webkit-transform-style: flat;
          transform-style: flat;
}

.noUi-connect {
  height: 100%;
  width: 100%;
}

.noUi-origin {
  height: 10%;
  width: 10%;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

.noUi-vertical .noUi-origin {
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect, .noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

.noUi-horizontal {
  height: 1px;
}

.noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  right: -8px;
  top: -5px;
}

.noUi-vertical {
  width: 16px;
}

.noUi-vertical .noUi-handle {
  width: 30px;
  height: 30px;
  right: -6px;
  top: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

.noUi-target {
  background: black;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: black;
}

.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  background: black;
  border: 0;
  border-radius: 50%;
}

[disabled] .noUi-connect {
  background: #b8b8b8;
}

[disabled].noUi-target, [disabled].noUi-handle, [disabled] .noUi-handle {
  cursor: not-allowed;
}

.noUi-pips, .noUi-pips * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

.noUi-marker {
  position: absolute;
  background: #ccc;
}

.noUi-marker-sub {
  background: #aaa;
}

.noUi-marker-large {
  background: #aaa;
}

.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.results {
  padding-top: 10px;
  padding-bottom: 30px;
  text-align: center;
}

.results__vehicles {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 480px) {
  .results__vehicles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px 14px;
  }
}

.results__vehicle {
  position: relative;
  -webkit-box-shadow: 0 11px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0 11px 24px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 0;
}

.results__link {
  padding-top: 15px;
  display: inline-block;
}

.results__compare {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.results__compare:hover {
  cursor: pointer;
}

@media (min-width: 480px) {
  .results__compare {
    top: 10px;
    right: 10px;
  }
}

.results__path {
  -webkit-transition: stroke 0.3s, fill 0.3s;
  transition: stroke 0.3s, fill 0.3s;
}

.results__name {
  text-align: center;
  padding-top: 5px;
}

@media (min-width: 480px) {
  .results__name {
    padding-top: 16px;
  }
}

.results__version {
  text-align: center;
  padding-top: 3px;
  font-size: 14px;
  color: #3B3938;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media (min-width: 480px) {
  .results__version {
    padding-top: 1px;
  }
}

.results__prices {
  padding-top: 8px;
  display: grid;
  gap: 1px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.results__prices--hidden {
  display: none;
}

@media (min-width: 480px) {
  .results__prices {
    padding-top: 12px;
  }
}

.results__price {
  background: #EDEDED;
  padding: 8px 0;
  text-align: center;
  font-size: 12px;
  line-height: 14px;
}

.results__amount {
  font-weight: 600;
  font-size: 18px;
  line-height: 16px;
}

.results__amount:hover {
  text-decoration: underline;
}

.results__specs {
  display: grid;
  gap: 4px 0;
  padding: 10px;
  margin: 0;
  list-style: none;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

@media (min-width: 480px) {
  .results__specs {
    grid-template-columns: repeat(2, auto);
    place-content: space-between;
    gap: 8px 10px;
  }
}

@media (min-width: 768px) {
  .results__specs {
    grid-template-columns: repeat(3, auto);
  }
}

.results__spec {
  display: grid;
  grid-template-columns: 20px 1fr;
  grid-template-rows: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 0;
}

@media (min-width: 992px) {
  .results__spec {
    grid-template-columns: 35px 1fr;
    grid-template-rows: 35px;
    gap: 8px;
  }
}

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

.results__text {
  font-size: 12px;
  text-align: left;
}

@media (min-width: 480px) {
  .results {
    padding-top: 18px;
  }
}

.results__offer {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin-bottom: -8px;
  margin-top: 8px;
}

@media (min-width: 480px) {
  .results__offer {
    margin-bottom: -12px;
    margin-top: 12px;
  }
}

.results__offer-picture {
  grid-area: 1 / 1 / 2 / 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.results__offer-picture--foreground {
  margin: 0 20px 8px 0;
}

.results__offer-img {
  display: block;
  max-width: 100%;
}

.results__highlight {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #233484;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  z-index: 1;
}

.headroom--pinned {
  z-index: 500;
}

.refine-search {
  position: fixed;
  width: 100%;
  height: 100%;
  background: white;
  padding: 20px 15px 140px;
  z-index: 1031;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  overflow-y: auto;
}

.refine-search__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.refine-search__reset, .refine-search__close {
  background: none;
  padding: 0;
  border: 0;
}

.refine-search__reset:hover, .refine-search__close:hover {
  cursor: pointer;
}

.refine-search__reset {
  font-size: 12px;
  color: #00A3E0;
}

.refine-search__reset:hover {
  text-decoration: underline;
}

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

.refine-search__toggle {
  background: #EEEEEE;
  padding: 12px 0;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
}

.refine-search__toggle-inner {
  background: white;
}

.refine-search__field {
  padding-top: 13px;
}

.refine-search__label {
  font-size: 10px;
  color: #54565A;
}

.refine-search__input {
  margin-top: 5px;
}

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

.refine-search__payment {
  font-weight: bold;
  font-size: 14px;
  padding-left: 13px;
}

.refine-search__ranges {
  padding-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.refine-search__range {
  color: #54565A;
  font-size: 10px;
}

.refine-search__button {
  width: 100%;
  margin-top: 16px;
}

.refine-search__promotion {
  margin-top: 5px;
  background: #EEEEEE;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.refine-search__text {
  font-size: 10px;
  padding-left: 9px;
}

.refine-search__slider {
  margin-top: 16px;
}

.refine-search--open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media (min-width: 768px) {
  .refine-search {
    width: 375px;
    padding-bottom: 20px;
  }
}

.refine-search--inline {
  position: static;
  -webkit-transform: none;
          transform: none;
}

.overlay {
  position: fixed;
  top: 0;
  right: 375px;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1030;
}

.copy {
  background: #F2F2F2;
  padding: 20px 0;
}

.copy h1, .copy h2, .copy h3, .copy h4, .copy h5, .copy h6 {
  margin-top: 0;
}

@media (min-width: 480px) {
  .copy {
    padding: 50px 0;
  }
}

.terms-and-conditions {
  padding: 20px 0;
}

.terms-and-conditions h1, .terms-and-conditions h2, .terms-and-conditions h3, .terms-and-conditions h4, .terms-and-conditions h5, .terms-and-conditions h6 {
  margin-top: 0;
}

@media (min-width: 480px) {
  .terms-and-conditions {
    padding: 50px 0;
  }
}

.disable-scroll {
  overflow-y: hidden;
}
