:root {
  --primary-color: #00ACEE;
  --primary-color-hover: #00adef;
  --primary-color-active: #008ac0;
}

body {
  font-family: 'Daimler CS', Arial, Helvetica, sans-serif;
  color: #fff;
  background-color: #000;
  padding-bottom: 65px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Corporate A Condensed', 'Daimler CS', Arial, Helvetica, sans-serif;
}

strong {
  font-family: 'Daimler CS Demi', Arial, Helvetica, sans-serif;
}

a, a path {
  cursor: pointer;
  color: #fff;
  fill: #fff;
}

a:hover, a:hover path {
  text-decoration: none;
  color: var(--primary-color-hover);
  fill: var(--primary-color-hover);
}

.backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
  display: none;
  opacity: 0.5;
}

.nowarp {
  white-space: nowrap;
}

.interest {
  position: relative;
  overflow: hidden;
  height: 0;
  width: 0;
  pointer-events: none;
  display: block;
}

.legaltext {
  font-size: 12px;
  color: #c1c1c1;
  text-align: justify;
}

/* Forms */
.btn {
  font-family: 'Daimler CS', Arial, Helvetica, sans-serif;
  border-radius: 0;
}

/* .btn-primary */
.btn-primary {
  background-color: var(--primary-color);
  color:#FFF;
  border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
  background-color: var(--primary-color-hover);
  color:#FFF !important;
  border-color: var(--primary-color-hover);
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: var(--primary-color-active);
  border-color: var(--primary-color-active);
}

/* .btn-outline-primary */
.btn-outline-primary {
  background-color: transparent;
  color:var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active, .btn-outline-primary.active, .open .dropdown-toggle.btn-outline-primary {
  color:var(--primary-color) !important;
  border-color: var(--primary-color-hover);
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle {
  color: var(--primary-color);
  background-color: transparent;
  border-color: var(--primary-color-hover);
}

/* .btn-secondary */
.btn-secondary {
  background-color: #000;
  color:#FFF !important;
  border-color: #000;
}

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary.active, .open .dropdown-toggle.btn-secondary {
  background-color: #000;
  color:var(--primary-color-hover) !important;
  border-color: #000;
}

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
  color: var(--primary-color-hover);
  background-color: #000;
  border-color: #000;
}

/* .btn-outline-secondary */
.btn-outline-secondary {
  background-color: transparent;
  color:#fff;
  border-color: #fff;
}

.btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:active, .btn-outline-secondary.active, .open .dropdown-toggle.btn-outline-secondary {
  color:#fff !important;
  border-color: #fff;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active, .show>.btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}

/* Alert */
.alert {
  border-radius: 0;
}

.alert-success {
  color: #155724;
  background-color: white;
  border-color: #155724;
}

/* pagination */

.pagination {
  border-radius: 0;
}

.page-link {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
}

.page-link:hover {
  color: var(--primary-color-hover);
  background-color: transparent;
  border-color: #fff;
}

.page-item.active .page-link {
  color: #fff;
  background-color: #191919;
  border-color: #fff;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* Dropdown */
.dropdown-menu {
  font-family: 'Daimler CS Demi', Arial, Helvetica, sans-serif;
  color: #000;
  background-color: #fff;
  background-clip: none;
  border: none;
  border-radius: 0;
}

.dropdown-item:hover {
  color: var(--primary-color-hover);
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0;
  vertical-align: 0px;
  content: "\e90a";
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: none;
  padding-top: 5px;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--primary-color-hover);
}


.form-group {
  position: relative;
}

.form-group label {
  font-family: 'Daimler CS', Arial, Helvetica, sans-serif;
}

form input.form-control,
form textarea.form-control,
form select.form-control {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0;
  border-radius: 0;
  border-color: #666;
  background: transparent;
}

.form-control:focus,
.form-control.is-valid, .was-validated .form-control:valid,
.form-control.is-valid:focus, .was-validated .form-control:valid:focus,
.form-control.is-invalid, .was-validated .form-control:invalid,
.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
  border-color: #666;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control:focus,
.form-control.is-valid:focus, .was-validated .form-control:valid:focus,
.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 172, 238, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 172, 238, 0.6);
}

