@font-face {
  font-family: "bmwTypeNextTT";
  src: url("fonts/BMWTypeNextTT-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "bmwTypeNextTT";
  src: url("fonts/BMWTypeNextTT-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "bmwTypeNextTT";
  src: url("fonts/BMWTypeNextTT-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "miniSansSerif";
  src: url("fonts/MINISansSerif-Regular-v2.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "miniSerif";
  src: url("fonts/MINISerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "miniSerif";
  src: url("fonts/MINISerif-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "miniSerif";
  src: url("fonts/MINISerif-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "bmwMotorrad";
  src: url("fonts/BMWMotorrad-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "bmwMotorrad";
  src: url("fonts/BMWMotorrad-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "bmwMotorrad";
  src: url("fonts/BMWMotorrad-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "bmwMotorrad";
  src: url("fonts/BMWMotorrad-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@media (min-width: 768px) {
  .mobile--only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .desktop--only {
    display: none !important;
  }
}
body {
  --text-family: "bmwTypeNextTT", Arial, sans-serif;
  --text-family-headings: "bmwTypeNextTT", Arial, sans-serif;
  --text-normal-weight: 300;
  --text-bold-weight: bold;
}
body.r_hp {
  font-family: "bmwTypeNextTT", Arial, sans-serif;
}
body.r_hp strong {
  font-family: "bmwTypeNextTT", Arial, sans-serif;
  font-weight: bold;
}
body.r_hp .main-hp-header {
  background-color: #222;
  color: #fff;
  padding: 2rem 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  body.r_hp .main-hp-header {
    padding: 1.5rem 2rem;
  }
}
body.r_hp .main-hp-header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1840px;
  width: 100%;
}
body.r_hp .main-hp-header .header-logo {
  width: auto;
  height: 40px;
  display: block;
}
@media (max-width: 768px) {
  body.r_hp .main-hp-header .header-logo {
    height: 20px;
  }
}
body.r_hp .main-hp-header .header-tagline {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.5;
  text-align: right;
  color: #fff;
  margin: 0;
  max-width: 476px;
}
@media (max-width: 900px) {
  body.r_hp .main-hp-header .header-tagline {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  body.r_hp .main-hp-header .header-tagline {
    font-size: 18px;
  }
}
body.r_hp .main-hp-body {
  background-color: #222;
  padding: 0;
  font-family: ;
}
body.r_hp .main-hp-body .brand-images-container {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 7px;
  max-width: 1840px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  body.r_hp .main-hp-body .brand-images-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
body.r_hp .main-hp-body .brand-image-box {
  position: relative;
  overflow: hidden;
  height: 80vh;
}
@media (max-width: 900px) {
  body.r_hp .main-hp-body .brand-image-box {
    aspect-ratio: auto;
    height: 215px;
  }
}
body.r_hp .main-hp-body .brand-image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
body.r_hp .main-hp-body .brand-image-link:focus {
  outline: 2px solid #1a56e8;
  outline-offset: -2px;
}
body.r_hp .main-hp-body .brand-image-link:hover .brand-image {
  transform: scale(1.05);
}
body.r_hp .main-hp-body .brand-image-link:hover .brand-image-overlay {
  transform: translateY(-5px);
}
@media (max-width: 900px) {
  body.r_hp .main-hp-body .brand-image-link:hover .brand-image-overlay {
    transform: translateY(0) translateX(-2px);
  }
}
body.r_hp .main-hp-body .brand-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
body.r_hp .main-hp-body .brand-image-overlay {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  height: 95px;
  padding: 0 2rem;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
@media (max-width: 900px) {
  body.r_hp .main-hp-body .brand-image-overlay {
    bottom: unset;
    top: 0;
    height: 100%;
    justify-content: flex-start;
    background: linear-gradient(to right,rgba(0,0,0,0.85) 0%,rgba(0,0,0,0) 80%);
  }
}
body.r_hp .main-hp-body .brand-image-overlay .brand-logo.brand-logo-bmw {
  height: 94px;
}
body.r_hp .main-hp-body .brand-image-overlay .brand-logo.brand-logo-mini {
  height: 74px;
}
body.r_hp .main-hp-body .brand-image-overlay .brand-logo.brand-logo-motorrad {
  height: 70px;
}
header.r_header {
  --menu-spacing: 1rem;
  --menu-left-padding: 0;
  --menu-brands-spacing: 5px;
  --logo-height: 20px;
  background: var(--bg-color);
  height: 120px;
  border-bottom: none;
  font-family: var(--text-family);
}
@media (min-width: 1500px) {
  header.r_header {
    --menu-spacing: 50px;
    --menu-left-padding: 40px;
    --menu-brands-spacing: 10px;
    --logo-height: 32px;
  }
}
@media (min-width: 1024px) and (max-width: 1499px) {
  header.r_header {
    --menu-spacing: 30px;
    --menu-left-padding: 25px;
    --logo-height: 24px;
  }
}
@media (max-width: 450px) {
  header.r_header {
    --logo-height: 15px;
  }
}
header.r_header.r_header--transparent {
  --fg-color: #fff;
  --bg-color: transparent;
  --hover-fg-color: #c5c4c4;
  --border-color: #dbdbdb;
  --border-active-color: #fff;
  transition: background-color 0.5s ease, color 0.5s ease;
}
header.r_header.r_header--transparent .r_header--brands .r_header--brand img.brand--light {
  display: none;
}
header.r_header.r_header--transparent .r_header--brands .r_header--brand img.brand--dark {
  display: block;
}
header.r_header.r_header--transparent .r_header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 230px;
  background-image: linear-gradient(to bottom,#151515,rgba(0,0,0,0.37) 63%,rgba(0,0,0,0));
  pointer-events: none;
}
header.r_header.r_header--solid,
header.r_header.r_header--transparent.r_header--scrolled {
  --fg-color: #151515;
  --bg-color: #fff;
  --hover-fg-color: #1a56e8;
  --border-color: #dbdbdb;
  --border-active-color: #151515;
}
header.r_header.r_header--solid .r_header--brands .r_header--brand img.brand--light,
header.r_header.r_header--transparent.r_header--scrolled .r_header--brands .r_header--brand img.brand--light {
  display: block;
}
header.r_header.r_header--solid .r_header--brands .r_header--brand img.brand--dark,
header.r_header.r_header--transparent.r_header--scrolled .r_header--brands .r_header--brand img.brand--dark {
  display: none;
}
header.r_header.r_header--solid .r_header--overlay,
header.r_header.r_header--transparent.r_header--scrolled .r_header--overlay {
  display: none;
}
header.r_header .r_header--border-bottom-wrapper {
  width: 100%;
  position: absolute;
  bottom: 0;
  max-width: 1840px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
header.r_header .r_header--border-bottom-wrapper .r_header--border-bottom {
  background: var(--border-color);
  height: 1px;
  margin: 0 15px;
}
header.r_header .logo {
  padding-right: 0;
}
header.r_header .logo img {
  height: var(--logo-height);
  width: auto;
}
header.r_header.r_header--solid .logo img.r_header--logo-light,
header.r_header.r_header--transparent.r_header--scrolled .logo img.r_header--logo-light {
  display: block;
}
header.r_header.r_header--solid .logo img.r_header--logo-dark,
header.r_header.r_header--transparent.r_header--scrolled .logo img.r_header--logo-dark {
  display: none;
}
header.r_header.r_header--transparent .logo img.r_header--logo-light {
  display: none;
}
header.r_header.r_header--transparent .logo img.r_header--logo-dark {
  display: block;
}
header.r_header > .wrapper {
  position: relative;
  z-index: 2;
  max-width: 1840px;
  padding: 0 32px;
}
header.r_header .r_header--brands {
  display: flex;
  gap: var(--menu-brands-spacing);
  align-items: center;
}
header.r_header .r_header--brands .r_header--brand {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 10px;
  position: relative;
}
header.r_header .r_header--brands .r_header--brand img {
  width: auto;
  transition: filter 1s ease, opacity 1s ease;
  filter: grayscale(100%);
  opacity: 0.4;
}
header.r_header .r_header--brands .r_header--brand:hover img,
header.r_header .r_header--brands .r_header--brand:active img {
  filter: none;
  opacity: 1;
}
header.r_header .r_header--brands .r_header--brand.brand--active img {
  filter: none;
  opacity: 1;
}
header.r_header .r_header--brands .r_header--brand img.brand--bmw {
  height: 42px;
}
header.r_header .r_header--brands .r_header--brand img.brand--mini {
  height: 27px;
}
header.r_header .r_header--brands .r_header--brand img.brand--motorrad {
  height: 26px;
}
@media (max-width: 600px) {
  header.r_header .r_header--brands .r_header--brand img.brand--bmw {
    height: 32px;
  }
  header.r_header .r_header--brands .r_header--brand img.brand--mini {
    height: 20px;
  }
  header.r_header .r_header--brands .r_header--brand img.brand--motorrad {
    height: 20px;
  }
}
header.r_header .r_header--brands .r_header--brand.brand--active::after {
  content: "";
  position: absolute;
  bottom: -39px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border-active-color);
}
header.r_header .r_header--brands.brands-responsive-mode {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
header.r_header .r_header--brands.brands-responsive-mode.brands-expanded {
  cursor: default;
}
header.r_header .r_header--brands.brands-responsive-mode .brands-slider {
  display: flex;
  gap: var(--menu-brands-spacing);
  align-items: center;
  flex: 1;
  min-width: 0;
}
header.r_header .r_header--brands.brands-responsive-mode .brands-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0 10px;
  height: 42px;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
header.r_header .r_header--brands.brands-responsive-mode .brands-toggle:hover {
  opacity: 0.7;
}
header.r_header .r_header--brands.brands-responsive-mode .brands-toggle .brands-chevron {
  display: block;
  width: 24px;
  height: 24px;
  color: var(--border-active-color,#000);
  transition: transform 0.3s ease;
}
header.r_header .r_header--brands.brands-responsive-mode .r_header--brand {
  flex-shrink: 0;
  transition: opacity 0.3s ease, max-width 0.3s ease, padding 0.3s ease, margin 0.3s ease;
  max-width: 200px;
  overflow: hidden;
}
header.r_header .r_header--brands.brands-responsive-mode .r_header--brand.brand--active {
  cursor: pointer;
}
header.r_header .r_header--brands.brands-responsive-mode .r_header--brand.brands-hidden {
  opacity: 0;
  max-width: 0;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  pointer-events: none;
}
header.r_header .r_header--brands.brands-responsive-mode .r_header--brand.brands-no-transition {
  transition: none;
}
header.r_header .r_header--brands.brands-responsive-mode .r_header--brand.brand--active::after {
  content: "";
  position: absolute;
  bottom: -39px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border-active-color);
}
header.r_header .r_header--brands.brands-responsive-mode.brands-expanded .r_header--brand {
  cursor: default;
}
header.r_header .r_header--brands.brands-responsive-mode.brands-expanded .r_header--brand:not(.brand--active) {
  cursor: pointer;
}
header.r_header .r_header--brands.brands-responsive-mode.brands-expanded .r_header--brand:not(.brand--active):hover {
  opacity: 0.8;
}
header.r_header .header--inner {
  justify-content: space-between;
}
header.r_header .header--inner .r_header--logo-space {
  display: flex;
  align-items: center;
  gap: var(--menu-spacing);
}
header.r_header .header--inner .menu-space {
  padding-left: var(--menu-left-padding);
  gap: var(--menu-spacing);
  align-items: center;
  justify-content: flex-end;
}
header.r_header .header--inner .menu > ul {
  gap: var(--menu-spacing);
}
@media (min-width: 1024px) {
  header.r_header .header--inner .menu li {
    padding: 0;
  }
}
header.r_header .header--inner .menu a {
  font-size: 15px;
  font-weight: var(--text-normal-weight);
  color: var(--fg-color);
  text-transform: none;
}
header.r_header .header--inner .menu a:not(.active):hover {
  color: var(--hover-fg-color);
}
header.r_header .header--inner .menu a.active {
  font-weight: var(--text-bold-weight);
  color: var(--fg-color);
}
@media (max-width: 1023px) {
  header.r_header .header--inner .menu a {
    color: #151515;
  }
}
header.r_header .header--inner .menu .menu--subitems a {
  color: #151515;
}
header.r_header .header--inner .menu .menu--subitems a.active {
  color: var(--hover-fg-color);
}
@media (min-width: 1024px) {
  header.r_header .header--inner .eshop {
    margin-left: 0;
    padding: 0;
    gap: 37px;
  }
}
@media (max-width: 1023px) {
  header.r_header .header--inner .eshop .header-search {
    display: none;
  }
}
header.r_header .header--inner .header-search {
  margin-right: 0;
}
header.r_header .header--inner .header-search .header-search-button {
  border-radius: 3px;
  padding: 15px 28px;
}
@media (max-width: 1340px) {
  header.r_header .header--inner .header-search .header-search-button {
    display: none;
  }
}
header.r_header .header--inner .header-search .header-search-button span {
  margin-left: 0;
  font-weight: bold;
  font-size: 15px;
}
header.r_header .header--inner .header-search .r_header--search-icon {
  display: inline-block;
}
@media (min-width: 1341px) {
  header.r_header .header--inner .header-search .r_header--search-icon {
    display: none;
  }
}
header.r_header .header--inner .eshop-link {
  font-family: "bmwTypeNextTT", Arial, sans-serif;
  color: var(--fg-color);
  font-weight: bold;
  font-size: 15px;
}
@media (max-width: 1023px) {
  header.r_header .header--inner .eshop-link {
    color: #151515;
  }
  header.r_header .header--inner .eshop-link svg path {
    fill: #151515;
  }
}
header.r_header .header--inner .eshop-link svg path {
  fill: var(--fg-color);
}
header.r_header .header--inner .eshop-link:hover {
  color: var(--hover-fg-color);
}
header.r_header .header--inner .eshop-link:hover svg path {
  fill: var(--hover-fg-color);
}
header.r_header .header--inner .r_header--search-icon svg path {
  fill: var(--fg-color);
}
header.r_header .header--inner .r_header--search-icon:hover svg path {
  fill: var(--hover-fg-color);
}
header.r_header .header--inner .r_header--mobile-group {
  display: none;
}
@media (max-width: 1023px) {
  header.r_header .header--inner .r_header--mobile-group {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}
header.r_header .header--inner .r_header--menu-button.menu-button span {
  background-color: var(--fg-color);
}
header.r_header .header--inner .r_header--menu-button.menu-button.active span {
  background-color: var(--hover-fg-color);
  display: block;
  height: 2px;
}
.search-header {
  font-family: var(--text-family);
}
.search-dropdown--wrapper {
  font-family: var(--text-family);
}
.homepage {
  font-family: var(--text-family);
}
.page {
  font-family: var(--text-family);
}
.r-footer {
  background: #222;
  color: #fff;
  padding-top: 2rem;
  padding-bottom: 6rem;
  font-family: "bmwTypeNextTT", Arial, sans-serif !important;
}
.r-footer .wrapper {
  max-width: 1840px;
}
.r-footer .footer--main__inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 4rem;
}
@media (max-width: 1160px) {
  .r-footer .footer--main__inner {
    grid-template-columns: repeat(2,1fr);
    gap: 3rem;
  }
}
.r-footer .footer--main__column {
  border-right: none;
  padding: 10px 20px;
}
@media (max-width: 768px) {
  .r-footer .footer--main__inner {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0rem;
  }
  .r-footer .footer--main__column {
    width: 100%;
  }
}
@media (max-width: 460px) {
  .r-footer .footer--main__column {
    text-align: left;
  }
}
.r-footer h4,
.r-footer h5 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 900px) {
  .r-footer h4,
  .r-footer h5 {
    font-size: 14px;
  }
}
.r-footer h4 svg,
.r-footer h5 svg {
  margin-right: 2rem;
}
.r-footer h4 {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(112,112,112,0.4);
}
@media (max-width: 900px) {
  .r-footer h4 {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .r-footer h4 {
    font-size: 20px;
    border-top: 1px solid rgba(112,112,112,0.4);
    border-bottom: none;
    padding-top: 1.8rem;
  }
}
.r-footer li {
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 1rem;
  font-weight: 300;
}
@media (max-width: 900px) {
  .r-footer li {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .r-footer li {
    font-size: 16px;
  }
}
.r-footer p {
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 1rem;
  font-weight: 300;
}
@media (max-width: 900px) {
  .r-footer p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .r-footer p {
    font-size: 16px;
  }
}
.r-footer a {
  color: #fff;
  text-decoration: none;
}
.r-footer a:hover {
  color: #2279fd;
}
.r-footer .footer--main__column-socials {
  gap: 8px;
}
.r-footer .footer--main__column-socials.mobile-center-content {
  justify-content: center;
  margin: 3rem 0;
}
.r-footer .footer--main__column-socials a {
  width: 37px;
  height: 37px;
}
.r-footer .footer--main__column-socials a.fb {
  background-image: url("redesign/ico-facebook.svg");
}
.r-footer .footer--main__column-socials a.fb:hover {
  background-image: url("redesign/ico-facebook-hover.svg");
}
.r-footer .footer--main__column-socials a.ig {
  background-image: url("redesign/ico-instagram.svg");
}
.r-footer .footer--main__column-socials a.ig:hover {
  background-image: url("redesign/ico-instagram-hover.svg");
}
.r-footer.common-footer .footer--top {
  margin: 42px 20px;
}
.r-footer.common-footer .footer--top .footer--top-inner {
  display: flex;
  align-items: center;
}
.r-footer.common-footer .footer--top img {
  height: 36px;
  width: auto;
}
.r-footer.common-footer .footer--top span {
  display: block;
  max-width: 11.5rem;
  margin-left: 1.8rem;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.25;
}
@media (min-width: 1400px) {
  .r-footer.common-footer .footer--main__inner {
    grid-template-columns: 1fr 2.1fr 1fr;
  }
}
@media (min-width: 768px) and (max-width: 1399px) {
  .r-footer.common-footer .footer--main__inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
  }
}
.r-footer.common-footer .footer--main__inner h4.less-important {
  font-weight: 300;
}
@media (max-width: 768px) {
  .r-footer.common-footer .footer--main__inner h4.less-important {
    display: none;
  }
}
.r-footer.common-footer .footer--main__inner h4 {
  margin-bottom: 1.5rem;
}
.r-footer.common-footer .footer--main__inner hr {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  border-color: rgba(112,112,112,0.4);
}
@media (max-width: 768px) {
  .r-footer.common-footer .footer--main__column.footer--wide {
    padding: 0 20px;
  }
}
@media (min-width: 1400px) {
  .r-footer.common-footer .footer--main__brands {
    display: grid;
    grid-template-columns: repeat(3,1fr);
  }
}
@media (min-width: 769px) and (max-width: 1399px) {
  .r-footer.common-footer .footer--main__brands h5 {
    border-top: 1px solid rgba(112,112,112,0.4);
    padding-top: 20px;
    padding-bottom: 15px;
  }
  .r-footer.common-footer .footer--main__brands .no-top-border h5 {
    border-top: none;
  }
}
@media (max-width: 768px) {
  .r-footer.common-footer .footer--main__brands h5 {
    font-size: 20px;
    border-top: 1px solid rgba(112,112,112,0.4);
    border-bottom: none;
    padding-top: calc(1.8rem + 10px);
    padding-bottom: 20px;
  }
}
.r-footer.common-footer .footer--main__workshop-link {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.r-footer.common-footer .footer--main__workshop-link span.workshop-name {
  font-weight: bold;
}
.r-footer.common-footer .footer--main__workshop-link span.workshop-address {
  font-weight: 300;
}
body.r_common strong {
  font-family: var(--text-family);
  font-weight: var(--text-bold-weight);
}
body.r_common .hide-on-brands-select-open {
  transition: opacity 0.2s ease;
}
body.r_common .hide-on-brands-select-open.hidden-by-brands {
  display: none !important;
}
body.r_common .hide-on-brands-select-open.fading-out {
  opacity: 0;
}
body.r_common .hide-on-brands-select-open.fading-in {
  opacity: 0;
  animation: fadeIn 0.2s ease forwards;
}
@keyframes fadeIn {
  body.r_common from {
    opacity: 0;
  }
  body.r_common to {
    opacity: 1;
  }
}
body.r_common .container {
  margin-top: 120px;
}
body.r_common .container.r_header--transparent {
  margin-top: 0;
}
body.r_common.r_hp .container {
  margin-top: 0;
}
body.r_common button.button,
body.r_common a.button,
body.r_common a.button_blue,
body.r_common a.button_transparent,
body.r_common a.button_white,
body.r_common a.button_black {
  font-family: var(--text-family);
}
body.r_common a.button {
  font-size: 15px;
  font-weight: var(--text-bold-weight);
  border-radius: 3px;
}
body.r_common a.button_blue {
  font-size: 15px;
  font-weight: var(--text-bold-weight);
  border-radius: 3px;
}
body.r_common a.button_transparent {
  font-weight: var(--text-bold-weight);
  border-radius: 3px;
}
body.r_common a.button_transparent_bw {
  color: #fff;
  border-color: #fff;
  backdrop-filter: blur(30px);
  font-weight: var(--text-normal-weight);
}
body.r_common a.button_transparent_bw:hover {
  color: #222;
}
@media (max-aspect-ratio: 1.1111111111111) {
  body.r_common .slider-main {
    height: 100vh;
  }
}
body.r_common .slider-main__wrapper {
  position: absolute;
  width: min(100%, 1840px);
  top: 0;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  z-index: 3;
}
body.r_common .slider-main__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
@media (max-aspect-ratio: 1.1111111111111),(max-width: 767px) {
  body.r_common .slider-main__overlay {
    background: linear-gradient(to top,#000000 0%,rgba(0,0,0,0.9) 12%,rgba(0,0,0,0) 52%);
  }
}
@media (min-aspect-ratio: 1.1111111111111) and (min-width: 768px) {
  body.r_common .slider-main__overlay {
    background: linear-gradient(10deg,rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 52%);
  }
}
body.r_common .slider-main__slide-img {
  height: 100%;
}
body.r_common .slider-main__text {
  padding: 0 32px;
  position: absolute;
  bottom: 3%;
  max-width: 900px;
}
@media (max-aspect-ratio: 1.1111111111111),(max-width: 767px) {
  body.r_common .slider-main__text {
    text-align: center;
  }
}
@media (min-aspect-ratio: 1.1111111111111) and (min-width: 768px) {
  body.r_common .slider-main__text {
    bottom: 9%;
  }
}
body.r_common .slider-main__text h1,
body.r_common .slider-main__text h2,
body.r_common .slider-main__text p {
  color: #fff;
}
body.r_common .slider-main__text-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 550px) {
  body.r_common .slider-main__text-buttons {
    flex-direction: row;
    gap: 20px;
  }
}
@media (max-width: 549px) {
  body.r_common .slider-main__text-buttons a {
    width: 80%;
  }
}
@media (max-aspect-ratio: 1.1111111111111),(max-width: 767px) {
  body.r_common .slider-main__text-buttons {
    justify-content: center;
  }
}
body.r_common .slider-main__slide--left .slider-main__text {
  left: 0;
}
@media (max-aspect-ratio: 1.1111111111111),(max-width: 767px) {
  body.r_common .slider-main__slide--left .slider-main__text {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}
body.r_common .slider-main__slide--right .slider-main__text {
  right: 0;
}
@media (max-aspect-ratio: 1.1111111111111),(max-width: 767px) {
  body.r_common .slider-main__slide--right .slider-main__text {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}
body.r_common .slider-main__slide--right .slider-main__text h1,
body.r_common .slider-main__slide--right .slider-main__text h2,
body.r_common .slider-main__slide--right .slider-main__text p {
  text-align: right;
}
@media (max-aspect-ratio: 1.1111111111111),(max-width: 767px) {
  body.r_common .slider-main__slide--right .slider-main__text h1,
  body.r_common .slider-main__slide--right .slider-main__text h2,
  body.r_common .slider-main__slide--right .slider-main__text p {
    text-align: center;
  }
}
body.r_common .slider-main__slide--right .slider-main__text .slider-main__text-buttons {
  justify-content: flex-end;
}
@media (max-aspect-ratio: 1.1111111111111),(max-width: 767px) {
  body.r_common .slider-main__slide--right .slider-main__text .slider-main__text-buttons {
    justify-content: center;
  }
}
@media (min-aspect-ratio: 1.1111111111111) and (min-width: 768px) {
  body.r_common .slider-main__slide--right .slider-main__overlay {
    background: linear-gradient(-10deg,rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 52%);
  }
}
body.r_common .slider-socials {
  position: absolute;
  top: 20%;
  right: 0;
  width: 54px;
  display: flex;
  flex-direction: column;
  z-index: 70;
  gap: 3px;
}
@media (max-width: 768px) {
  body.r_common .slider-socials {
    top: 150px;
    gap: 10px;
  }
}
body.r_common .slider-socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  -webkit-backdrop-filter: blur(10.4px);
  backdrop-filter: blur(10.4px);
  background-color: rgba(0,0,0,0.5);
}
body.r_common .slider-socials a span {
  width: 28px;
  height: 28px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
body.r_common .slider-socials a span.fb {
  background-image: url("redesign/ico-facebook.svg");
}
body.r_common .slider-socials a span.ig {
  background-image: url("redesign/ico-instagram.svg");
}
body.r_common .slider-socials a:hover span.fb {
  background-image: url("redesign/ico-facebook-hover.svg");
}
body.r_common .slider-socials a:hover span.ig {
  background-image: url("redesign/ico-instagram-hover.svg");
}
body.r_common .homepage h1,
body.r_common .homepage h2,
body.r_common .homepage h3,
body.r_common .homepage h4,
body.r_common .page h1,
body.r_common .page h2,
body.r_common .page h3,
body.r_common .page h4 {
  font-family: var(--text-family-headings);
}
body.r_common .routing--wrapper {
  max-width: 1840px;
  padding: 0 2rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  body.r_common .routing--wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
body.r_common .routing {
  padding-top: 0px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  body.r_common .routing {
    padding-top: 48px;
    padding-bottom: 56px;
    flex-direction: row;
    gap: 10px;
  }
}
body.r_common .routing .routing--two-images {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 1160px) {
  body.r_common .routing .routing--two-images {
    flex-direction: row;
    gap: 10px;
  }
}
@media (min-width: 1160px) {
  body.r_common .routing .routing--want {
    flex: 0 0 calc(((100% - 10px) / 3) * 2);
  }
  body.r_common .routing .routing--got {
    flex: 0 0 calc((100% - 10px) / 3 - 5px);
  }
}
@media (max-width: 1160px) and (min-width: 768px) {
  body.r_common .routing .routing--want,
  body.r_common .routing .routing--got {
    flex: 1;
  }
}
body.r_common .routing h2 {
  margin-bottom: 39px;
}
@media (max-width: 768px) {
  body.r_common .routing h2 {
    margin-bottom: 32px;
    margin-top: 32px;
    text-align: center;
  }
}
body.r_common .routing .routing--image {
  width: 100%;
  aspect-ratio: 1.591;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  body.r_common .routing .routing--image {
    width: auto;
    flex: 1;
  }
}
body.r_common .routing .routing--image img.routing--media {
  width: 100%;
  transition: transform 2000ms;
}
body.r_common .routing .routing--image:hover img.routing--media {
  transform: scale(1.05);
}
body.r_common .routing .routing--image-overlay {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  top: 0;
  left: 0;
  width: max(73%, 390px);
  height: 100%;
  opacity: 0.87;
  background-image: linear-gradient(89deg,#000 1%,rgba(0,0,0,0.36) 61%,rgba(0,0,0,0) 99%);
}
body.r_common .routing .routing--image-overlay > * {
  margin-left: 50px;
}
@media (max-width: 768px) {
  body.r_common .routing .routing--image-overlay > * {
    margin-left: 40px;
  }
}
body.r_common .routing .routing--image-overlay img.routing--image-icon {
  height: 50px;
  width: auto;
}
body.r_common .routing .routing--image-overlay h3 {
  color: #fff;
  font-size: 25px;
  font-weight: bold !important;
  line-height: 1.52;
  margin-bottom: 0;
}
body.r_common .brand-workshops-section {
  max-width: 1840px;
  margin: 0 auto;
  padding: 4rem 2rem 8rem;
}
body.r_common .brand-workshops-section.brand-workshops-section--narrow {
  max-width: 1580px;
  padding-left: 1rem;
  padding-right: 1rem;
}
body.r_common .brand-workshops-section.brand-workshops-section--narrow .brand-workshops
        .brand-workshops__item
        div.brand-workshops__item-details {
  flex: 0 0 275px;
}
@media (max-width: 900px) {
  body.r_common .brand-workshops-section.brand-workshops-section--narrow .brand-workshops
        .brand-workshops__item
        div.brand-workshops__item-details {
    flex: 1 0 auto;
  }
}
body.r_common .brand-workshops-section.brand-workshops-section--narrow .brand-workshops ul.brand-workshops__nav a {
  padding: 40px 32px;
}
body.r_common .brand-workshops-section__title {
  font-size: 40px;
  font-weight: var(--text-normal-weight);
  line-height: 1.38;
  margin-bottom: 64px;
  text-align: center;
  text-transform: uppercase;
}
body.r_common .brand-workshops-section .brand-workshops {
  display: flex;
}
body.r_common .brand-workshops-section .brand-workshops ul.brand-workshops__nav {
  flex: 0 0 415px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e6e6e6;
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
body.r_common .brand-workshops-section .brand-workshops ul.brand-workshops__nav li {
  border-bottom: 1px solid #e6e6e6;
}
body.r_common .brand-workshops-section .brand-workshops ul.brand-workshops__nav a {
  display: block;
  padding: 50px 32px;
  font-size: 22px;
  line-height: 1.1;
  color: #262626;
  font-weight: var(--text-normal-weight);
}
body.r_common .brand-workshops-section .brand-workshops ul.brand-workshops__nav a.active {
  font-weight: var(--text-bold-weight);
}
body.r_common .brand-workshops-section .brand-workshops ul.brand-workshops__nav a:hover {
  color: #1a56e8;
}
body.r_common .brand-workshops-section .brand-workshops .brand-workshops__items {
  position: relative;
  min-height: 550px;
  flex: 1;
}
body.r_common .brand-workshops-section .brand-workshops .brand-workshops__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  display: flex;
}
@media (max-width: 900px) {
  body.r_common .brand-workshops-section .brand-workshops .brand-workshops__item {
    position: static;
    flex-direction: column-reverse;
    width: 100%;
    height: auto;
  }
}
body.r_common .brand-workshops-section .brand-workshops .brand-workshops__item img {
  flex: 1 1 auto;
  width: 0;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  body.r_common .brand-workshops-section .brand-workshops .brand-workshops__item img {
    width: 100%;
    height: 265px;
  }
}
body.r_common .brand-workshops-section .brand-workshops .brand-workshops__item div.brand-workshops__item-details {
  padding: 54px 0 54px 73px;
  flex: 0 0 400px;
}
@media (max-width: 900px) {
  body.r_common .brand-workshops-section .brand-workshops .brand-workshops__item div.brand-workshops__item-details {
    flex: 1 0 auto;
  }
}
body.r_common .brand-workshops-section .brand-workshops .brand-workshops__item div.brand-workshops__item-details h3 {
  font-size: 25px;
  font-weight: var(--text-normal-weight);
  line-height: 1.1;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  body.r_common .brand-workshops-section .brand-workshops .brand-workshops__item div.brand-workshops__item-details h3 {
    display: none;
  }
}
body.r_common .brand-workshops-section .brand-workshops .brand-workshops__item div.brand-workshops__item-details p {
  font-size: 15px;
  font-weight: var(--text-normal-weight);
  line-height: 1.6;
  margin-bottom: 32px;
}
body.r_common .brand-workshops-section .brand-workshops .brand-workshops__item div.brand-workshops__item-details h4 {
  font-size: 15px;
  line-height: 1.6;
  font-weight: var(--text-bold-weight);
  margin-bottom: 0;
}
body.r_common .brand-workshops-section .brand-workshops .brand-workshops__item div.brand-workshops__item-details a:not(.button_blue) {
  color: #1a56e8;
}
body.r_common .brand-workshops-section .brand-workshops .brand-workshops__item div.brand-workshops__item-details a:not(.button_blue):hover {
  color: #2279fd;
}
@media (min-width: 900px) and (max-width: 1400px) {
  body.r_common .brand-workshops-section .brand-workshops .brand-workshops__item {
    flex-direction: column;
  }
  body.r_common .brand-workshops-section .brand-workshops .brand-workshops__item img {
    flex: 0 0 251px;
    width: 100%;
    height: 251px;
  }
  body.r_common .brand-workshops-section .brand-workshops .brand-workshops__item div.brand-workshops__item-details {
    padding: 32px 0 32px 64px;
    flex: 1;
  }
}
@media (min-width: 900px) and (max-width: 1100px) {
  body.r_common .brand-workshops-section .brand-workshops .brand-workshops__item div.brand-workshops__item-details {
    padding-left: 40px;
  }
}
@media (max-width: 900px) {
  body.r_common .brand-workshops-section .brand-workshops .brand-workshops__item div.brand-workshops__item-details {
    padding: 30px 0 50px 0;
  }
}
body.r_common .brand-workshops-section .brand-workshops .brand-workshops__accordion-item {
  padding: 40px 0 22px 0;
  border-bottom: 1px solid #e6e6e6;
}
body.r_common .brand-workshops-section .brand-workshops .brand-workshops__accordion-item:first-child {
  border-top: 1px solid #e6e6e6;
}
body.r_common .brand-workshops-section .brand-workshops .brand-workshops__accordion-header {
  font-size: 22px;
  min-height: 30px;
  line-height: 1.36;
  font-weight: var(--text-normal-weight);
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}
body.r_common .brand-workshops-section .brand-workshops .brand-workshops__accordion-header.active {
  font-weight: var(--text-bold-weight);
}
body.r_common .brand-workshops-section .brand-workshops .brand-workshops__accordion-header::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 15.548px;
  height: 9.093px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="15.548" height="9.093" viewBox="0 0 15.548 9.093"><path d="m30.118 996.284.747-.693L37.892 989l-1.492-1.81-6.281 5.891-6.281-5.891-1.494 1.81 7.027 6.593z" transform="translate(-22.344 -987.19)" style="fill:%23262626"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%) rotate(0deg);
  transform-origin: center;
  transition: transform 0.3s ease;
}
body.r_common .brand-workshops-section .brand-workshops .brand-workshops__accordion-header.active::after {
  transform: translateY(-50%) rotate(-180deg);
}
body.r_common input,
body.r_common textarea {
  font-family: var(--text-family);
}
body.r_common .page {
  --fg-color: #262626;
}
body.r_common .page h1,
body.r_common .page h2,
body.r_common .page h3,
body.r_common .page h4,
body.r_common .page h5 {
  font-weight: var(--text-normal-weight);
}
body.r_common .page p,
body.r_common .page li {
  font-weight: var(--text-normal-weight);
}
body.r_common .page p strong,
body.r_common .page li strong {
  font-family: var(--text-family);
  font-weight: var(--text-bold-weight);
}
body.r_common .page .wrapper {
  max-width: 1580px;
}
body.r_common .page .title-h1,
body.r_common .page .title-h2,
body.r_common .page .title-h3 {
  background-color: transparent;
  border-top: none;
}
body.r_common .page .title-h2 {
  padding-bottom: 0px;
  margin-bottom: -70px;
  font-size: 25px;
}
@media (max-width: 768px) {
  body.r_common .page .title-h2 {
    margin-bottom: -40px;
  }
}
body.r_common .page .title-h1:not(.align-left) {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.38;
}
body.r_common .page .title-h1,
body.r_common .page h1 {
  padding: 56px 0 32px;
  font-size: 45px;
  line-height: 1.38;
  background-color: transparent;
}
body.r_common .page .title-h1.align-left,
body.r_common .page h1.align-left {
  text-align: left;
}
@media (max-width: 768px) {
  body.r_common .page .title-h1,
  body.r_common .page h1 {
    font-size: 32px;
    padding: 32px 0 24px;
  }
}
body.r_common .page a.phone-link {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.36;
  font-weight: var(--text-bold-weight);
  white-space: nowrap;
  color: #262626;
}
body.r_common .page a.phone-link::before {
  position: absolute;
  width: 20px;
  height: 20px;
  content: "";
  background: url(redesign/telephone-rg.svg) no-repeat center center;
  background-size: contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
body.r_common .page a.phone-link.no-image {
  padding-left: 0;
}
body.r_common .page a.phone-link.no-image::before {
  display: none;
}
body.r_common .page a.phone-link.large {
  font-size: 22px;
  padding-left: 32px;
}
body.r_common .page a.phone-link.large.no-image {
  padding-left: 0;
}
body.r_common .page a.arrow_after {
  font-size: 15px;
  font-weight: var(--text-bold-weight);
  position: relative;
}
body.r_common .page a.arrow_after::after {
  content: "";
  display: inline-block;
  transform: translateY(1px);
  width: 14.2px;
  height: 11.6px;
  margin-left: 8px;
  background: url(redesign/arrow-right-rg.svg) no-repeat center center;
  background-size: contain;
}
body.r_common .page .form--submit input {
  border-radius: 3px;
  font-family: var(--text-family);
  font-weight: var(--text-bold-weight);
}
body.r_common .page .form--submit input,
body.r_common .page .form--submit input:hover,
body.r_common .page .form--submit input:active {
  background-image: url(redesign/mail-lt.svg);
  background-repeat: no-repeat;
  background-position: 5% 50%;
}
body.r_common .page .form--row__label label,
body.r_common .page .form--part.has-title .form--row__label label {
  font-family: var(--text-family);
  font-weight: var(--text-normal-weight);
}
body.r_common .page input,
body.r_common .page texarea {
  font-family: var(--text-family);
  font-weight: var(--text-normal-weight);
}
body.r_common .page .form .radiobuttons label .radiobuttons__overlay {
  font-weight: var(--text-normal-weight);
}
body.r_common .page .form--box {
  background: #f5f5f5;
}
body.r_common .page .form--box * {
  color: var(--fg-color);
}
body.r_common .page .form--box__phone {
  padding-left: 0;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
body.r_common .page .model-filters {
  background: #fff;
}
body.r_common .page .model-filters .model-filters__single {
  padding: 20px 0;
}
body.r_common .page .model-filters .model-filters__single h4 {
  font-family: var(--text-family-headings);
  font-weight: var(--text-bold-weight);
}
body.r_common .page .model-filters .model-filters__inner {
  padding: 0 0 0 0;
}
body.r_common .page .models-list {
  background: #fff;
}
@media (max-width: 768px) {
  body.r_common .page .models-list__series {
    flex-direction: column;
  }
  body.r_common .page .models-list__series--title {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
body.r_common .page .models-list__series--title {
  font-family: var(--text-family-headings);
  font-weight: var(--text-normal-weight);
}
body.r_common .page .models-list__cars {
  gap: 1rem;
}
@media (min-width: 900px) {
  body.r_common .page .models-list__cars {
    gap: 2.5rem;
  }
}
body.r_common .page .models-list__car {
  flex: 0 0 100%;
}
@media (min-width: 620px) and (max-width: 899px) {
  body.r_common .page .models-list__car {
    flex: 0 0 48%;
  }
}
@media (min-width: 900px) {
  body.r_common .page .models-list__car {
    flex: 0 0 280px;
  }
}
body.r_common .page .models-list__car a img {
  max-height: 168px;
}
body.r_common .page .models-list__car a h4 {
  margin-top: 0;
  font-size: 20px;
  font-weight: var(--text-bold-weight);
}
body.r_common .page .models-list__car a.models-list__car--stock {
  font-family: var(--text-family);
  font-weight: var(--text-bold-weight);
}
@media (max-width: 768px) {
  body.r_common .page .model-detail .model-intro div.lazy_bck {
    padding-top: 75vh !important;
  }
}
@media (min-width: 769px) and (max-width: 900px) {
  body.r_common .page .model-detail .model-intro div.lazy_bck {
    padding-top: 95vh !important;
  }
}
body.r_common .page .stock-cars__show-more.model-detail .stock-cars__show-more--inner a {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}
@media (min-width: 1280px) {
  body.r_common .page .wide-text {
    padding-top: 3.6vw;
    padding-bottom: 3.6vw;
  }
  body.r_common .page hr {
    margin-top: 1.6vw;
    margin-bottom: 1.6vw;
  }
}
body.r_common .page [data-bg-color="grey"] {
  --fg-color: #262626;
  background-color: #f5f5f5;
}
body.r_common .page [data-bg-color="white"] {
  --fg-color: #262626;
  background-color: #fff;
}
body.r_common .page [data-bg-color="black"] {
  --fg-color: #fff;
  background-color: #262626;
}
body.r_common .page h1,
body.r_common .page h2,
body.r_common .page h3,
body.r_common .page h4,
body.r_common .page h5,
body.r_common .page h6,
body.r_common .page p,
body.r_common .page li,
body.r_common .page span,
body.r_common .page td,
body.r_common .page strong {
  color: var(--fg-color);
}
body.r_common .page hr {
  height: 0;
}
body.r_common .page .wide-text__inner h2 {
  text-transform: uppercase;
}
body.r_common .page table.spec {
  max-width: 1024px;
  margin: 0 auto;
}
body.r_common .page table.spec caption {
  padding-top: 4rem;
  padding-bottom: 1rem;
  margin-bottom: 0;
  font-family: var(--text-family-headings);
  font-weight: var(--text-bold-weight);
}
body.r_common .page table.spec caption h3 {
  margin: 0 0 0 0;
}
body.r_common .page table.spec tbody tr td {
  border-bottom: none;
}
body.r_common .page table.spec tbody tr.spec-part-caption td {
  background-color: transparent;
  width: 100%;
  padding-left: 0;
  padding-top: 3.5rem;
  padding-bottom: 20px;
  border-top: none;
  font-size: 22px;
  font-weight: var(--text-normal-weight);
}
body.r_common .page table.spec tbody tr.spec-part-caption td p {
  font-size: inherit;
}
body.r_common .page table.spec tbody tr.spec-part-caption td p strong {
  font-weight: var(--text-normal-weight);
}
body.r_common .page table.spec tbody tr.spec-alternate-1,
body.r_common .page table.spec tbody tr.spec-alternate-2 {
  display: block;
  padding: 24px 40px;
}
body.r_common .page table.spec tbody tr.spec-alternate-1 td,
body.r_common .page table.spec tbody tr.spec-alternate-2 td {
  width: auto;
  background: transparent;
  padding: 0;
  display: block;
  border: none;
}
body.r_common .page table.spec tbody tr.spec-alternate-1 td p,
body.r_common .page table.spec tbody tr.spec-alternate-2 td p {
  font-size: inherit;
  font-weight: var(--text-normal-weight);
}
body.r_common .page table.spec tbody tr.spec-alternate-1 td:first-child,
body.r_common .page table.spec tbody tr.spec-alternate-2 td:first-child {
  font-size: 13px;
  font-weight: var(--text-normal-weight);
  opacity: 0.5;
}
body.r_common .page table.spec tbody tr.spec-alternate-1 td:last-child,
body.r_common .page table.spec tbody tr.spec-alternate-2 td:last-child {
  margin-top: 10px;
  font-size: 18px;
  font-weight: var(--text-normal-weight);
}
body.r_common .page table.spec tbody tr.spec-alternate-1 {
  background: #fff;
}
body.r_common .page table.spec tbody tr.spec-alternate-2 {
  background: #f5f5f5;
}
@media (min-width: 900px) {
  body.r_common .page table.spec tbody {
    display: flex;
    flex-wrap: wrap;
  }
  body.r_common .page table.spec tbody tr.spec-alternate-1,
  body.r_common .page table.spec tbody tr.spec-alternate-2 {
    width: 50%;
    box-sizing: border-box;
  }
  body.r_common .page table.spec tbody tr.spec-part-caption,
  body.r_common .page table.spec tbody tr.spec-span-full {
    width: 100%;
  }
}
@media (max-width: 899px) {
  body.r_common .page table.spec tbody tr.spec-alternate-1:nth-of-type(odd),
  body.r_common .page table.spec tbody tr.spec-alternate-2:nth-of-type(odd) {
    background: #fff;
  }
  body.r_common .page table.spec tbody tr.spec-alternate-1:nth-of-type(even),
  body.r_common .page table.spec tbody tr.spec-alternate-2:nth-of-type(even) {
    background: #f5f5f5;
  }
}
body.r_common .page .title-h1-image__wrapper .title-h1-image[data-position="center"] {
  top: 75%;
  transform: translate(-50%,-75%);
}
body.r_common .page .title-h1-image__wrapper .title-h1-image[data-position="left"] {
  top: 75%;
  transform: translate(0,-75%);
}
body.r_common .page .title-h1-image__wrapper .title-h1-image[data-position="right"] {
  top: 75%;
  transform: translate(0,-75%);
}
body.r_common .page .title-h1-image__wrapper .title-h1-image.invert-color {
  --fg-color: #fff;
  font-weight: var(--text-normal-weight);
}
@media (max-width: 1600px) and (min-width: 769px) {
  body.r_common .page .stock-car__preview--info {
    padding: 0 0 0 1rem;
  }
}
@media (max-width: 768px) {
  body.r_common .page .stock-car__preview--info {
    padding: 0 1rem;
  }
}
body.r_common .page .stock-car__preview--inner {
  padding-left: 0;
  --stock-car-columns: 1;
  --stock-car-right-gap: 0;
  --stock-car-row-gap: 20px;
}
body.r_common .page .stock-car__preview--inner a.back-link {
  font-family: var(--text-family);
  font-weight: var(--text-bold-weight);
  font-size: 15px;
  color: inherit;
  padding: 20px 0;
}
@media (max-width: 900px) {
  body.r_common .page .stock-car__preview--inner a.back-link {
    padding: 0 0;
  }
}
body.r_common .page .stock-car__preview--inner a.back-link::before {
  content: " ";
  width: 17.5px;
  height: 14.6px;
  display: inline-block;
  margin-right: 15px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="17.478" height="14.602" viewBox="0 0 17.478 14.602"><path d="m7.301 0-7.3 7.3 7.3 7.3h1.37L1.859 7.786h15.62v-.971H1.859L8.671 0z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
body.r_common .page .stock-car__preview--inner .r_premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 15px;
  border-radius: 20px;
  border-color: #00be75;
  border-width: 1.5px;
  border-style: solid;
  font-size: 12px;
  font-weight: var(--text-bold-weight);
  line-height: 1;
}
body.r_common .page .stock-car__preview--inner .r_premium-badge span {
  color: #00be75;
}
body.r_common .page .stock-car__preview--inner .r_premium-badge__wrapper {
  padding-top: 32px;
  position: relative;
}
body.r_common .page .stock-car__preview--inner .r_premium-badge .webshop-product-detail__tags--help {
  position: static;
  display: inline-block;
  transform: none;
  -webkit-transform: none;
}
body.r_common .page .stock-car__preview--inner .r_premium-badge .webshop-product-detail__tags--help span::before {
  color: #00be75;
}
body.r_common .page .stock-car__preview--inner h1 {
  font-size: 45px;
  line-height: 1.38;
  margin: 20px 0 30px 0;
  padding: 0 0 0 0;
}
@media (max-width: 900px) {
  body.r_common .page .stock-car__preview--inner h1 {
    font-size: 30px;
  }
}
@media (min-width: 1450px) {
  body.r_common .page .stock-car__preview--inner {
    --stock-car-columns: 3;
    --stock-car-right-gap: 108px;
    --stock-car-row-gap: 40px;
  }
}
@media (min-width: 640px) and (max-width: 1449px) {
  body.r_common .page .stock-car__preview--inner {
    --stock-car-columns: 2;
    --stock-car-right-gap: 52px;
    --stock-car-row-gap: 30px;
  }
}
body.r_common .page .stock-car__preview--inner .r_stock-main-details {
  display: grid;
  grid-template-columns: repeat(var(--stock-car-columns),auto);
  grid-auto-rows: auto;
  row-gap: var(--stock-car-row-gap);
}
body.r_common .page .stock-car__preview--inner .r_stock-main-details .r_stock-main-details--item {
  padding-right: var(--stock-car-right-gap);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.r_common .page .stock-car__preview--inner .r_stock-main-details .r_stock-main-details--item span.label {
  font-size: 13px;
  font-weight: var(--text-normal-weight);
}
body.r_common .page .stock-car__preview--inner .r_stock-main-details .r_stock-main-details--item span.value {
  font-size: 22px;
  font-weight: var(--text-normal-weight);
  line-height: 1.64;
}
body.r_common .page .stock-cars__premium-selection--inner {
  background: #00be75;
}
body.r_common .page .stock-car__preview--gallery-nav .slick-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(30px);
}
body.r_common .page .stock-car__preview--gallery-nav .slick-arrow::after {
  content: "";
  width: 12px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
body.r_common .page .stock-car__preview--gallery-nav .slick-arrow.slick-next {
  right: 0;
  background-image: none;
}
body.r_common .page .stock-car__preview--gallery-nav .slick-arrow.slick-prev {
  left: 0;
  background-image: none;
}
body.r_common .page .stock-car__preview--gallery-nav .slick-arrow.slick-prev::after {
  background-image: url(redesign/ico-arrow-left.svg);
}
body.r_common .page .stock-car__preview--gallery-nav .slick-arrow.slick-next::after {
  background-image: url(redesign/ico-arrow-right.svg);
}
body.r_common .page .stock-car__info {
  align-items: flex-start;
}
body.r_common .page .stock-car__price {
  background: transparent;
  border-bottom: none;
}
@media (min-width: 900px) {
  body.r_common .page .stock-car__price {
    flex: 1;
  }
}
body.r_common .page .stock-car__buy {
  background: transparent;
}
@media (min-width: 900px) {
  body.r_common .page .stock-car__buy {
    flex: 1;
  }
}
body.r_common .page .r_stock-price.r_stock-car-desktop-only {
  display: none;
}
@media (min-width: 1366px) {
  body.r_common .page .r_stock-price.r_stock-car-desktop-only {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 2rem;
  }
}
body.r_common .page .r_stock-price.r_stock-car-mobile-only {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  body.r_common .page .r_stock-price.r_stock-car-mobile-only {
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
  }
}
body.r_common .page .r_stock-price .r_stock-price--main span.r_stock-price--label {
  display: block;
  font-size: 22px;
  font-weight: var(--text-normal-weight);
}
body.r_common .page .r_stock-price .r_stock-price--main span.r_stock-price--value {
  display: block;
  font-size: 45px;
  line-height: 1.38;
  font-weight: var(--text-bold-weight);
}
@media (max-width: 768px) {
  body.r_common .page .r_stock-price .r_stock-price--main span.r_stock-price--value {
    font-size: 30px;
  }
}
body.r_common .page .r_stock-price .r_stock-price--no-vat {
  margin-top: 0.5rem;
  font-size: 15px;
  font-weight: var(--text-normal-weight);
}
body.r_common .page .r_stock-price .r_stock-price--original {
  margin-top: 40px;
}
body.r_common .page .r_stock-price .r_stock-price--original .r_stock-price--original-label {
  display: block;
  font-size: 15px;
  font-weight: var(--text-normal-weight);
}
body.r_common .page .r_stock-price .r_stock-price--original .r_stock-price--original-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  body.r_common .page .r_stock-price .r_stock-price--original .r_stock-price--original-flex {
    margin-top: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
}
body.r_common .page .r_stock-price .r_stock-price--original .r_stock-price--original-value {
  font-size: 15px;
  font-weight: var(--text-bold-weight);
}
body.r_common .page .r_stock-price .r_stock-price--original .r_stock-price--original-no-vat {
  font-size: 15px;
  font-weight: var(--text-normal-weight);
}
body.r_common .page .r_stock-car-mobile-bar {
  border-top: 1px solid #dbdbdb;
  padding: 32px 50px;
}
body.r_common .page .r_stock-car-mobile-bar .r_stock-price {
  align-items: center;
}
body.r_common .page .r_stock-car-mobile-bar .stock-car__buy {
  flex: 0 0 auto;
}
@media (min-width: 1366px) {
  body.r_common .page .r_stock-car-mobile-bar {
    display: none;
  }
}
body.r_common .page .stock-car__spec {
  background: transparent;
  border-top: 1px solid #dbdbdb;
}
body.r_common .page .stock-car__spec .stock-car__inner {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1600px) {
  body.r_common .page .stock-car__spec .stock-car__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
body.r_common .page .r_stock-spec--wrapper {
  margin-top: 42px;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  padding-left: 2rem;
  --tech-spec-gap: 80px;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  body.r_common .page .r_stock-spec--wrapper {
    --tech-spec-gap: 120px;
  }
}
@media (min-width: 1601px) {
  body.r_common .page .r_stock-spec--wrapper {
    --tech-spec-gap: 180px;
  }
}
body.r_common .page .r_stock-spec--wrapper .r_stock-spec--item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.r_common .page .r_stock-spec--wrapper .r_stock-spec--item .r_stock-spec--label {
  font-size: 13px;
  font-weight: var(--text-normal-weight);
}
body.r_common .page .r_stock-spec--wrapper .r_stock-spec--item .r_stock-spec--value {
  font-size: 22px;
  font-weight: var(--text-normal-weight);
  line-height: 1.64;
  max-width: 24rem;
}
@media (min-width: 768px) {
  body.r_common .page .r_stock-spec--wrapper {
    padding-left: 0;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 2rem;
    column-gap: var(--tech-spec-gap);
  }
}
body.r_common .page .stock-car__attrs {
  background: transparent;
  border-top: 1px solid #dbdbdb;
}
body.r_common .page .stock-car__attrs .stock-car__inner {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1600px) {
  body.r_common .page .stock-car__attrs .stock-car__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
body.r_common .page .stock-car__attrs .stock-car__inner.r_stock-attrs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  --lists-item-gap: 1rem;
}
@media (min-width: 1200px) {
  body.r_common .page .stock-car__attrs .stock-car__inner.r_stock-attrs {
    flex-direction: row;
  }
}
@media (min-width: 1200px) and (max-width: 1600px) {
  body.r_common .page .stock-car__attrs .stock-car__inner.r_stock-attrs {
    gap: 120px;
    --lists-item-gap: 2rem;
  }
}
@media (min-width: 1601px) {
  body.r_common .page .stock-car__attrs .stock-car__inner.r_stock-attrs {
    gap: 200px;
    --lists-item-gap: 48px;
  }
}
body.r_common .page .stock-car__attrs .stock-car__inner.r_stock-attrs h2 {
  flex-shrink: 0;
}
body.r_common .page .stock-car__attrs .stock-car__inner.r_stock-attrs .stock-car__attrs--lists ul {
  list-style-type: disc;
}
body.r_common .page .stock-car__attrs .stock-car__inner.r_stock-attrs .stock-car__attrs--lists ul li {
  padding-left: 1rem;
  margin-bottom: var(--lists-item-gap);
}
body.r_common .page .stock-car__attrs .stock-car__inner.r_stock-attrs a#moreEquipment {
  font-size: 18px;
}
body.r_common .page .stock-car__attrs .stock-car__inner.r_stock-attrs a#moreEquipment::before {
  transform: scale(0.75);
}
body.r_common .page .stock-car__attrs .stock-car__inner.r_stock-attrs .stock-car__desc {
  margin-top: 3rem;
}
body.r_common .page .stock-car__attrs .stock-car__inner.r_stock-attrs .stock-car__desc p {
  font-size: 15px;
  line-height: 1.6;
}
body.r_common .page .stock-car__financing {
  background: transparent;
  border-top: 1px solid #dbdbdb;
  padding: 40px 1rem;
  --financing-grid-columns: 1;
  --financing-gap: 1rem;
}
@media (min-width: 768px) and (max-width: 1159px) {
  body.r_common .page .stock-car__financing {
    --financing-grid-columns: repeat(2,1fr);
    --financing-gap: 3rem;
  }
}
@media (min-width: 1160px) and (max-width: 1600px) {
  body.r_common .page .stock-car__financing {
    padding: 80px 1rem;
    --financing-grid-columns: repeat(3,1fr);
    --financing-gap: 3.5rem;
  }
}
@media (min-width: 1601px) {
  body.r_common .page .stock-car__financing {
    --financing-grid-columns: repeat(4,1fr);
    padding: 80px 0;
    --financing-gap: 125px;
  }
}
body.r_common .page .stock-car__financing .r_stock-financing--columns {
  display: grid;
  gap: var(--financing-gap);
  grid-template-columns: var(--financing-grid-columns);
}
body.r_common .page .stock-car__financing .r_stock-financing--columns h3 {
  font-size: 40px;
}
@media (max-width: 768px) {
  body.r_common .page .stock-car__financing .r_stock-financing--columns h3 {
    font-size: 30px;
  }
}
@media (min-width: 1160px) and (max-width: 1600px) {
  body.r_common .page .stock-car__financing .r_stock-financing--columns h3 {
    grid-column: span 3;
  }
}
body.r_common .page .stock-car__financing .r_stock-financing--columns p {
  line-height: 1.6;
  margin-bottom: 2rem;
}
body.r_common .page .stock-car__financing .r_stock-financing--car {
  background: #f2f2f2;
  margin-left: -1rem;
  margin-right: 1rem;
  margin-top: 65px;
}
@media (max-width: 768px) {
  body.r_common .page .stock-car__financing .r_stock-financing--car {
    margin-right: 0;
    margin-top: 20px;
  }
}
body.r_common .page .stock-car__financing .r_stock-financing--car .r_stock-financing--car-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1199px) {
  body.r_common .page .stock-car__financing .r_stock-financing--car .r_stock-financing--car-flex {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) {
  body.r_common .page .stock-car__financing .r_stock-financing--car .r_stock-financing--car-flex {
    flex-direction: row;
    align-items: center;
    padding-right: 40px;
    gap: 25px;
  }
  body.r_common .page .stock-car__financing .r_stock-financing--car .r_stock-financing--car-flex h3 {
    flex: 1;
    padding: 0 20px;
  }
  body.r_common .page .stock-car__financing .r_stock-financing--car .r_stock-financing--car-flex a.car-interest {
    flex: 0 0 auto;
  }
}
@media (min-width: 1600px) {
  body.r_common .page .stock-car__financing .r_stock-financing--car .r_stock-financing--car-flex {
    padding-right: 64px;
  }
}
@media (max-width: 768px) {
  body.r_common .page .stock-car__financing .r_stock-financing--car h3 {
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
  }
}
body.r_common .page .stock-car__financing .r_stock-financing--car img {
  max-width: 316px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1200px) {
  body.r_common .page .stock-car__financing .r_stock-financing--car img {
    display: none;
  }
}
body.r_common .page .stock-car .stock-car__texts h2.title-h2 {
  margin-bottom: 65px;
}
body.r_common .page .stock-car .stock-car__texts .vertical-list[data-bg-color="grey"] {
  background-color: transparent;
}
body.r_common .page .stock-car .stock-car__texts .vertical-list__inner {
  padding-top: 0;
}
body.r_common .page .stock-car .stock-car__texts .vertical-list__item--img {
  height: 64px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
body.r_common .page .stock-car .stock-car__texts a.arrow_after {
  color: var(--fg-color);
}
body.r_common .page .stock-car .stock-car__texts p {
  margin-bottom: 2rem;
}
body.r_common .page .stock-car .stock-car__texts p:last-child {
  margin-top: auto;
}
body.r_common .page .stock-car .stock-car__texts .stock-car__texts h2.title-h2 {
  margin-bottom: 30px;
}
body.r_common .page label.checkbox__label {
  font-family: var(--text-family);
  font-weight: var(--text-normal-weight);
}
body.r_common .page .form-popup__container .form-popup__row > label {
  font-family: var(--text-family);
  font-weight: var(--text-normal-weight);
}
body.r_common .page .form-popup__container .form-popup__row > label small,
body.r_common .page .form-popup__container .form-popup__row > label label.checkbox__label {
  font-family: var(--text-family);
  font-weight: var(--text-normal-weight);
}
body.r_common .page .form-popup__container .form-popup__row > label small {
  display: inline-block;
  padding-bottom: 1rem;
  font-size: 13px;
}
body.r_common .page .form-popup__container .form-popup__row .radiobuttons label {
  font-weight: var(--text-normal-weight);
}
body.r_common .page .form-popup__container .form-popup__row .radiobuttons label .radiobuttons__overlay {
  padding: 10px 15px;
}
body.r_common .page .form-popup__container .form-popup__row .radiobuttons__input {
  margin-bottom: 30px;
}
body.r_common .page .form-popup__container .form-popup__row input,
body.r_common .page .form-popup__container .form-popup__row textarea {
  font-family: var(--text-family);
  font-weight: var(--text-normal-weight);
}
body.r_common .page .stock-car__purchase .stock-car__purchase--banner {
  background: transparent;
  border-top: none;
}
body.r_common .page .stock-car__purchase .stock-car__purchase--banner .stock-car__purchase--banner_left a.arrow_before {
  color: var(--fg-color);
}
body.r_common .page .stock-car__purchase .stock-car__purchase--banner .stock-car__purchase--banner_left a.arrow_before::before {
  content: " ";
  background: url(redesign/arrow-left-lt.svg) no-repeat center center;
  background-size: contain;
  width: 17.5px;
  height: 14.6px;
}
body.r_common .page .articles {
  padding: 25px 0;
}
@media (min-width: 900px) {
  body.r_common .page .articles {
    padding: 40px 0;
  }
}
@media (min-width: 768px) {
  body.r_common .page .articles .article:nth-child(odd) .article--right {
    padding-left: 4rem;
    padding-right: 0;
  }
  body.r_common .page .articles .article:nth-child(even) .article--right {
    padding-right: 4rem;
    padding-left: 0;
  }
}
body.r_common .page .articles .article--category a {
  background: none;
  border: 1px solid #262626;
  padding: 8px 20px;
  border-radius: 3px;
  font-weight: var(--text-normal-weight);
  color: var(--fg-color);
}
body.r_common .page .articles .filter,
body.r_common .page .article-detail .filter {
  background-color: transparent;
}
body.r_common .page .pagination {
  background-color: transparent;
  color: var(--fg-color);
  border-top: none;
  border-bottom: none;
}
body.r_common .page .pagination--count {
  font-family: var(--text-family);
  font-weight: var(--text-normal-weight);
  color: inherit;
}
body.r_common .page .pagination a {
  font-family: var(--text-family);
  font-weight: var(--text-normal-weight);
  color: inherit;
}
body.r_common .page .article-detail__container a.back-link {
  font-family: var(--text-family);
  font-weight: var(--text-normal-weight);
}
body.r_common .page .article-detail__container a.back-link::before {
  content: " ";
  width: 17.5px;
  height: 14.6px;
  display: inline-block;
  margin-right: 15px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="17.478" height="14.602" viewBox="0 0 17.478 14.602"><path d="m7.301 0-7.3 7.3 7.3 7.3h1.37L1.859 7.786h15.62v-.971H1.859L8.671 0z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
body.r_common .page .article-detail__container h1.article-title::after {
  display: none;
}
body.r_common .page .r_brandcontact--header {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  body.r_common .page .r_brandcontact--header {
    flex-direction: row;
    align-items: flex-start;
    padding-bottom: 80px;
    padding-top: 80px;
    gap: 40px;
  }
}
@media (min-width: 1580px) {
  body.r_common .page .r_brandcontact--header {
    justify-content: space-between;
  }
}
@media (min-width: 900px) {
  body.r_common .page .r_brandcontact--heading {
    flex: 0 0 350px;
  }
}
body.r_common .page .r_brandcontact--heading h2 {
  font-size: 25px;
  line-height: 1.64;
  margin-top: 0;
  margin-bottom: 0;
}
body.r_common .page .r_brandcontact--heading h1 {
  font-size: 42px;
  line-height: 1.38;
  margin-top: 15px;
  margin-bottom: 1rem;
  padding-top: 0;
}
body.r_common .page .r_brandcontact--contacts {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1580px) {
  body.r_common .page .r_brandcontact--contacts {
    flex-direction: row;
    gap: 110px;
  }
}
body.r_common .page .r_brandcontact--contacts h3 {
  font-size: 25px;
  line-height: 1.64;
  margin-top: 0;
  margin-bottom: 1rem;
}
body.r_common .page .r_brandcontact--contacts p {
  font-size: 18px;
  margin-bottom: 0;
}
body.r_common .page .r_brandcontact--contacts a {
  font-size: 20px;
}
body.r_common .page .r_brandcontact--contacts-phones-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-left: 60px;
  position: relative;
}
body.r_common .page .r_brandcontact--contacts-phones-items::before {
  position: absolute;
  width: 35px;
  height: 35px;
  content: "";
  background: url(redesign/telephone-lt.svg) no-repeat center center;
  background-size: contain;
  left: 0;
  top: 9px;
}
@media (min-width: 768px) {
  body.r_common .page .r_brandcontact--contacts-phones-items {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 20px;
  }
  body.r_common .page .r_brandcontact--contacts-phones-items .r_brandcontact--contacts-note {
    grid-column: span 2;
  }
}
body.r_common .page .r_brandcontact--contacts-phones-items .r_brandcontact--contacts-note p {
  font-size: 15px;
}
body.r_common .page .r_brandcontact--contacts-emails-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 768px) {
  body.r_common .page .r_brandcontact--contacts-emails-items {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
body.r_common .page .r_brandcontact--contacts-email a {
  position: relative;
  padding-left: 60px;
  font-size: 20px;
  line-height: 1.36;
  font-weight: var(--text-bold-weight);
  white-space: nowrap;
  color: #262626;
}
body.r_common .page .r_brandcontact--contacts-email a::before {
  position: absolute;
  width: 35px;
  height: 35px;
  content: "";
  background: url(redesign/mail-lt-black.svg) no-repeat center center;
  background-size: contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
body.r_common .page .r_brandcontact--contacts-button a {
  font-size: 15px;
}
body.r_common .page .r_brandcontact--footer {
  margin: 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  body.r_common .page .r_brandcontact--footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
body.r_common .page .r_brandcontact--footer-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem 0 2rem 0;
}
body.r_common .page .r_brandcontact--footer-item h2 {
  font-size: 34px;
  max-width: 24rem;
  line-height: 1.41;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  body.r_common .page .r_brandcontact--footer-item h2 {
    text-align: center;
  }
}
@media (min-width: 768px) {
  body.r_common .page .r_brandcontact--footer-item {
    flex: 1;
    align-items: center;
    padding: 90px 20px;
  }
  body.r_common .page .r_brandcontact--footer-item:first-child {
    border-right: 1px solid #e6e6e6;
  }
}
body.r_common .page .r_brandcontact--company .general-contact--company {
  display: flex;
  align-items: center;
  gap: 144px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  body.r_common .page .r_brandcontact--company .general-contact--company {
    margin-top: 60px;
    margin-bottom: 92px;
  }
}
body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--text {
  flex: 498 0 0;
}
body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--text h3 {
  font-size: 22px;
  font-weight: var(--text-normal-weight);
  margin: 0 0 0.5rem;
}
body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--text h2 {
  font-size: 45px;
  font-weight: var(--text-normal-weight);
  margin: 0 0 3rem;
}
body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--text .general-contact--list-items {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 32px;
}
body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--text .general-contact--list-items .general-contact--list-item {
  flex: 1 1 calc(50% - 1rem);
  font-size: 18px;
  font-weight: var(--text-normal-weight);
  line-height: 1.6;
}
body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--text .general-contact--list-items .general-contact--list-item strong {
  font-weight: var(--text-bold-weight);
}
body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--text .general-contact--small-note {
  margin-top: 2rem;
}
body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--text .general-contact--small-note p {
  font-size: 15px;
  font-weight: var(--text-normal-weight);
}
body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--image {
  flex: 952 0 0;
}
body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 1400px) and (max-width: 1600px) {
  body.r_common .page .r_brandcontact--company .general-contact--company {
    gap: 72px;
  }
  body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--text {
    padding-left: 2rem;
  }
}
@media (max-width: 1400px) {
  body.r_common .page .r_brandcontact--company .general-contact--company {
    flex-direction: column;
    gap: 3rem;
  }
  body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--text {
    flex: none;
    width: 100%;
    padding-left: 1rem;
  }
  body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--image {
    flex: none;
    width: 100%;
    height: 400px;
    overflow: hidden;
  }
  body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
@media (min-width: 900px) and (max-width: 1400px) {
  body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--text .general-contact--list-items .general-contact--list-item {
    flex: 1 1 calc(25% - 1.5rem);
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--text .general-contact--list-items .general-contact--list-item {
    flex: 1 1 calc(50% - 1rem);
  }
}
@media (max-width: 900px) {
  body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--image {
    height: 280px;
  }
}
@media (max-width: 768px) {
  body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--text h2 {
    font-size: 30px;
  }
  body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--text h3 {
    font-size: 18px;
  }
  body.r_common .page .r_brandcontact--company .general-contact--company .general-contact--list-items {
    flex-direction: column;
  }
}
body.r_common .page .r_brandcontact--brands h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
body.r_common .page .r_brandcontact--brands .brand-images-container {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 13px;
  max-width: 1840px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  body.r_common .page .r_brandcontact--brands .brand-images-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
body.r_common .page .r_brandcontact--brands .brand-image-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.55;
}
@media (max-width: 900px) {
  body.r_common .page .r_brandcontact--brands .brand-image-box {
    aspect-ratio: auto;
    height: 215px;
  }
}
body.r_common .page .r_brandcontact--brands .brand-image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
body.r_common .page .r_brandcontact--brands .brand-image-link:focus {
  outline: 2px solid #1a56e8;
  outline-offset: -2px;
}
body.r_common .page .r_brandcontact--brands .brand-image-link:hover .brand-image {
  transform: scale(1.05);
}
body.r_common .page .r_brandcontact--brands .brand-image-link:hover .brand-image-overlay {
  transform: translateY(-5px);
}
@media (max-width: 900px) {
  body.r_common .page .r_brandcontact--brands .brand-image-link:hover .brand-image-overlay {
    transform: translateY(0) translateX(-2px);
  }
}
body.r_common .page .r_brandcontact--brands .brand-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
body.r_common .page .r_brandcontact--brands .brand-image-overlay {
  position: absolute;
  bottom: 8%;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 2rem;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
@media (max-width: 900px) {
  body.r_common .page .r_brandcontact--brands .brand-image-overlay {
    bottom: unset;
    top: 0;
    height: 100%;
    justify-content: flex-start;
    background: linear-gradient(to right,rgba(0,0,0,0.85) 0%,rgba(0,0,0,0) 80%);
  }
}
body.r_common .page .r_brandcontact--brands .brand-image-overlay .brand-logo.brand-logo-bmw {
  height: 82px;
}
body.r_common .page .r_brandcontact--brands .brand-image-overlay .brand-logo.brand-logo-mini {
  height: 67px;
}
body.r_common .page .r_brandcontact--brands .brand-image-overlay .brand-logo.brand-logo-motorrad {
  height: 47px;
}
body.r_common .page .text-two-columns__left-column h4,
body.r_common .page .text-two-columns__right-column h4 {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
body.r_common .page .text-two-columns__left-column h3,
body.r_common .page .text-two-columns__right-column h3 {
  margin-bottom: 3rem;
}
body.r_common .page .text-two-columns__left-column ul,
body.r_common .page .text-two-columns__right-column ul {
  list-style-type: disc;
}
body.r_common .page .text-two-columns__left-column ul li,
body.r_common .page .text-two-columns__right-column ul li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
body.r_common .page .text-two-columns__left-column ol,
body.r_common .page .text-two-columns__right-column ol {
  font-size: 18px;
  list-style: none;
  counter-reset: item;
  padding-left: 40px;
}
body.r_common .page .text-two-columns__left-column ol li,
body.r_common .page .text-two-columns__right-column ol li {
  font-size: 18px;
  margin-bottom: 3rem;
  counter-increment: item;
  position: relative;
}
body.r_common .page .text-two-columns__left-column ol li::before,
body.r_common .page .text-two-columns__right-column ol li::before {
  content: counter(item,decimal-leading-zero) " ";
  font-weight: var(--text-bold-weight);
  position: absolute;
  left: -40px;
}
body.r_common .page .phone-on-left {
  position: relative;
  padding-left: 60px;
}
body.r_common .page .phone-on-left::before {
  position: absolute;
  width: 35px;
  height: 35px;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(redesign/telephone-lt.svg);
  left: 0;
  top: 12px;
}
body.r_common .page .phone-on-left p {
  font-size: 15px;
}
body.r_common .page .brand-workshops--wrapper {
  margin-top: 35px;
}
@media (min-width: 768px) {
  body.r_common .page .brand-workshops--wrapper {
    margin-top: 96px;
  }
}
body.r_common .page .brand-workshops--wrapper h2 {
  text-align: center;
  margin-bottom: 4rem;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops {
  display: flex;
  margin-top: 3rem;
  border-top: 1px solid #e6e6e6;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0 0;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__nav {
  flex: 0 0 415px;
  display: flex;
  flex-direction: column;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops li {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 0;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops li a {
  color: var(--fg-color);
  display: block;
  padding: 47px 32px;
  font-size: 22px;
  line-height: 1.1;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops li a.active {
  font-weight: var(--text-bold-weight);
}
body.r_common .page .brand-workshops--wrapper .brand-workshops li:has(.active) {
  background: rgba(246,246,246,0.57);
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__items {
  position: relative;
  flex: 1;
  background: rgba(246,246,246,0.57);
}
@media (max-width: 899px) {
  body.r_common .page .brand-workshops--wrapper .brand-workshops__items {
    margin-left: -1rem;
  }
}
@media (min-width: 900px) and (max-width: 1399px) {
  body.r_common .page .brand-workshops--wrapper .brand-workshops__items {
    min-height: 950px;
  }
}
@media (min-width: 1400px) {
  body.r_common .page .brand-workshops--wrapper .brand-workshops__items {
    min-height: 716px;
  }
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  padding: 20px 80px;
}
@media (max-width: 899px) {
  body.r_common .page .brand-workshops--wrapper .brand-workshops__item {
    position: static;
    flex-direction: column-reverse;
    width: 100%;
    height: auto;
    padding: 20px 20px 20px 40px;
  }
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__item-flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1400px) {
  body.r_common .page .brand-workshops--wrapper .brand-workshops__item-flex {
    flex-direction: row;
    gap: 40px;
  }
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__item-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  body.r_common .page .brand-workshops--wrapper .brand-workshops__item-details {
    flex: 1;
  }
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__item-address p {
  font-size: 15px;
  margin-bottom: 1rem;
  line-height: 1.6;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__item-contact {
  margin-bottom: 2rem;
  padding-left: 60px;
  position: relative;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__item-contact p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0.3rem;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__item-contact::before {
  position: absolute;
  width: 35px;
  height: 35px;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 12px;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__item-contact.brand-workshops__item-phone::before {
  background-image: url(redesign/telephone-lt.svg);
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__item-contact.brand-workshops__item-mail::before {
  background-image: url(redesign/mail-lt-black.svg);
}
@media (max-width: 899px) {
  body.r_common .page .brand-workshops--wrapper .brand-workshops__item h3 {
    display: none;
  }
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__item-direct {
  gap: 0;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__item-direct h4 {
  font-size: 15px;
  font-family: var(--text-family-headings);
  font-weight: var(--text-bold-weight);
  margin-top: 0;
  margin-bottom: 18px;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__item-direct p {
  font-size: 15px;
  font-weight: var(--text-normal-weight);
  line-height: 1.6;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__item-direct p span.brand-workshops__item-spacer {
  display: block;
  margin-bottom: 1rem;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__item-direct p a {
  color: var(--fg-color);
  text-decoration: none;
  font-weight: var(--text-bold-weight);
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__item-direct a.button_transparent {
  margin-top: 2rem;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__accordion-item {
  padding: 20px 0 22px 0;
  border-bottom: 1px solid #e6e6e6;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__accordion-item:first-child {
  border-top: 1px solid #e6e6e6;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__accordion-header {
  font-size: 22px;
  min-height: 30px;
  line-height: 1.36;
  font-weight: var(--text-normal-weight);
  cursor: pointer;
  position: relative;
  padding: 0 2rem 0 30px;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__accordion-header.active {
  font-weight: bold;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__accordion-header::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  width: 15.548px;
  height: 9.093px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="15.548" height="9.093" viewBox="0 0 15.548 9.093"><path d="m30.118 996.284.747-.693L37.892 989l-1.492-1.81-6.281 5.891-6.281-5.891-1.494 1.81 7.027 6.593z" transform="translate(-22.344 -987.19)" style="fill:%23262626"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%) rotate(0deg);
  transform-origin: center;
  transition: transform 0.3s ease;
}
body.r_common .page .brand-workshops--wrapper .brand-workshops__accordion-header.active::after {
  transform: translateY(-50%) rotate(-180deg);
}
@media (min-width: 768px) {
  body.r_common .page .brand-workshops--extra-margin {
    margin-bottom: 3rem;
  }
}
body.r_common .page .brand-workshops--extra-margin .brand-workshops--wrapper {
  margin-top: 0;
}
body.r_common .page .list-with-images-fixed__content {
  padding: 40px;
}
body.r_common .page .list-with-images-fixed__content img {
  object-fit: cover;
}
body.r_common .page .list-with-images-fixed__content h4 {
  color: #fff;
  font-weight: var(--text-bold-weight);
}
body.r_common .page .list-with-images-fixed__content p {
  color: #fff;
  font-size: 14px;
  font-weight: var(--text-normal-weight);
}
body.r_common .page .faqs {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}
body.r_common .page .faqs .wrapper {
  max-width: none;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
}
body.r_common .page .faqs__heading {
  background: transparent;
}
body.r_common .page .faqs__inner {
  padding: 0 0 120px;
}
body.r_common .page .faqs__inner .faq {
  padding: 30px 0 30px 8px;
}
body.r_common .page .faqs__inner .faq__question {
  flex-direction: row-reverse;
}
body.r_common .page .faqs__inner .faq__button {
  margin-right: 0;
  background: transparent url(redesign/ico-arrow-down.svg) no-repeat center center;
  border: none;
}
body.r_common .page .faqs__inner .faq__button.active {
  transform: rotate(-180deg);
}
body.r_common .page .faqs__inner .faq__answer p {
  padding-left: 0;
}
body.r_common .page .wide-text__inner.wide-text__cap_and_center {
  max-width: 900px;
  margin: 0 auto;
}
body.r_common .page .wide-text__inner.wide-text__cap_and_center p {
  margin-bottom: 3rem;
}
body.r_common .page .wide-text__inner.wide-text__cap_and_center h2 {
  text-transform: none;
}
@media (min-width: 1200px) {
  body.r_common .page .wide-text__vertical_margins {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
body.r_common .page .title-h1-image-subtitle__wrapper {
  position: relative;
  overflow: hidden;
}
body.r_common .page .title-h1-image-subtitle__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 96px;
  --fg-color: #fff;
}
@media (max-width: 900px) {
  body.r_common .page .title-h1-image-subtitle__content {
    position: static;
    left: unset;
    right: unset;
    bottom: unset;
    --fg-color: #262626;
  }
}
body.r_common .page .title-h1-image-subtitle__content-inner {
  max-width: 1580px;
  padding-left: 3rem;
  margin: 0 auto;
}
@media (max-width: 900px) {
  body.r_common .page .title-h1-image-subtitle__content-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
body.r_common .page .title-h1-image-subtitle__content-inner h2.title-h2-image {
  font-size: 25px;
  line-height: 1.64;
  max-width: 680px;
  margin-bottom: 15px;
}
@media (max-width: 900px) {
  body.r_common .page .title-h1-image-subtitle__content-inner h2.title-h2-image {
    text-align: center;
  }
}
body.r_common .page .title-h1-image-subtitle__content-inner h1.title-h1-image {
  font-size: 73px;
  line-height: 1.25;
  max-width: 680px;
  padding: 0 0 0 0;
}
@media (max-width: 1158px) {
  body.r_common .page .title-h1-image-subtitle__content-inner h1.title-h1-image {
    font-size: 42px;
  }
}
@media (max-width: 900px) {
  body.r_common .page .title-h1-image-subtitle__content-inner h1.title-h1-image {
    text-align: center;
  }
}
body.r_common .page .two-images-museum {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
}
@media (min-width: 900px) {
  body.r_common .page .two-images-museum {
    margin-bottom: 60px;
  }
}
@media (min-width: 900px) {
  body.r_common .page .two-images-museum {
    flex-direction: row;
    gap: 40px;
  }
  body.r_common .page .two-images-museum .two-images-museum-item {
    flex: 53;
  }
  body.r_common .page .two-images-museum .two-images-museum-item.two-images-museum-large {
    flex: 47;
  }
  body.r_common .page .two-images-museum .two-images-museum-item:first-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
  }
  body.r_common .page .two-images-museum .two-images-museum-left__img-wrapper {
    margin-top: auto;
  }
  body.r_common .page .two-images-museum .two-images-museum-left__img-wrapper div.lazy.loaded {
    margin: 0 0 0 0;
  }
}
body.r_common .page .vertical-list-2__inner {
  margin: 10px 0;
}
@media (min-width: 900px) {
  body.r_common .page .vertical-list-2__inner {
    margin: 25px 0;
  }
}
body.r_common .page .vertical-list-2__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
@media (min-width: 900px) {
  body.r_common .page .vertical-list-2__items {
    gap: 79px 45px;
  }
}
@media (min-width: 1400px) {
  body.r_common .page .vertical-list-2__items {
    gap: 79px 85px;
  }
}
body.r_common .page .vertical-list-2__item {
  text-align: center;
  width: 100%;
}
@media (min-width: 900px) {
  body.r_common .page .vertical-list-2__item {
    width: calc((100% - 45px) / 2);
  }
}
@media (min-width: 1400px) {
  body.r_common .page .vertical-list-2__item {
    width: calc((100% - 170px) / 3);
  }
}
body.r_common .page .vertical-list-2__item p {
  margin: 0;
  line-height: 1.56;
}
body.r_common .page .vertical-list-2__item--img {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 80px;
  height: 80px;
  margin-bottom: 0.5rem;
}
@media (min-width: 900px) {
  body.r_common .page .vertical-list-2__item--img {
    margin-bottom: 2rem;
  }
}
body.r_common .page .list-with-images-fixed {
  margin: 1rem 0;
}
body.r_common .page .list-with-images-fixed h3,
body.r_common .page .list-with-images-fixed h4 {
  color: white !important;
}
body.r_common .page .history {
  margin-top: 40px;
  margin-bottom: 65px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
body.r_common .page .history .title-h3 {
  font-size: 40px;
  text-transform: uppercase;
}
body.r_common .page .history .history--list {
  padding: 0 2rem;
}
body.r_common .page .history .history--item {
  border-bottom: 1px solid #e6e6e6;
}
body.r_common .page .history .history--item:first-child {
  border-top: 1px solid #e6e6e6;
}
body.r_common .page .history .history--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 32px 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  user-select: none;
}
body.r_common .page .history .history--header h3 {
  font-size: 22px;
  font-weight: var(--text-normal-weight);
  margin: 0;
}
body.r_common .page .history .history--chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: transparent url(redesign/ico-arrow-down.svg) no-repeat center center;
  background-size: contain;
  transition: transform 0.3s ease;
}
body.r_common .page .history .history--item.active .history--header h3 {
  color: #2279fd;
}
body.r_common .page .history .history--item.active .history--chevron {
  transform: rotate(-180deg);
}
body.r_common .page .history .history--content {
  display: none;
  padding-bottom: 32px;
  gap: 80px;
}
body.r_common .page .history .history--content.open {
  display: flex;
}
body.r_common .page .history .history--content p {
  flex: 1.7;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
body.r_common .page .history .history--content .history--image__right {
  flex: 1.1;
}
body.r_common .page .history .history--content .history--image__right img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  body.r_common .page .history .history--content {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  body.r_common .page .history .history--content p {
    flex: none;
  }
  body.r_common .page .history .history--content .history--image__right {
    flex: none;
    max-width: 70vw;
    margin: 0 auto;
  }
}
body.r_common .page .workshop-detail--heading h1 {
  --fg-color: #fff;
  font-weight: var(--text-bold-weight);
}
body.r_common .page .workshop-detail--text {
  background-color: transparent;
  margin: 40px 0;
}
@media (min-width: 900px) {
  body.r_common .page .workshop-detail--text {
    margin: 80px 0;
  }
}
body.r_common .page .workshop-detail--services {
  background-color: white;
}
body.r_common .page .workshop-detail .team-list__title.active {
  background-color: transparent;
}
body.r_common .page .workshop-detail .team-list__view-inner {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
body.r_common .page .workshop-detail .team-list__person-info h5 {
  font-family: inherit;
  font-size: 18px;
}
body.r_common .page .workshop-detail a.green {
  color: #2279fd;
}
body.r_common .page .career-list {
  background: transparent;
}
body.r_common .page .career-detail__heading {
  background: transparent;
}
body.r_common .page .career-detail__heading a.back-link {
  font-family: var(--text-family);
  font-weight: var(--text-bold-weight);
  font-size: 15px;
  color: inherit;
  padding: 20px 0;
  position: static;
}
@media (max-width: 900px) {
  body.r_common .page .career-detail__heading a.back-link {
    padding: 0 0;
  }
}
body.r_common .page .career-detail__heading a.back-link::before {
  content: " ";
  width: 17.5px;
  height: 14.6px;
  display: inline-block;
  margin-right: 15px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="17.478" height="14.602" viewBox="0 0 17.478 14.602"><path d="m7.301 0-7.3 7.3 7.3 7.3h1.37L1.859 7.786h15.62v-.971H1.859L8.671 0z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
body.r_common .page .career-detail__title {
  padding: 0 20px 30px;
}
body.r_common .page .career-detail__title h1 {
  padding-top: 1rem;
}
body.r_common .page .text-image-left__text p,
body.r_common .page .text-image-left__right p {
  font-family: var(--text-family-headings);
}
body.r_common .page .search-results .search-results__anchors li {
  font-family: var(--text-family);
  font-weight: var(--text-bold-weight);
}
body.r_common .page .search-results .search-results__top-bar a {
  font-family: var(--text-family);
}
body.r_common .page .search-results .search-results__item--header a:not(.button_blue) {
  font-family: var(--text-family-headings);
}
body.r_common .page .search-results .search-results__item--desc span {
  font-family: var(--text-family);
}
body.r_common .page .search-results .search-results__item--perex {
  font-family: var(--text-family);
}
body.r_common .search-dropdown {
  font-family: var(--text-family);
}
body.r_common .search-dropdown--results__template-title {
  font-family: var(--text-family-headings);
}
body.r_common .search-dropdown--results__template-additional a {
  font-family: var(--text-family);
}
body.r_common .banner-form__content {
  --fg-color: white;
}
body.r_common .banner-form__content p {
  font-family: var(--text-family);
}
body.r_common .banner-form__content .banner-form__row label {
  font-family: var(--text-family);
}
body.r_common .banner-form__content label.checkbox__label a {
  color: white !important;
}
body.r_common.r_brand_bmw {
  --text-family: "bmwTypeNextTT", Arial, sans-serif;
  --text-family-headings: "bmwTypeNextTT", Arial, sans-serif;
  --text-normal-weight: 300;
  --text-bold-weight: bold;
}
body.r_common.r_brand_bmw .routing h2 {
  font-size: 30px;
  line-height: 1.37;
}
body.r_common.r_brand_bmw .homepage h1,
body.r_common.r_brand_bmw .homepage h2,
body.r_common.r_brand_bmw .homepage h3,
body.r_common.r_brand_bmw .homepage h4 {
  font-weight: var(--text-normal-weight);
}
body.r_common.r_brand_bmw .slider-main__text {
  --fg-color: #fff;
}
body.r_common.r_brand_bmw .slider-main__text h1 {
  line-height: 1.05;
}
@media (max-width: 1220px) {
  body.r_common.r_brand_bmw .slider-main__text h1 {
    font-size: 38px;
    line-height: 1.15;
  }
}
@media (max-width: 460px) {
  body.r_common.r_brand_bmw .slider-main__text h1 {
    font-size: 24px;
  }
}
body.r_common.r_brand_bmw .slider-main__text h2 {
  font-size: 21px;
  line-height: 1.1;
}
@media (max-width: 1220px) {
  body.r_common.r_brand_bmw .slider-main__text h2 {
    font-size: 19px;
    line-height: 1.25;
  }
}
@media (max-width: 460px) {
  body.r_common.r_brand_bmw .slider-main__text h2 {
    font-size: 16px;
  }
}
body.r_common.r_brand_bmw .slider-main__text a.button_blue {
  font-size: 16px;
  font-weight: var(--text-normal-weight);
}
body.r_common.r_brand_mini {
  --text-family: "miniSansSerif", Arial, sans-serif;
  --text-family-headings: "miniSerif", "Times New Roman", serif;
  --text-normal-weight: 400;
  --text-bold-weight: 400;
  --fg-color: #000;
  font-family: var(--text-family);
}
body.r_common.r_brand_mini button.button,
body.r_common.r_brand_mini a.button,
body.r_common.r_brand_mini a.button_blue,
body.r_common.r_brand_mini a.button_transparent,
body.r_common.r_brand_mini a.button_white,
body.r_common.r_brand_mini a.button_black {
  border-radius: 9999px;
  font-size: 15px;
  line-height: 1.5;
  text-transform: uppercase;
  padding-top: 17px;
  padding-bottom: 14px;
}
body.r_common.r_brand_mini button.button::before,
body.r_common.r_brand_mini a.button::before,
body.r_common.r_brand_mini a.button_blue::before,
body.r_common.r_brand_mini a.button_transparent::before,
body.r_common.r_brand_mini a.button_white::before,
body.r_common.r_brand_mini a.button_black::before {
  display: none;
}
body.r_common.r_brand_mini button.button::after,
body.r_common.r_brand_mini a.button::after,
body.r_common.r_brand_mini a.button_blue::after,
body.r_common.r_brand_mini a.button_transparent::after,
body.r_common.r_brand_mini a.button_white::after,
body.r_common.r_brand_mini a.button_black::after {
  display: none;
}
body.r_common.r_brand_mini button.button svg,
body.r_common.r_brand_mini a.button svg,
body.r_common.r_brand_mini a.button_blue svg,
body.r_common.r_brand_mini a.button_transparent svg,
body.r_common.r_brand_mini a.button_white svg,
body.r_common.r_brand_mini a.button_black svg {
  display: none;
}
body.r_common.r_brand_mini button.button {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
body.r_common.r_brand_mini button.button:hover {
  background-color: #8e8e8e;
  border-color: #8e8e8e;
  color: #fff;
}
body.r_common.r_brand_mini a.button_blue {
  background-color: var(--btn-bg,#2a6480);
  border-color: var(--btn-bg,#2a6480);
  color: var(--btn-color,#fff);
}
body.r_common.r_brand_mini a.button_blue:hover {
  background-color: var(--btn-bg,#24496a);
  border-color: var(--btn-bg,#24496a);
  color: var(--btn-color,#fff);
}
body.r_common.r_brand_mini a.button_blue[style*="--btn-bg"]:hover {
  box-shadow: inset 0 0 0 100px rgba(0,0,0,0.15);
}
body.r_common.r_brand_mini a.button_black {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
body.r_common.r_brand_mini a.button_black:hover {
  background-color: #8e8e8e;
  border-color: #8e8e8e;
  color: #fff;
}
body.r_common.r_brand_mini a.button_white,
body.r_common.r_brand_mini a.button_transparent {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}
body.r_common.r_brand_mini a.button_white:hover,
body.r_common.r_brand_mini a.button_transparent:hover {
  background-color: #8e8e8e;
  border-color: #8e8e8e;
  color: #fff;
}
body.r_common.r_brand_mini a.button_transparent_bw {
  border-color: #fff;
  backdrop-filter: none;
}
body.r_common.r_brand_mini .header.r_header .header--inner .menu a {
  text-transform: uppercase;
}
body.r_common.r_brand_mini .header.r_header .header--inner .menu a:hover {
  color: #8e8e8e;
}
body.r_common.r_brand_mini .header.r_header .header--inner .menu a.active {
  color: #2a6480;
}
body.r_common.r_brand_mini .header.r_header .header--inner .menu--subitems ul li a {
  font-family: var(--text-family);
  text-transform: uppercase;
}
body.r_common.r_brand_mini .header.r_header .header--inner .menu--subitems ul li a:hover {
  color: #8e8e8e;
}
body.r_common.r_brand_mini .header.r_header .header--inner .menu--subitems ul li a.active {
  color: #2a6480;
}
body.r_common.r_brand_mini .header.r_header .header--inner .header-search .header-search-button {
  border-radius: 9999px;
  padding: 17px 28px 14px 28px;
  border-color: #000;
  background-color: #000;
  color: #fff;
}
body.r_common.r_brand_mini .header.r_header .header--inner .header-search .header-search-button:hover {
  background-color: #8e8e8e;
  border-color: #8e8e8e;
  color: #fff;
}
body.r_common.r_brand_mini .header.r_header .header--inner .header-search .header-search-button:hover span {
  color: #fff;
}
body.r_common.r_brand_mini .header.r_header .header--inner .eshop-link {
  font-family: var(--text-family);
  text-transform: uppercase;
}
body.r_common.r_brand_mini .search-header--close {
  text-transform: uppercase;
}
body.r_common.r_brand_mini .header.r_header.r_header--transparent:not(.r_header--scrolled) .header--inner .header-search .header-search-button {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}
body.r_common.r_brand_mini .header.r_header.r_header--transparent:not(.r_header--scrolled) .header--inner .header-search .header-search-button span {
  color: #000;
}
body.r_common.r_brand_mini .header.r_header.r_header--transparent:not(.r_header--scrolled) .header--inner .header-search .header-search-button:hover {
  background-color: #8e8e8e;
  border-color: #8e8e8e;
  color: #fff;
}
body.r_common.r_brand_mini .header.r_header.r_header--transparent:not(.r_header--scrolled) .header--inner .header-search .header-search-button:hover span {
  color: #fff;
}
body.r_common.r_brand_mini .slider-text a.button_blue {
  box-shadow: none;
}
body.r_common.r_brand_mini .slider-main__text {
  --fg-color: #fff;
}
body.r_common.r_brand_mini .slider-main__text h1 {
  line-height: 1.05;
}
@media (max-width: 1220px) {
  body.r_common.r_brand_mini .slider-main__text h1 {
    font-size: 38px;
    line-height: 1.15;
  }
}
@media (max-width: 460px) {
  body.r_common.r_brand_mini .slider-main__text h1 {
    font-size: 22px;
  }
}
body.r_common.r_brand_mini .slider-main__text h2 {
  font-size: 28px;
  line-height: 1.1;
}
@media (max-width: 1220px) {
  body.r_common.r_brand_mini .slider-main__text h2 {
    font-size: 24px;
    line-height: 1.25;
  }
}
@media (max-width: 460px) {
  body.r_common.r_brand_mini .slider-main__text h2 {
    font-size: 18px;
  }
}
body.r_common.r_brand_mini .homepage h1,
body.r_common.r_brand_mini .homepage h2,
body.r_common.r_brand_mini .homepage h3,
body.r_common.r_brand_mini .homepage h4 {
  font-weight: bold;
  color: var(--fg-color);
}
@media (min-width: 768px) {
  body.r_common.r_brand_mini .routing {
    padding-bottom: 7rem;
  }
}
body.r_common.r_brand_mini .routing h2 {
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1.37;
}
body.r_common.r_brand_mini .routing--image-overlay {
  opacity: 0.95;
}
body.r_common.r_brand_mini .routing--image-overlay h3 {
  color: white;
  font-weight: bold;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1;
  max-width: 10rem;
}
body.r_common.r_brand_mini .routing--image-overlay > * {
  margin-left: 38px;
}
@media (max-width: 1599px) {
  body.r_common.r_brand_mini .routing--image-overlay > * {
    margin-left: 45px;
  }
}
body.r_common.r_brand_mini .routing--image-borders {
  position: absolute;
  inset: 30px 38px;
  pointer-events: none;
  z-index: 2;
  border: 3px solid var(--routing-border-color);
  border-left: none;
}
body.r_common.r_brand_mini .routing--image-borders.routing--image-borders-yellow {
  --routing-border-color: #fbe551;
}
body.r_common.r_brand_mini .routing--image-borders.routing--image-borders-cyan {
  --routing-border-color: #67d3c3;
}
body.r_common.r_brand_mini .routing--image-borders.routing--image-borders-red {
  --routing-border-color: #dd5f37;
}
body.r_common.r_brand_mini .routing--image-borders::before,
body.r_common.r_brand_mini .routing--image-borders::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 15%;
  border-color: var(--routing-border-color);
  border-style: solid;
  left: 0;
}
body.r_common.r_brand_mini .routing--image-borders::before {
  top: 0;
  border-width: 0 0 0 3px;
}
body.r_common.r_brand_mini .routing--image-borders::after {
  bottom: 0;
  border-width: 0 0 0 3px;
}
@media (max-width: 1599px) {
  body.r_common.r_brand_mini .routing--image-borders {
    inset: 20px 28px;
  }
  body.r_common.r_brand_mini .routing--image-borders::before,
  body.r_common.r_brand_mini .routing--image-borders::after {
    height: 7%;
  }
}
@media (min-width: 900px) {
  body.r_common.r_brand_mini .brand-workshops-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
body.r_common.r_brand_mini .brand-workshops-section .brand-workshops ul.brand-workshops__nav a {
  font-family: var(--text-family-headings);
  font-weight: bold;
  text-transform: uppercase;
}
body.r_common.r_brand_mini .brand-workshops-section .brand-workshops .brand-workshops__item div.brand-workshops__item-details h3 {
  font-family: var(--text-family-headings);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 26px;
}
body.r_common.r_brand_mini .brand-workshops-section .brand-workshops .brand-workshops__item div.brand-workshops__item-details h4 {
  font-family: var(--text-family-headings);
  font-weight: bold;
  font-size: 22px;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
}
body.r_common.r_brand_mini .brand-workshops-section .brand-workshops .brand-workshops__item div.brand-workshops__item-details a:not(.button_blue),
body.r_common.r_brand_mini .brand-workshops-section .brand-workshops .brand-workshops__item div.brand-workshops__item-details a.green {
  color: #000;
}
body.r_common.r_brand_mini .brand-workshops-section .brand-workshops .brand-workshops__item div.brand-workshops__item-details a:not(.button_blue):hover,
body.r_common.r_brand_mini .brand-workshops-section .brand-workshops .brand-workshops__item div.brand-workshops__item-details a.green:hover {
  color: #8e8e8e;
  text-decoration: underline;
}
body.r_common.r_brand_mini .brand-workshops-section .brand-workshops .brand-workshops__accordion-header {
  font-family: var(--text-family-headings);
  font-weight: bold;
  font-size: 22px;
  text-transform: uppercase;
}
body.r_common.r_brand_mini .cars-item__image-labels-label {
  padding: 10px 24px 6px;
}
body.r_common.r_brand_mini .page h1 {
  text-transform: uppercase;
  line-height: 1.08;
  font-weight: bold;
}
body.r_common.r_brand_mini .page h1.title-h1 {
  line-height: 1.08;
}
body.r_common.r_brand_mini .page h2 {
  text-transform: uppercase;
  line-height: 1.08;
  font-weight: bold;
}
body.r_common.r_brand_mini .page h2.title-h2 {
  margin-bottom: -30px;
}
body.r_common.r_brand_mini .page h2.title-h2::after {
  display: none;
}
body.r_common.r_brand_mini .page h3 {
  text-transform: uppercase;
  line-height: 1.18;
  font-weight: bold;
}
body.r_common.r_brand_mini .page h4 {
  text-transform: uppercase;
  line-height: 1.22;
  font-weight: bold;
}
body.r_common.r_brand_mini .page p {
  letter-spacing: normal;
  line-height: 1.33;
}
body.r_common.r_brand_mini .page a:not(.button_transparent):not(.button_white):not(.button_black):not(
        .button_blue
      ):not(.button) {
  color: #2a6480;
}
body.r_common.r_brand_mini .page .form--row__label label {
  font-size: 18px;
}
body.r_common.r_brand_mini .page .form--part__title {
  font-family: var(--text-family-headings);
  font-weight: bold;
  font-size: 22px;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
}
body.r_common.r_brand_mini .page .form--row input[type="text"],
body.r_common.r_brand_mini .page .form--row input[type="email"],
body.r_common.r_brand_mini .page .form--row input[type="tel"],
body.r_common.r_brand_mini .page .form--row input[type="password"] {
  border-color: #000;
}
body.r_common.r_brand_mini .page .form .radiobuttons label .radiobuttons__overlay {
  border-color: #000;
  border-radius: 39px;
  padding: 15px 24px;
}
body.r_common.r_brand_mini .page .form .radiobuttons label .radiobuttons__overlay h4 {
  font-family: var(--text-family-headings);
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1.08;
  padding-bottom: 0.5rem;
}
body.r_common.r_brand_mini .page .form .radiobuttons label .radiobuttons__overlay p {
  font-size: 15px;
}
body.r_common.r_brand_mini .page .form--submit input {
  background: #2a6480;
  border-color: #2a6480;
  border-radius: 9999px;
  padding: 18px 65px;
}
body.r_common.r_brand_mini .page .form--submit input:hover {
  background: #24496a;
  border-color: #24496a;
}
body.r_common.r_brand_mini .page .form-popup__row input,
body.r_common.r_brand_mini .page .form-popup__row textarea {
  border-color: #000;
}
body.r_common.r_brand_mini .page .form-popup__row .radiobuttons label .radiobuttons__overlay {
  border-color: #000;
  border-radius: 39px;
  padding: 15px 24px;
}
body.r_common.r_brand_mini .page h3.form-popup__title {
  font-weight: bold;
  font-size: 32px;
  text-transform: uppercase;
  line-height: 1.08;
}
body.r_common.r_brand_mini .page a.phone-link {
  color: #000;
}
body.r_common.r_brand_mini .page a.phone-link:hover {
  color: #8e8e8e;
}
body.r_common.r_brand_mini .page a.phone-link.large {
  font-family: var(--text-family-headings);
  font-weight: bold;
}
body.r_common.r_brand_mini .page a.phone-link.medium {
  font-family: var(--text-family-headings);
  font-weight: bold;
  color: #000 !important;
}
body.r_common.r_brand_mini .page .r_mini_moto_bg {
  background: #f7f7f7;
}
body.r_common.r_brand_mini .page .stock-car__preview--inner .r_premium-badge {
  padding: 7px 15px 5px;
  border-color: #000;
  color: #000;
}
body.r_common.r_brand_mini .page .stock-car__preview--inner .r_premium-badge span {
  color: #000;
}
body.r_common.r_brand_mini .page .stock-car__preview--inner .r_premium-badge span::before {
  color: #000;
  border-color: #000;
}
body.r_common.r_brand_mini .page .stock-car__preview--inner .stock-cars__premium-selection--inner {
  background-color: #000;
  color: white;
  --fg-color: white;
}
body.r_common.r_brand_mini .page .stock-car__preview--inner h1 {
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
}
body.r_common.r_brand_mini .page .stock-car__preview--inner .r_stock-price--original-flex {
  gap: 0.5rem;
}
body.r_common.r_brand_mini .page .stock-car__preview--inner .r_stock-price--original-no-vat::before {
  content: "/";
  color: #000;
  margin-right: 0.5rem;
}
body.r_common.r_brand_mini .page .stock-car__preview--inner .car-interest.button_blue {
  text-transform: none;
}
body.r_common.r_brand_mini .page .stock-car__spec {
  border-top: none;
}
body.r_common.r_brand_mini .page .stock-car__inner.r_stock-attrs {
  --lists-item-gap: 2.5rem;
}
body.r_common.r_brand_mini .page .stock-car__financing .r_stock-financing--columns h3 {
  font-size: 42px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.08;
  min-width: 360px;
}
body.r_common.r_brand_mini .page .r_stock--fin-col h4 {
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
}
body.r_common.r_brand_mini .page .stock-car__financing .r_stock-financing--car .r_stock-financing--car-flex h3 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.08;
}
body.r_common.r_brand_mini .page .stock-car__financing .r_stock-financing--car .r_stock-financing--car-flex .car-interest.button_blue {
  text-transform: none;
}
body.r_common.r_brand_mini .page .stock-car__texts h2.title-h2 {
  font-size: 42px;
  font-weight: bold;
  text-transform: uppercase;
}
body.r_common.r_brand_mini .page .stock-car__texts h4.vertical-list__item--title {
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
}
body.r_common.r_brand_mini .page .models-list__list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  body.r_common.r_brand_mini .page .models-list__list {
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
  }
}
body.r_common.r_brand_mini .page .models-list__list .models-list__series--title {
  display: none;
}
body.r_common.r_brand_mini .page .models-list__list .models-list__car {
  flex: 0 0 100%;
}
body.r_common.r_brand_mini .page table.spec tbody tr.spec-part-caption td p strong {
  font-family: var(--text-family-headings);
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
}
body.r_common.r_brand_mini .page table.spec tbody tr.spec-alternate-1 td:first-child,
body.r_common.r_brand_mini .page table.spec tbody tr.spec-alternate-2 td:first-child {
  opacity: 1;
}
body.r_common.r_brand_mini .page table.spec tbody tr.spec-alternate-1 td:first-child p,
body.r_common.r_brand_mini .page table.spec tbody tr.spec-alternate-2 td:first-child p {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--fg-color);
}
body.r_common.r_brand_mini .page .list-with-images-fixed__content h4 {
  font-size: 30px;
}
body.r_common.r_brand_mini .page .text-two-columns__left-column ol li::before,
body.r_common.r_brand_mini .page .text-two-columns__right-column ol li::before {
  font-family: "bmwTypeNextTT", Arial, sans-serif;
  font-weight: bold;
  font-size: 15px;
}
body.r_common.r_brand_mini .page .text-two-columns__left-column ol li strong,
body.r_common.r_brand_mini .page .text-two-columns__right-column ol li strong {
  display: block;
  font-family: "bmwTypeNextTT", Arial, sans-serif;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 0.3rem;
}
body.r_common.r_brand_mini .page .brand-workshops--extra-margin {
  border-top: 1px solid #dbdbdb;
  padding-top: 3rem;
}
body.r_common.r_brand_mini .page .brand-workshops--wrapper .brand-workshops__nav a {
  color: #222 !important;
  font-family: var(--text-family-headings);
  font-weight: bold !important;
  text-transform: uppercase;
}
body.r_common.r_brand_mini .page .brand-workshops--wrapper .brand-workshops__item-flex a.button_transparent {
  padding-top: 10px;
  padding-bottom: 8px;
}
body.r_common.r_brand_mini .page .brand-workshops--wrapper .brand-workshops__item-flex a.button_blue {
  text-transform: none;
  font-size: 16px;
}
body.r_common.r_brand_mini .page .brand-workshops--wrapper .brand-workshops__item-contact p {
  margin-bottom: 0;
}
body.r_common.r_brand_mini .page .brand-workshops--wrapper .brand-workshops__item-direct h4 {
  font-size: 18px;
  font-weight: bold;
}
body.r_common.r_brand_mini .page .faqs h3.faqs__heading {
  font-size: 42px;
}
body.r_common.r_brand_mini .page .faqs .faq__question h4 {
  font-family: var(--text-family);
  font-weight: var(--text-normal-weight);
  font-size: 22px;
  text-transform: none;
}
body.r_common.r_brand_mini .page .faqs .faq__answer p {
  font-size: 16px;
  margin-bottom: 1rem;
}
@media (min-width: 900px) {
  body.r_common.r_brand_mini .page .articles .article--left {
    flex: 0 0 56%;
  }
  body.r_common.r_brand_mini .page .articles .article--right {
    flex: 0 0 44%;
  }
}
body.r_common.r_brand_mini .page .articles .article {
  margin-bottom: 2rem;
}
body.r_common.r_brand_mini .page .articles h3.article--title a {
  color: #000 !important;
}
body.r_common.r_brand_mini .page .article-detail__container a.back-link {
  color: #000 !important;
}
body.r_common.r_brand_mini .page .article-detail__container a.back-link::before {
  margin-top: -3px;
}
body.r_common.r_brand_mini .page .pagination a {
  color: #000 !important;
}
body.r_common.r_brand_mini .page .r_brandcontact--heading h2 {
  font-family: var(--text-family);
  font-weight: var(--text-normal-weight);
  font-size: 22px;
  text-transform: none;
}
body.r_common.r_brand_mini .page .r_brandcontact--contacts h3 {
  font-family: var(--text-family);
  font-weight: var(--text-bold-weight);
  font-size: 22px;
  text-transform: none;
}
body.r_common.r_brand_mini .page .r_brandcontact--contacts-email a {
  color: #000 !important;
  font-family: var(--text-family-headings);
  font-weight: bold;
}
body.r_common.r_brand_mini .page .r_brandcontact--contacts-button a.button_blue {
  text-transform: none;
  font-size: 16px;
}
body.r_common.r_brand_mini .page .r_brandcontact--footer-item a.button_blue,
body.r_common.r_brand_mini .page .r_brandcontact--footer-item a.button_transparent {
  text-transform: none;
  font-size: 16px;
}
body.r_common.r_brand_mini .page .search-results__more a.more-results:hover {
  background-color: #8e8e8e;
  border-color: #8e8e8e;
  color: #fff;
}
body.r_common.r_brand_mini .page .search-results__item--header a {
  font-weight: bold;
  text-transform: uppercase;
  color: #000 !important;
}
body.r_common.r_brand_mini .search-dropdown--results__template-title {
  font-weight: bold;
  text-transform: uppercase;
}
body.r_common.r_brand_mini .search-dropdown--results__template-additional a {
  color: #000 !important;
  text-decoration: underline;
}
body.r_common.r_brand_mini .search-dropdown--results__template-button.button {
  background-color: white;
  border: 2px solid #000;
  color: #000;
  text-transform: none;
  padding-top: 10px;
  padding-bottom: 8px;
}
body.r_common.r_brand_mini .search-dropdown--results__template-button.button:hover {
  background-color: #8e8e8e;
  border-color: #8e8e8e !important;
  color: #fff;
}
body.r_common.r_brand_mini .contact-banner.active {
  background: #707070;
}
body.r_common.r_brand_mini .contact-banner.active p {
  color: white;
}
body.r_common.r_brand_motorrad {
  --text-family: "bmwMotorrad", Arial, sans-serif;
  --text-family-headings: "bmwMotorrad", Arial, sans-serif;
  --text-normal-weight: 400;
  --text-bold-weight: bold;
  --fg-color: #000;
  font-family: var(--text-family);
}
body.r_common.r_brand_motorrad button.button,
body.r_common.r_brand_motorrad a.button,
body.r_common.r_brand_motorrad a.button_blue,
body.r_common.r_brand_motorrad a.button_transparent,
body.r_common.r_brand_motorrad a.button_white,
body.r_common.r_brand_motorrad a.button_black {
  border-radius: 0;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  padding-top: 12px;
  font-weight: var(--text-bold-weight);
  padding-bottom: 12px;
}
body.r_common.r_brand_motorrad button.button::before,
body.r_common.r_brand_motorrad a.button::before,
body.r_common.r_brand_motorrad a.button_blue::before,
body.r_common.r_brand_motorrad a.button_transparent::before,
body.r_common.r_brand_motorrad a.button_white::before,
body.r_common.r_brand_motorrad a.button_black::before {
  display: none;
}
body.r_common.r_brand_motorrad button.button::after,
body.r_common.r_brand_motorrad a.button::after,
body.r_common.r_brand_motorrad a.button_blue::after,
body.r_common.r_brand_motorrad a.button_transparent::after,
body.r_common.r_brand_motorrad a.button_white::after,
body.r_common.r_brand_motorrad a.button_black::after {
  display: none;
}
body.r_common.r_brand_motorrad button.button svg,
body.r_common.r_brand_motorrad a.button svg,
body.r_common.r_brand_motorrad a.button_blue svg,
body.r_common.r_brand_motorrad a.button_transparent svg,
body.r_common.r_brand_motorrad a.button_white svg,
body.r_common.r_brand_motorrad a.button_black svg {
  display: none;
}
body.r_common.r_brand_motorrad button.button {
  background-color: #fff;
  border-color: #000;
  color: #000;
}
body.r_common.r_brand_motorrad button.button:hover {
  background-color: #2961f6;
  border-color: #2961f6;
  color: #fff;
}
body.r_common.r_brand_motorrad a.button_blue {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
body.r_common.r_brand_motorrad a.button_blue:hover {
  background-color: #2961f6;
  border-color: #2961f6;
  color: #fff;
}
body.r_common.r_brand_motorrad a.button_black {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
body.r_common.r_brand_motorrad a.button_black:hover {
  background-color: #2961f6;
  border-color: #2961f6;
  color: #fff;
}
body.r_common.r_brand_motorrad a.button_white,
body.r_common.r_brand_motorrad a.button_transparent {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}
body.r_common.r_brand_motorrad a.button_white:hover,
body.r_common.r_brand_motorrad a.button_transparent:hover {
  background-color: #2961f6;
  border-color: #2961f6;
  color: #fff;
}
body.r_common.r_brand_motorrad a.button_transparent_bw {
  border-color: #fff;
  background: rgba(0,0,0,0.5);
  color: #fff;
  opacity: 1;
}
body.r_common.r_brand_motorrad a.button_transparent_bw:hover {
  background-color: #2961f6;
  border-color: #2961f6;
  color: #fff;
}
body.r_common.r_brand_motorrad .video-button__inner {
  border: 2px solid #000;
  text-transform: none;
  background-image: url(redesign/video-lt.svg);
  background-size: 27px 19px;
}
body.r_common.r_brand_motorrad .video-button__inner:hover {
  background-color: #2961f6;
  border-color: #2961f6;
  color: #fff;
  background-image: url(redesign/video-lt-white.svg);
}
body.r_common.r_brand_motorrad .header.r_header .header--inner .menu-space {
  --menu-spacing: 35px;
}
@media (min-width: 1024px) and (max-width: 1100px) {
  body.r_common.r_brand_motorrad .header.r_header .header--inner .menu-space {
    --menu-spacing: 15px;
  }
}
@media (min-width: 1101px) and (max-width: 1340px) {
  body.r_common.r_brand_motorrad .header.r_header .header--inner .menu-space {
    --menu-spacing: 25px;
  }
}
@media (min-width: 1341px) and (max-width: 1460px) {
  body.r_common.r_brand_motorrad .header.r_header .header--inner .menu-space {
    --menu-spacing: 23px;
  }
}
body.r_common.r_brand_motorrad .header.r_header .header--inner .menu a {
  font-size: 16px;
  font-weight: var(--text-normal-weight);
}
body.r_common.r_brand_motorrad .header.r_header .header--inner .menu a:hover {
  color: #2961f6;
}
body.r_common.r_brand_motorrad .header.r_header .header--inner .menu a.active {
  color: #2961f6;
}
body.r_common.r_brand_motorrad .header.r_header .header--inner .menu--subitems ul li a {
  font-family: var(--text-family);
}
body.r_common.r_brand_motorrad .header.r_header .header--inner .menu--subitems ul li a:hover {
  color: #2961f6;
}
body.r_common.r_brand_motorrad .header.r_header .header--inner .menu--subitems ul li a.active {
  color: #2961f6;
}
body.r_common.r_brand_motorrad .header.r_header .header--inner .header-search .header-search-button {
  border-radius: 0;
  border-width: 2px;
  border-color: #000;
  background-color: #fff;
  color: #000;
}
body.r_common.r_brand_motorrad .header.r_header .header--inner .header-search .header-search-button span {
  color: #000;
}
body.r_common.r_brand_motorrad .header.r_header .header--inner .header-search .header-search-button:hover {
  background-color: #2961f6;
  border-color: #2961f6;
  color: #fff;
}
body.r_common.r_brand_motorrad .header.r_header .header--inner .header-search .header-search-button:hover span {
  color: #fff;
}
body.r_common.r_brand_motorrad .header.r_header .header--inner .eshop-link {
  font-family: var(--text-family);
  font-weight: var(--text-normal-weight);
  font-size: 16px;
}
body.r_common.r_brand_motorrad .header.r_header .header--inner .eshop-link:hover {
  color: #2961f6;
}
body.r_common.r_brand_motorrad .header.r_header .header--inner .eshop-link:hover svg path {
  fill: #2961f6;
}
body.r_common.r_brand_motorrad .search-header--close {
  text-transform: uppercase;
}
body.r_common.r_brand_motorrad .slider-text a.button_blue {
  box-shadow: none;
}
body.r_common.r_brand_motorrad .slider-main__text {
  --fg-color: #fff;
}
body.r_common.r_brand_motorrad .slider-main__text p {
  color: var(--fg-color);
}
body.r_common.r_brand_motorrad .slider-main__text h1 {
  line-height: 1.05;
  font-weight: var(--text-bold-weight);
  text-transform: uppercase;
}
@media (max-width: 1220px) {
  body.r_common.r_brand_motorrad .slider-main__text h1 {
    font-size: 38px;
    line-height: 1.15;
  }
}
@media (max-width: 460px) {
  body.r_common.r_brand_motorrad .slider-main__text h1 {
    font-size: 24px;
  }
}
body.r_common.r_brand_motorrad .slider-main__text h2 {
  font-size: 21px;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: var(--text-bold-weight);
}
@media (max-width: 1220px) {
  body.r_common.r_brand_motorrad .slider-main__text h2 {
    font-size: 19px;
    line-height: 1.25;
  }
}
@media (max-width: 460px) {
  body.r_common.r_brand_motorrad .slider-main__text h2 {
    font-size: 16px;
  }
}
body.r_common.r_brand_motorrad .routing--wrapper {
  max-width: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  background: #212326;
}
body.r_common.r_brand_motorrad .routing {
  max-width: 1840px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
body.r_common.r_brand_motorrad .routing h2 {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
}
body.r_common.r_brand_motorrad .routing .routing--image-overlay {
  justify-content: flex-end;
  padding-bottom: 40px;
}
body.r_common.r_brand_motorrad .routing .routing--image-overlay h3 {
  text-transform: uppercase;
  font-size: 32px;
  max-width: 7rem;
  line-height: 1.31;
}
body.r_common.r_brand_motorrad h2.brand-workshops-section__title {
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
}
body.r_common.r_brand_motorrad .brand-workshops--extra-margin {
  border-top: 1px solid #dbdbdb;
  padding-top: 3rem;
  padding-left: 0;
  padding-right: 0;
}
body.r_common.r_brand_motorrad .brand-workshops-section .brand-workshops ul.brand-workshops__nav a,
body.r_common.r_brand_motorrad .brand-workshops--wrapper .brand-workshops ul.brand-workshops__nav a {
  font-size: 18px;
}
body.r_common.r_brand_motorrad .brand-workshops-section .brand-workshops ul.brand-workshops__nav li:has(a.active),
body.r_common.r_brand_motorrad .brand-workshops--wrapper .brand-workshops ul.brand-workshops__nav li:has(a.active) {
  background: #f7f7f7;
}
@media (min-width: 900px) and (max-width: 1400px) {
  body.r_common.r_brand_motorrad .brand-workshops-section .brand-workshops .brand-workshops__items,
  body.r_common.r_brand_motorrad .brand-workshops--wrapper .brand-workshops .brand-workshops__items {
    min-height: 750px;
  }
}
@media (min-width: 900px) {
  body.r_common.r_brand_motorrad .brand-workshops-section .brand-workshops .brand-workshops__item-details,
  body.r_common.r_brand_motorrad .brand-workshops--wrapper .brand-workshops .brand-workshops__item-details {
    background: #f7f7f7;
    padding-right: 1.5rem;
  }
}
body.r_common.r_brand_motorrad .brand-workshops-section .brand-workshops .brand-workshops__item-details h3,
body.r_common.r_brand_motorrad .brand-workshops--wrapper .brand-workshops .brand-workshops__item-details h3 {
  font-size: 24px;
  font-weight: bold !important;
  text-transform: uppercase;
}
@media (min-width: 900px) {
  body.r_common.r_brand_motorrad .brand-workshops-section .brand-workshops.brand-workshops--contact .brand-workshops__item-details,
  body.r_common.r_brand_motorrad .brand-workshops--wrapper .brand-workshops.brand-workshops--contact .brand-workshops__item-details {
    background: transparent;
    padding-right: 0;
  }
}
body.r_common.r_brand_motorrad .page h1,
body.r_common.r_brand_motorrad .page h1.title-h1 {
  font-size: 40px;
  line-height: 1.05;
  font-weight: bold;
  text-transform: uppercase;
}
body.r_common.r_brand_motorrad .page h1.align-left.moto-center,
body.r_common.r_brand_motorrad .page h1.title-h1.align-left.moto-center {
  text-align: center;
}
body.r_common.r_brand_motorrad .page h2 {
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
}
body.r_common.r_brand_motorrad .page h2.title-h2 {
  font-size: 24px;
  margin-bottom: -30px;
}
body.r_common.r_brand_motorrad .page h2.title-h2::after {
  display: none;
}
body.r_common.r_brand_motorrad .page h3 {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}
body.r_common.r_brand_motorrad .page h4 {
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
}
body.r_common.r_brand_motorrad .page .model-filters .model-filters__single {
  justify-content: center;
}
body.r_common.r_brand_motorrad .page .model-filters__items {
  flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
}
body.r_common.r_brand_motorrad .page .models-list__series {
  flex-direction: column;
  margin-bottom: 3rem;
}
body.r_common.r_brand_motorrad .page .models-list__series--title {
  width: 100%;
  padding-top: 0;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 1rem;
}
body.r_common.r_brand_motorrad .page .models-list__car a h4 {
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 4px;
}
body.r_common.r_brand_motorrad .page .models-list__car a p {
  font-size: 16px;
}
body.r_common.r_brand_motorrad .page .models-list__car a p strong {
  font-weight: normal;
}
body.r_common.r_brand_motorrad .page .models-list__car a.models-list__car--stock {
  font-weight: normal;
  color: #000;
  text-decoration: underline;
  padding-top: 0.2rem;
}
body.r_common.r_brand_motorrad .page .models-list__cars {
  justify-content: center;
}
@media (min-width: 900px) {
  body.r_common.r_brand_motorrad .page .models-list__cars {
    gap: 1.5rem;
  }
}
@media (max-width: 619px) {
  body.r_common.r_brand_motorrad .page .models-list__car {
    flex: 1 0 100%;
    width: auto;
    justify-content: center;
  }
}
body.r_common.r_brand_motorrad .page .model-intro__inner[data-position="right"] {
  left: unset;
  right: 0;
  top: 0;
  transform: none;
  -webkit-transform: none;
}
body.r_common.r_brand_motorrad .page .model-intro__inner[data-position="left"],
body.r_common.r_brand_motorrad .page .model-intro__inner[data-position="center"] {
  left: 0;
  right: unset;
  top: 0;
  transform: none;
  -webkit-transform: none;
}
body.r_common.r_brand_motorrad .page .model-intro__inner {
  min-width: 450px;
  padding: 0 54px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(22,23,26,0.8);
}
@media (max-width: 768px) {
  body.r_common.r_brand_motorrad .page .model-intro__inner {
    width: 100%;
    padding: 20px 2rem 30px;
  }
}
body.r_common.r_brand_motorrad .page .model-intro__inner h1.model-intro__heading {
  text-shadow: none;
  color: #fff;
  margin-bottom: 0;
}
body.r_common.r_brand_motorrad .page .model-intro__inner .model-intro__buttons p {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
body.r_common.r_brand_motorrad .page .model-intro__inner .model-intro__buttons p a:first-child {
  background-color: #fff;
  border-color: #fff;
  color: #000;
  text-transform: uppercase;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 0;
  font-weight: var(--text-bold-weight);
}
body.r_common.r_brand_motorrad .page .model-intro__inner .model-intro__buttons p a:first-child:hover {
  background-color: #2961f6;
  border-color: #2961f6;
  color: #fff;
}
body.r_common.r_brand_motorrad .page .model-intro__inner .model-intro__buttons p a:not(:first-child) {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 0;
  font-weight: var(--text-bold-weight);
}
body.r_common.r_brand_motorrad .page .model-intro__inner .model-intro__buttons p a:not(:first-child):hover {
  background-color: #2961f6;
  border-color: #2961f6;
  color: #fff;
}
body.r_common.r_brand_motorrad .page .r_mini_moto_bg {
  background: #f7f7f7;
}
body.r_common.r_brand_motorrad .page .r_moto_bg {
  background: #f7f7f7;
}
body.r_common.r_brand_motorrad .page .stock-car__preview--inner a.back-link {
  font-weight: var(--text-normal-weight);
  font-size: 16px;
}
body.r_common.r_brand_motorrad .page .stock-car__preview--inner .r_premium-badge {
  padding: 7px 15px 5px;
  border-color: #000;
  color: #000;
}
body.r_common.r_brand_motorrad .page .stock-car__preview--inner .r_premium-badge span {
  color: #000;
}
body.r_common.r_brand_motorrad .page .stock-car__preview--inner .r_premium-badge span::before {
  color: #000;
  border-color: #000;
}
body.r_common.r_brand_motorrad .page .stock-car__preview--inner .stock-cars__premium-selection--inner {
  background-color: #000;
  color: white;
  --fg-color: white;
}
body.r_common.r_brand_motorrad .page .stock-car__preview--inner h1 {
  font-size: 60px;
  line-height: 1.08;
}
body.r_common.r_brand_motorrad .page .stock-car__preview--inner .r_stock-main-details .r_stock-main-details--item span.label {
  font-size: 16px;
}
body.r_common.r_brand_motorrad .page .stock-car__preview--inner .r_stock-main-details .r_stock-main-details--item span.value {
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
}
body.r_common.r_brand_motorrad .page .r_stock-price .r_stock-price--main span.r_stock-price--label {
  font-size: 16px;
}
body.r_common.r_brand_motorrad .page .r_stock-price .r_stock-price--main span.r_stock-price--original-label {
  font-size: 16px;
}
body.r_common.r_brand_motorrad .page .stock-car__spec {
  border-top: none;
}
body.r_common.r_brand_motorrad .page .r_stock-spec--wrapper .r_stock-spec--item .r_stock-spec--value {
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
}
body.r_common.r_brand_motorrad .page .stock-car__inner.r_stock-attrs {
  --lists-item-gap: 2.5rem;
}
body.r_common.r_brand_motorrad .page .stock-car__attrs {
  border-top: none;
}
body.r_common.r_brand_motorrad .page .stock-car__financing {
  border-top: none;
}
body.r_common.r_brand_motorrad .page .stock-car__financing h3 {
  font-size: 30px;
}
body.r_common.r_brand_motorrad .page .stock-car__financing .r_stock-financing--car {
  background: white;
}
body.r_common.r_brand_motorrad .page .stock-car__moto-people.page {
  min-height: unset;
  margin-left: -1rem;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  body.r_common.r_brand_motorrad .page .stock-car__moto-people.page {
    margin-left: 0;
    margin-right: 0;
  }
}
body.r_common.r_brand_motorrad .page .stock-car__moto-people.page h2.title-h2 {
  padding: 98px 0 0;
  font-size: 40px;
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}
body.r_common.r_brand_motorrad .page .stock-car__moto-people.page h2.title-h2::after {
  display: none;
}
body.r_common.r_brand_motorrad .page .stock-car__moto-people.page .vertical-list__inner {
  padding-bottom: 20px;
}
body.r_common.r_brand_motorrad .page .stock-car__moto-people.page .vertical-list__items {
  margin: 0 auto;
  gap: 2rem;
  row-gap: 0;
  justify-content: center;
}
@media (max-width: 768px) {
  body.r_common.r_brand_motorrad .page .stock-car__moto-people.page .vertical-list__items {
    gap: 0;
  }
}
body.r_common.r_brand_motorrad .page .stock-car__moto-people.page .vertical-list__item--img {
  width: 100%;
  aspect-ratio: 1.15;
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  align-items: flex-start;
}
body.r_common.r_brand_motorrad .page .stock-car__moto-people.page .vertical-list__item--img img.responsive {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
body.r_common.r_brand_motorrad .page .stock-car__moto-people.page .vertical-list__item {
  flex: 0 0 360px;
  background: white;
  padding: 0 0;
}
body.r_common.r_brand_motorrad .page .stock-car__moto-people.page .vertical-list__item:hover p::after {
  background-color: #2961f6;
}
body.r_common.r_brand_motorrad .page .stock-car__moto-people.page .vertical-list__item p {
  font-size: 16px;
  line-height: 1.5;
  padding: 0 32px 32px;
  margin-bottom: 0;
}
body.r_common.r_brand_motorrad .page .stock-car__moto-people.page .vertical-list__item p a {
  font-weight: bold;
}
body.r_common.r_brand_motorrad .page .stock-car__moto-people.page .vertical-list__item p::after {
  content: '';
  display: block;
  margin: 30px 0 0;
  height: 5px;
  background-color: #909090;
}
body.r_common.r_brand_motorrad .page .stock-car__moto-people.page .vertical-list__item--title {
  padding: 0 32px;
  font-size: 22px;
}
body.r_common.r_brand_motorrad .page .stock-car__texts a.arrow_after {
  font-weight: normal;
  text-decoration: underline;
}
body.r_common.r_brand_motorrad .page .vertical-list .vertical-list__item--title {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: var(--text-family);
}
body.r_common.r_brand_motorrad .page .vertical-list .vertical-list__item p {
  font-size: 16px;
  line-height: 1.5;
}
body.r_common.r_brand_motorrad .page a:not(.button_transparent):not(.button_white):not(.button_black):not(
        .button_blue
      ):not(.button) {
  color: #000;
}
body.r_common.r_brand_motorrad .page a:not(.button_transparent):not(.button_white):not(.button_black):not(
        .button_blue
      ):not(.button):hover {
  text-decoration: underline;
  color: #000;
}
body.r_common.r_brand_motorrad .page table.spec {
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 4rem;
}
@media (min-width: 900px) {
  body.r_common.r_brand_motorrad .page table.spec {
    flex-direction: row;
  }
}
body.r_common.r_brand_motorrad .page table.spec caption {
  padding-top: 0;
  padding-bottom: 1rem;
  flex-shrink: 0;
}
@media (min-width: 900px) and (max-width: 1399px) {
  body.r_common.r_brand_motorrad .page table.spec caption {
    flex: 0 1 250px;
    padding-bottom: 0;
    padding-right: 2rem;
    font-size: 25px;
    padding-top: 0.75rem;
  }
}
@media (min-width: 1400px) {
  body.r_common.r_brand_motorrad .page table.spec caption {
    flex: 0 0 400px;
    font-size: 35px;
    padding-right: 2rem;
    padding-top: 0.3rem;
  }
}
body.r_common.r_brand_motorrad .page table.spec tbody {
  flex: 1;
  display: table;
  width: 100%;
}
body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-1,
body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-2 {
  display: table-row;
  background: transparent;
  border-bottom: 1px solid #000;
  --cell-font-size: 16px;
}
body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-1:last-child,
body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-2:last-child {
  border-bottom: none;
}
@media (min-width: 1400px) {
  body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-1,
  body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-2 {
    --cell-font-size: 22px;
  }
}
body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-1 td,
body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-2 td {
  display: table-cell;
  font-size: var(--cell-font-size);
  line-height: 1.17;
  padding: 21px 40px;
  vertical-align: middle;
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-1 td,
  body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-2 td {
    padding: 10px 15px;
  }
}
body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-1 td p,
body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-2 td p {
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}
body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-1 td:first-child,
body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-2 td:first-child {
  font-size: var(--cell-font-size);
  font-weight: var(--text-bold-weight);
  opacity: 1;
}
body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-1 td:first-child p,
body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-2 td:first-child p {
  font-size: var(--cell-font-size);
  font-weight: var(--text-bold-weight);
}
body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-1 td:last-child,
body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-2 td:last-child {
  font-size: var(--cell-font-size);
  margin-top: 0;
  font-weight: var(--text-normal-weight);
}
body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-1 td:last-child p,
body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-2 td:last-child p {
  font-size: var(--cell-font-size);
  font-weight: var(--text-normal-weight);
}
body.r_common.r_brand_motorrad .page table.spec tbody:last-child td {
  border-bottom: none;
}
@media (min-width: 900px) {
  body.r_common.r_brand_motorrad .page table.spec tbody {
    display: table;
  }
  body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-1,
  body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-2 {
    width: 100%;
  }
}
@media (max-width: 899px) {
  body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-1:nth-of-type(odd),
  body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-1:nth-of-type(even),
  body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-2:nth-of-type(odd),
  body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-2:nth-of-type(even) {
    background: transparent;
  }
}
@media (max-width: 768px) {
  body.r_common.r_brand_motorrad .page table.spec tbody {
    display: block;
  }
  body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-1,
  body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-2 {
    display: block;
  }
  body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-1 td,
  body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-2 td {
    display: block;
    width: 100%;
    white-space: normal;
    padding: 5px 10px;
  }
  body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-1 td:first-child,
  body.r_common.r_brand_motorrad .page table.spec tbody tr.spec-alternate-2 td:first-child {
    padding-bottom: 0;
  }
}
@media (min-width: 900px) and (max-width: 1399px) {
  body.r_common.r_brand_motorrad .page table.spec.motopujcovna caption {
    flex: 0 1 400px;
    padding-right: 4rem;
  }
}
@media (min-width: 1400px) {
  body.r_common.r_brand_motorrad .page table.spec.motopujcovna caption {
    flex: 0 0 600px;
    padding-right: 4rem;
  }
}
body.r_common.r_brand_motorrad .page table.spec.motopujcovna caption h2,
body.r_common.r_brand_motorrad .page table.spec.motopujcovna caption h3 {
  font-size: 24px;
  font-weight: bold;
  text-transform: none;
}
body.r_common.r_brand_motorrad .page table.spec.motopujcovna tbody tr.spec-alternate-1 td,
body.r_common.r_brand_motorrad .page table.spec.motopujcovna tbody tr.spec-alternate-2 td {
  --cell-font-size: 16px;
}
@media (min-width: 1400px) {
  body.r_common.r_brand_motorrad .page table.spec.motopujcovna tbody tr.spec-alternate-1 td,
  body.r_common.r_brand_motorrad .page table.spec.motopujcovna tbody tr.spec-alternate-2 td {
    --cell-font-size: 16px;
  }
}
body.r_common.r_brand_motorrad .page .list-with-images-fixed__content h4 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  max-width: 20rem;
}
body.r_common.r_brand_motorrad .page .text-two-columns__left-column ol li strong,
body.r_common.r_brand_motorrad .page .text-two-columns__right-column ol li strong {
  display: block;
}
@media (min-width: 900px) {
  body.r_common.r_brand_motorrad .page .articles .article--left {
    flex: 0 0 56%;
  }
  body.r_common.r_brand_motorrad .page .articles .article--right {
    flex: 0 0 44%;
  }
}
body.r_common.r_brand_motorrad .page .articles .article {
  margin-bottom: 2rem;
}
body.r_common.r_brand_motorrad .page .articles .article p {
  font-size: 16px;
}
body.r_common.r_brand_motorrad .page .articles h3.article--title a {
  color: #000 !important;
}
body.r_common.r_brand_motorrad .page .article-detail__container a.back-link {
  color: #000 !important;
}
body.r_common.r_brand_motorrad .page .article-detail__container a.back-link::before {
  margin-top: -3px;
}
body.r_common.r_brand_motorrad .page .pagination a {
  color: #000 !important;
}
body.r_common.r_brand_motorrad .page .r_brandcontact--heading h2 {
  font-size: 24px;
  margin-bottom: 15px;
}
body.r_common.r_brand_motorrad .page .r_brandcontact--heading h1 {
  max-width: 16rem;
}
body.r_common.r_brand_motorrad .page .r_brandcontact--footer-item h2 {
  font-size: 32px;
  max-width: 29.5rem;
}
body.r_common.r_brand_motorrad .search-dropdown--results__template-title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 22px;
}
body.r_common.r_brand_motorrad .search-dropdown--results__template-additional a {
  color: #000 !important;
  text-decoration: underline;
}
body.r_common.r_brand_motorrad .search-dropdown button.search-dropdown--results__large-button {
  min-width: 25rem;
}
body.r_common.r_brand_motorrad .contact-banner.active {
  background: #707070;
}
body.r_common.r_brand_motorrad .contact-banner.active p {
  color: white;
}