form .input-group-addon {
  color: #555555;
  background-color: #eeeeee;
  border-radius: 0px;
  padding-left: 12px
}

.form-control.is-valid, .was-validated .form-control:valid,
.form-control.is-invalid, .was-validated .form-control:invalid {
  border-color: #666;
  padding-right: 0.75rem;
  background-image: none;
}

.form-control:focus {
  background-color: transparent;
}

form input.form-control,
form textarea.form-control,
form select.form-control {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0;
  border-radius: 0;
  border-color: #666;
  background: transparent;
}

form.reverse-form input.form-control,
form.reverse-form textarea.form-control,
form.reverse-form select.form-control,
.reverse-form .form-control:focus,
.reverse-form .form-control.is-valid, .reverse-form .was-validated .form-control:valid,
.reverse-form .form-control.is-valid:focus, .reverse-form .was-validated .form-control:valid:focus,
.reverse-form .form-control.is-invalid, .reverse-form .was-validated .form-control:invalid,
.reverse-form .form-control.is-invalid:focus, .reverse-form .was-validated .form-control:invalid:focus,
.reverse-form .form-control.is-valid, .reverse-form .was-validated .form-control:valid,
.reverse-form .form-control.is-invalid, .reverse-form .was-validated .form-control:invalid {
  border-color: #fff;
  color: #fff;
}

form.reverse-form select.form-control,
form.reverse-form select.form-control optgroup,
form.reverse-form select.form-control option {
  background-color: #000;
}

.form-control.is-invalid, .was-validated .form-control:invalid,
.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
  border-color: #af0837;
}

form .invalid-feedback {
  position: absolute;
  top: 100%;
  right: 0;
  text-align: right;
  color: #af0837;
  margin: 0;
  display: block;
}

.interest .form-group {
  position: absolute;
  left: -2000px;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.tab-content {
  display: block
}

.tab-content .tab-item {
  display: none;
}

.tab-content .tab-item.active {
  display: block;
}

/* Menu Hamburger */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  outline: none;
}
.hamburger:focus {
  outline: none;
}
.hamburger:hover {
  opacity: 0.7;
}
header.menu-active .hamburger:hover {
  opacity: 0.7;
}

header.menu-active .hamburger .hamburger-inner,
header.menu-active .hamburger .hamburger-inner::before,
header.menu-active .hamburger .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--emphatic {
overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
header.menu-active .hamburger--emphatic .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
header.menu-active .hamburger--emphatic .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
header.menu-active .hamburger--emphatic .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* Header */
header {
  display: block;
}

header .logo img {
  height: 40px;
}

header .logo-mercedesbenz {
  min-width: 70px;
}

header .logo-savarauto img {
  height: 20px;
}

header nav {
  display: none;
  background-color: #191919;
}

header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header .float-menu {
  background-color: #fff;
  position: absolute;
  display: none;
  z-index: 1040;
  right: 15px;
  top: 65px;
  bottom: 15px;
  overflow: hidden;
  border-radius: 6px;
  width: 320px;
  color: #333;
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.4);
}

header.menu-active .float-menu {
  display: block;
}

header .float-menu-tab {
  background-color: #fff;
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  bottom: 0;
  z-index: 100;
}

header .float-menu-tab.active {
  left: 0;
  z-index: 110;
}

header .float-menu-tab.step-0 {
  z-index: 300;
}

header .float-menu-tab.step-1 {
  z-index: 400;
}

header .float-menu-tab.step-2 {
  z-index: 500;
}

header .float-menu-tab.step-3 {
  z-index: 600;
}

header .float-menu-tab-header {
  border-bottom: solid 1px #fff;
  line-height: 20px;
  padding: 20px;
  min-height: 64px;
}

header .float-menu-tab-header-title {
  -webkit-transition: opacity 500ms ease;
  transition: opacity 500ms ease;
  color: #999;
  pointer-events: none;
  font-size: 18px;

}

header .float-menu-tab-header-back {
  color: #000;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

header .float-menu-tab.step .float-menu-tab-header-back {
  display: block;
}

header .float-menu-tab-content {
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  height:  calc(100% - 64px);
  position: relative;
  padding: 10px 20px 20px;
}

header .float-menu-tab-content-item {
  cursor: pointer;
  position: relative;
  color: #666;
  font-weight: 400;
  padding: 14px 0 14px 8px;
  line-height: 20px;
  border-bottom: #ececec solid 1px;
}

header .float-menu-tab-content-item:hover {
  color: #000;
}

header .float-menu-tab-content-item.active .float-menu-tab-content-item-text {
  color: var(--primary-color-hover);
}

header .float-menu-tab-content .float-menu-tab-content-item:last-of-type  {
  border-bottom: none;
}

header .float-menu-tab-content-item-text {
  font-size: 16px;
}

header .float-menu-tab-content-item-arrow {
  color: #ccc;
  font-size: 20px;
}

header .float-menu .float-menu-tab-header .menu-icon.icon-amg {
  display: none;
}

header nav .container-lg > ul > li ul {
  display: none;
}

header nav li {
  float: left;
}

header nav li a {
  display: block;
  font-size: 20;
  line-height: 50px;
  margin-right: 30px;
  padding: 5px 0;
  border-top: solid 1px transparent;
  color: #fff;
  cursor: pointer;
}

header nav li a:hover, header nav li a.active {
  text-decoration: none;
  color: var(--primary-color-hover) !important;
}

.menu-icon {
  display: inline-block;
  height: 20px;
  width: 35px;
  margin-right: 4px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  content: none !important;
  vertical-align: middle;
}

.menu-icon:before {
  content: none !important;
}

.menu-icon.icon-blank {
  display: none;
}

.menu-icon.icon-car-hatch {
  background-image: url('../img/icons/icon-car-hatch.svg');
}

.menu-icon.icon-car-sedan {
  background-image: url('../img/icons/icon-car-sedan.svg');
}

.menu-icon.icon-car-suv {
  background-image: url('../img/icons/icon-car-suv.svg');
}

.menu-icon.icon-car-coupes {
  background-image: url('../img/icons/icon-car-coupes.svg');
}

.menu-icon.icon-car-cabrio {
  background-image: url('../img/icons/icon-car-coupes.svg');
}

.menu-icon.icon-amg {
  background-image: url('../img/icons/amg.svg');
}

.menu-icon.icon-eq {
  background-image: url('../img/icons/eq.svg');
}

.menu-icon.icon-eletrico {
  background-image: url('../img/icons/eletrico.svg');
}

.nav-toolbar {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  right: 0;
  width: 100%;
  display: flex;
  pointer-events: none;
}

.nav-toolbar a {
  font-family: 'Daimler CS Demi', Arial, Helvetica, sans-serif;
  pointer-events: initial;
  flex-grow: 1;
  flex-basis: 0;
  width: auto;
  max-width: 100%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  background-color: #333;
  border-right: 1px solid #000;
  overflow: hidden;
  font-size: 12px;
  line-height: 16px;
  padding: 6px 0 3px;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}

.nav-toolbar a:last-child {
  border-right: none;
}

.nav-toolbar a i.icon {
  line-height: 40px;
  font-size: 30px;
}

.nav-toolbar a span {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }

  .hamburger-menu {
    display: none;
  }

  header .logo img {
    height: 30px;
  }

  header .logo-mercedesbenz {
    width: 100px;
    padding: 10px 0 !important;
  }

  header .logo-mercedesbenz img {
    width: 80px;
    height: 80px;

  }

  header .logo-savarauto img {
    height: 40px;
  }

  header .float-menu {
    right: inherit;
    top: 15px;
    bottom: initial;
    left: 0;
    min-height: 460px;
  }

  header .float-container {
    position: relative;
  }

  .nav-toolbar {
    bottom: initial;
    top: 45%;
    right: 0;
    width: initial;
    flex-direction: column;
  }

  .nav-toolbar a {
    border: none;
    margin-bottom: 3px;
    color: #fff;
    background-color: var(--primary-color-hover);
    width: 180px;
    height: 40px;
    line-height: 30px;
    display: block;
    text-align: left;
    flex-basis: auto;
    padding: 0px 7px;
    -moz-transform: translateX(140px);
    -webkit-transform: translateX(140px);
    -o-transform: translateX(140px);
    -ms-transform: translateX(140px);
    transform: translateX(140px);
  }

  .nav-toolbar a:hover {
    background-color: #0088c6;
    -moz-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -o-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }

  .nav-toolbar a span {
    display: inline-block;
    text-overflow: inherit;
    line-height: 25px;
    margin-top: 9px;
  }

  .nav-toolbar a i.icon {
    font-size: 26px;
    line-height: 30px;
    vertical-align: text-bottom;
    margin-right: 5px;
  }
}


/* Footer */

footer .legal {
  text-align: center;
  font-size: 13px;
  padding: 8px 0;
}

footer .legal .bar {
  margin: 0 10px;
}

footer .sitemap {
  display: block;
  background: #252525;
  background: -moz-linear-gradient(top,  #252525 0%, #1b1b1b 100%);
  background: -webkit-linear-gradient(top,  #252525 0%,#1b1b1b 100%);
  background: linear-gradient(to bottom,  #252525 0%,#1b1b1b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#252525', endColorstr='#1b1b1b',GradientType=0 );
}

footer .sitemap .container-lg {
  padding-bottom: 30px;
}

footer .footer-top-bar {
  padding: 30px 0;
}

footer .footer-top-bar a {
  font-size: 20px;
  line-height: 20px;
  font-family: 'Daimler CS Demi', Arial, Helvetica, sans-serif;
}

footer .footer-midias {
  padding: 15px 0;
  border-top: solid 1px #666;
  border-bottom: solid 1px #666;
  margin-bottom: 30px;
}

footer .footer-midias a {
  font-size: 30px;
  line-height: 30px;
}

.footer-address a .footer-address strong {
  font-family: 'Daimler CS Demi', Arial, Helvetica, sans-serif;
}

.footer-links {
  line-height: 30px;
  border-right: solid 1px #666;
}

@media (min-width: 992px) {
  .footer-address {
    padding-left: 40px;
  }
}

/* Sliders */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
  color: #fff;
}

.swiper-button-next:after {
  content: "\e912";
}

.swiper-button-prev:after {
  content: "\e90e";
}

/* Highlight */
.highlight-item {
  display: block;
  cursor: pointer;
  position: relative;
  margin-bottom: 25px;
}

.highlight-title {
  font-family: 'Corporate A Condensed', 'Daimler CS', Arial, Helvetica, sans-serif;
  display: block;
  font-size: 20px;
  line-height: 30px;
}

.highlight-plus {
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: 20px;
  font-size: 16px;
  text-align: center;
  width: 20px;
  height: 20px;
  background-color: rgba(0, 0, 0, .5);
  padding-top: 3px;
}

@media (min-width: 992px) {
  .highlight-title {
    font-size: 22px;
    line-height: 30px;
  }
}

/* Welcome */
.welcome-swiper-link {
  position: relative;
  display: block;
  color: #000;
}

.welcome-swiper-link:hover {
  color: #000;
}

.welcome-swiper-text {
  background-color: #fff;
  display: block;
  width: 100%;
  padding: 30px 15px;
}

.welcome-swiper .swiper-pagination-bullet {
  background: #666;
}

.welcome-swiper .swiper-pagination-bullet-active {
  background: var(--primary-color-hover);
}

.welcome-highlight {
  padding: 30px 15px 15px;
}

.passengercars {
  background-color: #fff;
  padding: 30px 0;
  color: #000;
}

.passengercars-filters {
  display: block;
  margin-left: -13px;
  padding: 15px 0;
}

.passengercars-filters a {
  font-family: 'Daimler CS Demi', Arial, Helvetica, sans-serif;
  color: #000;
  display: inline-block;
  line-break: 30px;
  font-size: 20;
  padding: 0 13px 0 12px;
  border-right: solid 1px #252525;
}

.passengercars-filters a.active, .passengercars-filters a:hover {
  color: var(--primary-color-hover);
}

.passengercars-filters a:last-of-type {
  border-right: none;
}

.passengercars-item {
  position: relative;
  border-left: solid 1px transparent;
  padding-top: 20px;
  margin-bottom: 50px;
}

.passengercars-item h3 {
  color: #252525;
  margin: 0;
  font-family: 'Daimler CS Demi', Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 24 px;
}

.passengercars-item p {
  color: #8C8C8C;
  margin: 0;
  font-family: 'Daimler CS Demi', Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 22px;
}

.passengercars-category {
  padding-left: 15px;
  font-family: 'Corporate A Condensed', 'Daimler CS', Arial, Helvetica, sans-serif;
  color: #8C8C8C;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 26px;
  line-height: 30px;
  visibility: hidden;
}

.passengercars-item.category-active {
  border-left-color: #8C8C8C;
}

.passengercars-item.category-active .passengercars-category {
  visibility: visible;
}

.passengercars-item-content {
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.4);
  position: absolute;
  z-index: 400;
  top: 4%;
  left: 4%;
  right: 4%;
  display: none;
  background-color: #fff;
  border-radius: 6px 6px 0 0;
}

.passengercars-item-content .swiper-slide img {
  background-color: #fff;
}

.passengercars-item-content-links {
  display: block;
  border-top: solid 1px #787878;
}

.passengercars-item-content-links a {
  color: #787878;
  display: block;
  border: solid 1px #787878;
  border-top: none;
  padding: 0 15px;
  line-height: 36px;
  font-size: 18px;
  font-family: 'Daimler CS Demi', Arial, Helvetica, sans-serif;
}

.passengercars-item-content-links a:hover {
  color: var(--primary-color-hover);
}

.passengercars-item-content-title {
  color: #000;
  font-family: 'Corporate A Condensed', 'Daimler CS', Arial, Helvetica, sans-serif;
  text-align: center;
  display: block;
  padding-top: 25px;
  line-height: 26px;
  font-size: 24px;
}

.passengercars-item.active .passengercars-item-content {
  display: block;
}

.passengercars-list-hide .passengercars-item:nth-child(n+5) {
  display: none;
}

#welcome-passengercars .show-more {
  text-align: center;
  display: none;
}

#welcome-passengercars .show-more a {
  color: #000;
  line-height: 36px;
  font-size: 18px;
  font-family: 'Daimler CS Demi', Arial, Helvetica, sans-serif;
  border-top: solid 1px #000;
  padding: 10px 15px;
}

#welcome-passengercars .show-more a:hover {
  color: var(--primary-color-hover);
}

#welcome-passengercars.passengercars-list-hide .show-more {
  display: block;
}


#fraud-warning {
  background: fixed;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
}

#fraud-warning a {
  color: var(--primary-color);
}

#fraud-warning a:hover {
  color: var(--primary-color-active);
}

#fraud-warning {
  display: none;
  background-color: #000;
  padding: 7px 0;
  border-top: solid 1px #666;
}

#fraud-warning .grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  grid-column-gap: 20px;
  grid-row-gap: 0;
  align-items: center;
  justify-items: center;
  font-size: 10px;
}

#fraud-warning .grid p:last-child {
  margin-bottom: 10px;
}

#fraud-warning img {
  width: 50px;
}

@media (min-width: 768px) {
  #fraud-warning .grid {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 1fr;
    font-size: 12px;
  }
}

@media (min-width: 992px) {
  .welcome-swiper .swiper-pagination-bullet {
    width: 60px;
    height: 3px;
    border-radius: 0;
    background: #fff;
  }

  .welcome-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color-hover);
  }

  .welcome-swiper-link, .welcome-swiper-link:hover {
    color: #fff;
  }

  .welcome-swiper-text {
    position: absolute;
    top: 0;
    background-color: transparent;
    display: none;
  }

  .welcome-highlight {
    padding: 60px 15px 45px;
  }

  .passengercars-item-content .swiper-pagination-bullet {
    background: #989898;
  }

  .passengercars-item-content .swiper-pagination-bullet-active {
    background: #333333;
  }
}

/* Form Page */
.form-page {
  background-color: #fff;
  padding: 30px 0;
  color: #000;
}

.form-page h1, h2 {
  margin-bottom: 30px;
}

.form-page a {
  color: #000;
}

.form-page a:hover {
  color: var(--primary-color-hover);
}

.form-page p {
  margin-bottom: 30px;
}

/* Contact */
.stores-list {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 45px;
}
.stores-list .btn {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stores-list .btn > span, .stores-list .btn > i {
  display: flex;
}

/* Markdown */
.markdown-view {
  background-color: #fff;
  color: #000;
  padding: 25px 25px 10px 25px;
  min-height: 400px;
}

.markdown-view pre,
.markdown-view code {
  font-family: Menlo, Monaco, "Courier New", monospace;
}

.markdown-view pre {
  padding: .5rem;
  line-height: 1.25;
  overflow-x: scroll;
}

.markdown-view a,
.markdown-view a:visited {
  color: #000;
  text-decoration: underline;
}

.markdown-view a:hover,
.markdown-view a:focus,
.markdown-view a:active {
  color: var(--primary-color-hover);
}

.markdown-view p {
  font-size: 1rem;
  margin-bottom: 1.3rem;
}

.markdown-view h1,
.markdown-view h2,
.markdown-view h3,
.markdown-view h4 {
  margin: 1.414rem 0 .5rem;
  font-weight: 400;
  line-height: 1.42;
}

.markdown-view h1 {
  margin-top: 0;
}

.markdown-view small {
  font-size: .707em;
}

.markdown-view img,
.markdown-view svg {
  max-width: 100%;
}

.markdown-view blockquote {
  border-left: 3px solid #000;
  padding-left: 1rem;
}

.markdown-view table {
  padding: 0;
  margin: 0 0 15px 0;
  width: 100%;
}

.markdown-view table tr {
  border-top: 1px solid #cccccc;
  background-color: white;
  margin: 0;
  padding: 0;
}

.markdown-view table tr th {
  font-family: 'Daimler CS Demi', Arial, Helvetica, sans-serif;
  border: 1px solid #cccccc;
  border-bottom-width: 2px;
  text-align: center;
  margin: 0;
  padding: 6px 13px;
}

.markdown-view table tr td {
  border: 1px solid #cccccc;
  text-align: left;
  margin: 0;
  padding: 6px 13px;
}

.markdown-view table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

.markdown-attachments {
  background: #fff;
  color: #000;
}

/* Services */
.services {
  padding: 60px 0;
}

/* Collection */
.collection-gallery {
  padding: 60px 0;
}

.collection-gallery .zoom {
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, .5);
  padding-top: 4px;
}

.collection-gallery .collection-item {
  padding: 0 7.5px 15px;
}

.collection-gallery .collection-item h4 {
  margin: 0;
  padding: 10px 0 0;
  line-height: 26px;
  font-size: 20px;
  padding-top: 4px;
}

/* WhatsApp */
.whatsapp-container {
  margin-bottom: 65px;
}

.whatsapp-container a {
  border: solid 1px black;
  border-radius: 6px;
  text-align: center;
  padding: 30px 15px;
  min-width: 180px;
}

.whatsapp-container a > i {
  font-size: 36px;
}

.whatsapp-container a > span {
  display: block;
}

.whatsapp-container a:hover {
  border-color: var(--primary-color-hover);
}

.whatsapp-container a:active {
  border-color: var(--primary-color-active);
}
