.m-107-container {
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    position: relative;
    min-height: 1px;
}

/* TEXT COLORS **/
/** BACKGROUND COLORS **/
/** SOCIAL MEDIA COLORS **/
/**
 * HEADER / MAIN-NAVIGATION
 *
 * Farbe der
 *   - Linie neben dem Wappen,
 *   - Trennlinien zwischen den Menupunkten
 *   - Rahmen um die Flyouts
 */
/** GUI COLORS **/
.m-107--hide-on-desktop .m-107-info__headline:before {
    font-family: 'pag-iconfont';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
}

/* http://codepen.io/erinautomatic/pen/BLFqe */
/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
These "retina group" variables are mappings for the naming and pairing of normal and retina sprites.

The list formatted variables are intended for mixins like `retina-sprite` and `retina-sprites`.
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
/*
The `retina-sprite` mixin sets up rules and a media query for a sprite/retina sprite.
  It should be used with a "retina group" variable.

The media query is from CSS Tricks: https://css-tricks.com/snippets/css/retina-display-media-query/

$icon-home-group: ('icon-home', $icon-home, $icon-home-2x, );

.icon-home {
  @include retina-sprite($icon-home-group);
}
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
/*
The `retina-sprites` mixin generates a CSS rule and media query for retina groups
  This yields the same output as CSS retina template but can be overridden in SCSS

@include retina-sprites($retina-groups);
*/
.m-107--hide-on-desktop .m-107-info__headline:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased;
    speak: none;
    text-transform: none;
    line-height: 1;
}

html[dir="ltr"] .m-107--hide-on-desktop .m-107-info__headline:before, .m-107--hide-on-desktop html[dir="ltr"] .m-107-info__headline:before {
    content: "î€¤";
}

/** GENERAL MODULE IMPLEMENTATION **/
.m-107--hide-on-desktop .m-107-info__headline, .m-107--hide-on-desktop .m-107-info__headline:before {
    transition: color 0.24s;
}

.m-107-container {
    width: 97%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

html[dir="ltr"] .m-107-container {
    float: left;
}

html[dir="ltr"] .m-107-container {
    margin-left: 3%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .m-107-container {
        width: 98%;
    }

    html[dir="ltr"] .m-107-container {
        margin-left: 2%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .m-107-container {
        width: 98%;
    }

    html[dir="ltr"] .m-107-container {
        margin-left: 2%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .m-107-container {
        width: 99%;
    }

    html[dir="ltr"] .m-107-container {
        margin-left: 1%;
    }
}

@media only screen and (min-width: 1200px) {
    .m-107-container {
        width: 100%;
    }

    html[dir="ltr"] .m-107-container {
        margin-left: 1%;
    }
}

.m-107--hide-on-desktop {
    display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .m-107--hide-on-desktop {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .m-107--hide-on-desktop {
        display: none;
    }
}

@media only screen and (min-width: 1200px) {
    .m-107--hide-on-desktop {
        display: none;
    }
}

.m-107--hide-on-mobile {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .m-107--hide-on-mobile {
        display: inline-block;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .m-107--hide-on-mobile {
        display: inline-block;
    }
}

@media only screen and (min-width: 1200px) {
    .m-107--hide-on-mobile {
        display: inline-block;
    }
}

.m-107-tile {
    overflow: hidden;
    position: relative;
    transform: translate3d(0, 0, 0);
    width: 50%;
}

@media only screen and (min-width: 1200px) {
    .m-107-tile {
        width: 33.33333%;
    }
}

.m-107-tile__image-wrapper {
    background-color: #191f22;
    overflow: hidden;
    position: relative;
}

.m-107-tile__image-wrapper:before {
    content: '';
    float: left;
    padding-bottom: 112.5%;
}

.m-107-tile__image-wrapper:after {
    content: '';
    display: table;
    clear: both;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .m-107-tile__image-wrapper:before {
        content: '';
        float: left;
        padding-bottom: 75%;
    }

    .m-107-tile__image-wrapper:after {
        content: '';
        display: table;
        clear: both;
    }
}

@media only screen and (min-width: 1200px) {
    .m-107-tile__image-wrapper:before {
        content: '';
        float: left;
        padding-bottom: 75%;
    }

    .m-107-tile__image-wrapper:after {
        content: '';
        display: table;
        clear: both;
    }
}

.m-107-tile__image {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.01);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .m-107-tile__image {
        transform: translate(-50%, -50%) scale(1.01) !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .m-107-tile__image {
        transform: translate(-50%, -50%) scale(1.01) !important;
    }
}

@media only screen and (min-width: 1200px) {
    .m-107-tile__image {
        transform: translate(-50%, -50%) scale(1.01) !important;
    }
}

.m-107-tile__info-wrapper {
    bottom: 0;
    left: 0;
    padding-bottom: 7.14286%;
    padding-left: 7.14286%;
    padding-right: 7.14286%;
    padding-top: 7.14286%;
    position: absolute;
    right: 0;
    text-decoration: none;
    top: 0;
}

@media only screen and (min-width: 1760px) {
    .m-107-tile__info-wrapper {
        padding-left: 10%;
        padding-right: 10%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .m-107-tile__info-wrapper {
        padding: 6px 20px 20px 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .m-107-tile__info-wrapper {
        padding: 8px 20px 20px 20px;
    }
}

@media only screen and (min-width: 1200px) {
    .m-107-tile__info-wrapper {
        padding: 15px 30px 30px 30px;
    }
}

@media only screen and (min-width: 1760px) {
    .m-107-tile__info-wrapper {
        padding: 20px 40px 40px 40px;
    }
}

.m-107-info {
    display: none;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: relative;
    width: 100%;
    z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .m-107-info {
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .m-107-info {
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media only screen and (min-width: 1200px) {
    .m-107-info {
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.m-107-tile--initialized .m-107-info {
    display: -ms-flexbox;
    display: flex;
}

.m-107-info__headline {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    color: #FFFFFF;
    font-size: 28px;
    line-height: 36px;
    font-weight: normal;
    vertical-align: middle;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .m-107-info__headline {
        font-size: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .m-107-info__headline {
        font-size: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .m-107-info__headline {
        font-size: 40px;
    }
}

@media only screen and (min-width: 1200px) {
    .m-107-info__headline {
        font-size: 60px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .m-107-info__headline {
        line-height: 52px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .m-107-info__headline {
        line-height: 52px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .m-107-info__headline {
        line-height: 52px;
    }
}

@media only screen and (min-width: 1200px) {
    .m-107-info__headline {
        line-height: 72px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .m-107-info__headline {
        font-weight: normal;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .m-107-info__headline {
        font-weight: normal;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .m-107-info__headline {
        font-weight: normal;
    }
}

@media only screen and (min-width: 1200px) {
    .m-107-info__headline {
        font-weight: normal;
    }
}

.m-107-info__headline span {
    vertical-align: middle;
}

.m-107--hide-on-desktop .m-107-info__headline {
    font-size: 20px;
    line-height: 28px;
    font-weight: normal;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .m-107--hide-on-desktop .m-107-info__headline {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .m-107--hide-on-desktop .m-107-info__headline {
        font-size: 22px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .m-107--hide-on-desktop .m-107-info__headline {
        font-size: 22px;
    }
}

@media only screen and (min-width: 1200px) {
    .m-107--hide-on-desktop .m-107-info__headline {
        font-size: 24px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .m-107--hide-on-desktop .m-107-info__headline {
        line-height: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .m-107--hide-on-desktop .m-107-info__headline {
        line-height: 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .m-107--hide-on-desktop .m-107-info__headline {
        line-height: 30px;
    }
}

@media only screen and (min-width: 1200px) {
    .m-107--hide-on-desktop .m-107-info__headline {
        line-height: 30px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .m-107--hide-on-desktop .m-107-info__headline {
        font-weight: normal;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .m-107--hide-on-desktop .m-107-info__headline {
        font-weight: normal;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .m-107--hide-on-desktop .m-107-info__headline {
        font-weight: normal;
    }
}

@media only screen and (min-width: 1200px) {
    .m-107--hide-on-desktop .m-107-info__headline {
        font-weight: normal;
    }
}

.m-107--hide-on-desktop .m-107-info__headline:before {
    color: #d5001c;
    vertical-align: middle;
}

.no-touch .m-107-tile__info-wrapper.m-107--hide-on-desktop:hover .m-107-info__headline {
    color: #d5001c;
}

.m-107-info__price {
    color: #FFFFFF;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    opacity: 0;
}

html[dir="ltr"] .m-107-info__price {
    margin-left: 21px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .m-107-info__price {
        font-size: 16px;
        line-height: 24px;
        font-weight: normal;
        opacity: 1 !important;
    }

    html[dir="ltr"] .m-107-info__price {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 480px) and (max-width: 767px) {
    .m-107-info__price {
        font-size: 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
    .m-107-info__price {
        font-size: 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 992px) and (max-width: 1199px) {
    .m-107-info__price {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 1200px) {
    .m-107-info__price {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 480px) and (max-width: 767px) {
    .m-107-info__price {
        line-height: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
    .m-107-info__price {
        line-height: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 992px) and (max-width: 1199px) {
    .m-107-info__price {
        line-height: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 1200px) {
    .m-107-info__price {
        line-height: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 480px) and (max-width: 767px) {
    .m-107-info__price {
        font-weight: normal;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
    .m-107-info__price {
        font-weight: normal;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 992px) and (max-width: 1199px) {
    .m-107-info__price {
        font-weight: normal;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 1200px) {
    .m-107-info__price {
        font-weight: normal;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .m-107-info__price {
        font-size: 16px;
        line-height: 24px;
        font-weight: normal;
        opacity: 1 !important;
    }

    html[dir="ltr"] .m-107-info__price {
        margin-left: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 480px) and (max-width: 767px) {
    .m-107-info__price {
        font-size: 16px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 768px) and (max-width: 991px) {
    .m-107-info__price {
        font-size: 16px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 992px) and (max-width: 1199px) {
    .m-107-info__price {
        font-size: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 1200px) {
    .m-107-info__price {
        font-size: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 480px) and (max-width: 767px) {
    .m-107-info__price {
        line-height: 24px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 768px) and (max-width: 991px) {
    .m-107-info__price {
        line-height: 24px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 992px) and (max-width: 1199px) {
    .m-107-info__price {
        line-height: 28px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 1200px) {
    .m-107-info__price {
        line-height: 28px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 480px) and (max-width: 767px) {
    .m-107-info__price {
        font-weight: normal;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 768px) and (max-width: 991px) {
    .m-107-info__price {
        font-weight: normal;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 992px) and (max-width: 1199px) {
    .m-107-info__price {
        font-weight: normal;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 1200px) {
    .m-107-info__price {
        font-weight: normal;
    }
}

@media only screen and (min-width: 1200px) {
    .m-107-info__price {
        font-size: 16px;
        line-height: 24px;
        font-weight: normal;
        opacity: 1 !important;
    }

    html[dir="ltr"] .m-107-info__price {
        margin-left: 0;
    }
}

@media only screen and (min-width: 1200px) and (min-width: 480px) and (max-width: 767px) {
    .m-107-info__price {
        font-size: 16px;
    }
}

@media only screen and (min-width: 1200px) and (min-width: 768px) and (max-width: 991px) {
    .m-107-info__price {
        font-size: 16px;
    }
}

@media only screen and (min-width: 1200px) and (min-width: 992px) and (max-width: 1199px) {
    .m-107-info__price {
        font-size: 20px;
    }
}

@media only screen and (min-width: 1200px) and (min-width: 1200px) {
    .m-107-info__price {
        font-size: 20px;
    }
}

@media only screen and (min-width: 1200px) and (min-width: 480px) and (max-width: 767px) {
    .m-107-info__price {
        line-height: 24px;
    }
}

@media only screen and (min-width: 1200px) and (min-width: 768px) and (max-width: 991px) {
    .m-107-info__price {
        line-height: 24px;
    }
}

@media only screen and (min-width: 1200px) and (min-width: 992px) and (max-width: 1199px) {
    .m-107-info__price {
        line-height: 28px;
    }
}

@media only screen and (min-width: 1200px) and (min-width: 1200px) {
    .m-107-info__price {
        line-height: 28px;
    }
}

@media only screen and (min-width: 1200px) and (min-width: 480px) and (max-width: 767px) {
    .m-107-info__price {
        font-weight: normal;
    }
}

@media only screen and (min-width: 1200px) and (min-width: 768px) and (max-width: 991px) {
    .m-107-info__price {
        font-weight: normal;
    }
}

@media only screen and (min-width: 1200px) and (min-width: 992px) and (max-width: 1199px) {
    .m-107-info__price {
        font-weight: normal;
    }
}

@media only screen and (min-width: 1200px) and (min-width: 1200px) {
    .m-107-info__price {
        font-weight: normal;
    }
}

.m-107-info__price--hidden {
    visibility: hidden;
}

.m-107-info__price:nth-child(n+2) {
    margin-top: 2px;
}

.m-107-info__link-wrapper {
    -ms-flex-align: end;
    align-items: flex-end;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.m-107-info__link {
    margin-top: 10px;
}

html[dir="ltr"] .m-107-info__link {
    margin-right: 10px;
}

.m-107-tile__gradient {
    background: linear-gradient(to top, rgba(25, 31, 34, 0.3), rgba(25, 31, 34, 0));
    bottom: 0;
    height: 80px;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .m-107-tile__gradient {
        background: linear-gradient(to bottom, rgba(25, 31, 34, 0.3), rgba(25, 31, 34, 0));
        height: auto;
        top: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .m-107-tile__gradient {
        background: linear-gradient(to bottom, rgba(25, 31, 34, 0.3), rgba(25, 31, 34, 0));
        height: auto;
        top: 0;
    }
}

@media only screen and (min-width: 1200px) {
    .m-107-tile__gradient {
        background: linear-gradient(to bottom, rgba(25, 31, 34, 0.3), rgba(25, 31, 34, 0));
        height: auto;
        top: 0;
    }
}

.m-107-price-disclaimer {
    display: none;
    margin-top: 16px;
    padding-left: 7.14286%;
    padding-right: 7.14286%;
}

@media only screen and (min-width: 1760px) {
    .m-107-price-disclaimer {
        padding-left: 10%;
        padding-right: 10%;
    }
}

.m-107--has-price-disclaimer .m-107-price-disclaimer {
    display: block;
}

.m-107-price-disclaimer__text {
    margin: 0;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
}

.m-107-price-disclaimer__text:nth-child(n+2) {
    margin-top: 16px;
}

.no-touch .gui-btn.gui-btn-white:hover span {
    color: #fff;
}

.gui-btn.gui-btn-white span {
    color: #000;
}

.b-link-line-context a, .b-eco__container, .gui-btn-with-arrow.gui-btn-red span, .b-form-wrapper .nextButton > .gui-btn-red.textButton span, .gui-btn-with-arrow.gui-btn-white span, .b-form-wrapper .nextButton > .gui-btn-white.textButton span, .gui-btn-with-arrow.gui-btn-white.gui-link-with-arrow span:before, .b-form-wrapper .nextButton > .gui-btn-white.gui-link-with-arrow.textButton span:before, .gui-btn-with-arrow-left.gui-btn-red span, .b-form-wrapper .previousButton > .gui-btn-red.textButton span, .gui-btn-with-arrow-left.gui-btn-white span, .b-form-wrapper .previousButton > .gui-btn-white.textButton span, .gui-btn-with-arrow-left.gui-btn-white.gui-link-with-arrow span:before, .b-form-wrapper .previousButton > .gui-btn-white.gui-link-with-arrow.textButton span:before, .gui-btn-with-arrow-left-to-right.gui-btn-red span, .gui-btn-with-arrow-left-to-right.gui-btn-white span, .gui-btn-with-arrow-left-to-right.gui-btn-white.gui-link-with-arrow span:before, .gui-btn-print.gui-btn-red span, .b-form-wrapper .printButton > .gui-btn-red.textButton span, .gui-btn-print.gui-btn-white span, .b-form-wrapper .printButton > .gui-btn-white.textButton span, .gui-btn-print.gui-btn-white.gui-link-with-arrow span:before, .b-form-wrapper .printButton > .gui-btn-white.gui-link-with-arrow.textButton span:before, .gui-btn.gui-btn-red span, .gui-btn.gui-btn-white span, .gui-btn.gui-btn-white.gui-link-with-arrow span:before, .gui-btn-with-icon.gui-btn-red span, .gui-btn-with-icon.gui-btn-white span, .gui-btn-with-icon.gui-btn-white.gui-link-with-arrow span:before, .m-061__overlay-button-replay, .gui-link-with-arrow, .gui-link-with-download, .gui-link-with-globe, .gui-link-with-pin, .gui-link-with-phone, .gui-link-with-article, .gui-link-with-video-play, .gui-back-link, .gui-link, .gui-link-with-arrow--blue span:before, .no-touch .gui-link-with-download:hover span:before, .no-touch .gui-link-with-globe:hover span:before, .no-touch .gui-link-with-pin:hover span:before, .no-touch .gui-link-with-phone:hover span:before, .no-touch .gui-link-with-article:hover span:before, .no-touch .gui-link-with-video-play:hover span:before, .no-touch .gui-back-link:hover span:before, .gui-link-underline, .gui-double-headline-with-arrow .claim-part-1, .gui-double-headline-with-arrow .claim-part-2, .gui-btn-round-blue, .gui-link-list li a, .gui-tab-nav-light ul li a, .no-touch .royalSlider .rsArrowIcn:hover, .no-touch .gui .rsArrowIcn:hover, .gui-btn-outline span, body div:first-child#cookie-notice .b-standard-module a, body div:first-child#cookie-notice .b-standard-module a:hover, body div:first-child#cookie-notice .b-standard-module a.gui-btn-with-icon:hover:before {
    transition: color .24s;
}

.m-061__overlay-button-replay span, .gui-link-with-arrow span, .gui-link-with-download span, .gui-link-with-globe span, .gui-link-with-pin span, .gui-link-with-phone span, .gui-link-with-article span, .gui-link-with-video-play span, .gui-back-link span {
    line-height: inherit;
    display: inline-block;
    position: relative;
    padding-left: 21px;
}

.gui-btn > span {
    color: inherit;
}

.b-teaser-wrapper *, .b-teaser-link .b-teaser-context *, .b-more-about-context *, .b-title-wrapper .b-title-headline-text *, .b-standard-module-wrapper *, .b-form-wrapper #formcomponentform *, .b-form-wrapper #formcomponentform2 *, .b-form-wrapper .container.c-default *, .b-form-wrapper .checkboxlist *, .b-form-wrapper .radiolist *, .b-form-wrapper .layout-1 .container.c-default *, .b-grid-overlay-zforms *, .module-grid * {
    box-sizing: border-box;
}

a, a > img, a > span {
    cursor: pointer;
}

.no-touch .gui-btn.gui-link-with-arrow:hover span:before, .no-touch .gui-btn.gui-link-with-article:hover span:before, .no-touch .gui-btn.gui-link-with-download:hover span:before, .no-touch .gui-btn.gui-link-with-phone:hover span:before, .no-touch .gui-btn.gui-link-with-globe:hover span:before, .no-touch .gui-btn.gui-link-with-pin:hover span:before {
    color: #fff;
}

.gui-btn.gui-btn-white.gui-link-with-arrow span:before {
    color: #000;
}

.b-link-line-context a, .b-eco__container, .gui-btn-with-arrow.gui-btn-red span, .b-form-wrapper .nextButton > .gui-btn-red.textButton span, .gui-btn-with-arrow.gui-btn-white span, .b-form-wrapper .nextButton > .gui-btn-white.textButton span, .gui-btn-with-arrow.gui-btn-white.gui-link-with-arrow span:before, .b-form-wrapper .nextButton > .gui-btn-white.gui-link-with-arrow.textButton span:before, .gui-btn-with-arrow-left.gui-btn-red span, .b-form-wrapper .previousButton > .gui-btn-red.textButton span, .gui-btn-with-arrow-left.gui-btn-white span, .b-form-wrapper .previousButton > .gui-btn-white.textButton span, .gui-btn-with-arrow-left.gui-btn-white.gui-link-with-arrow span:before, .b-form-wrapper .previousButton > .gui-btn-white.gui-link-with-arrow.textButton span:before, .gui-btn-with-arrow-left-to-right.gui-btn-red span, .gui-btn-with-arrow-left-to-right.gui-btn-white span, .gui-btn-with-arrow-left-to-right.gui-btn-white.gui-link-with-arrow span:before, .gui-btn-print.gui-btn-red span, .b-form-wrapper .printButton > .gui-btn-red.textButton span, .gui-btn-print.gui-btn-white span, .b-form-wrapper .printButton > .gui-btn-white.textButton span, .gui-btn-print.gui-btn-white.gui-link-with-arrow span:before, .b-form-wrapper .printButton > .gui-btn-white.gui-link-with-arrow.textButton span:before, .gui-btn.gui-btn-red span, .gui-btn.gui-btn-white span, .gui-btn.gui-btn-white.gui-link-with-arrow span:before, .gui-btn-with-icon.gui-btn-red span, .gui-btn-with-icon.gui-btn-white span, .gui-btn-with-icon.gui-btn-white.gui-link-with-arrow span:before, .m-061__overlay-button-replay, .gui-link-with-arrow, .gui-link-with-download, .gui-link-with-globe, .gui-link-with-pin, .gui-link-with-phone, .gui-link-with-article, .gui-link-with-video-play, .gui-back-link, .gui-link, .gui-link-with-arrow--blue span:before, .no-touch .gui-link-with-download:hover span:before, .no-touch .gui-link-with-globe:hover span:before, .no-touch .gui-link-with-pin:hover span:before, .no-touch .gui-link-with-phone:hover span:before, .no-touch .gui-link-with-article:hover span:before, .no-touch .gui-link-with-video-play:hover span:before, .no-touch .gui-back-link:hover span:before, .gui-link-underline, .gui-double-headline-with-arrow .claim-part-1, .gui-double-headline-with-arrow .claim-part-2, .gui-btn-round-blue, .gui-link-list li a, .gui-tab-nav-light ul li a, .no-touch .royalSlider .rsArrowIcn:hover, .no-touch .gui .rsArrowIcn:hover, .gui-btn-outline span, body div:first-child#cookie-notice .b-standard-module a, body div:first-child#cookie-notice .b-standard-module a:hover, body div:first-child#cookie-notice .b-standard-module a.gui-btn-with-icon:hover:before {
    transition: color .24s;
}

html[dir="ltr"] .b-teaser-link .b-teaser-context .b-teaser-caption-wrapper .b-teaser-caption span::before, .b-teaser-link .b-teaser-context .b-teaser-caption-wrapper .b-teaser-caption html[dir="ltr"] span::before, html[dir="ltr"] ul.b-link-list li a::before, ul.b-link-list li html[dir="ltr"] a::before, html[dir="ltr"] .gui-link-with-arrow span::before, .gui-link-with-arrow html[dir="ltr"] span::before, html[dir="ltr"] .gui-link-with-article span::before, .gui-link-with-article html[dir="ltr"] span::before, html[dir="ltr"] .gui-btn-round-blue.icon-right::before {
    content: "";
}

.gui-btn.gui-link-with-arrow span:before, .gui-btn.gui-link-with-article span:before, .gui-btn.gui-link-with-download span:before, .gui-btn.gui-link-with-phone span:before, .gui-btn.gui-link-with-globe span:before, .gui-btn.gui-link-with-pin span:before {
    color: #fff;
}

.m-061__overlay-button-replay span:before, .gui-link-with-arrow span:before, .gui-link-with-download span:before, .gui-link-with-globe span:before, .gui-link-with-pin span:before, .gui-link-with-phone span:before, .gui-link-with-article span:before, .gui-link-with-video-play span:before, .gui-back-link span:before {
    margin-right: .5em;
    color: #d5001c;
    font-size: 1em;
    position: absolute;
    margin-left: -26px;
    line-height: inherit;
    margin-top: -1px;
}

.gui-btn-round-blue.registration:before, .gui-btn-sm-xing:before, .gui-btn-round-blue.info:before, .gui-btn-round-blue.rss:before, .gui-btn-round-blue.search:before, .gui-btn-sm-twitter:before, .gui-btn-sm-pinterest:before, .gui-btn-sm-google:before, .gui-btn-sm-facebook:before, .gui-btn-round-plus:before, .gui-btn-sm-weibo:before, .gui-btn-sm-qq:before, .gui-btn-sm-renren:before, .gui-btn-sm-youtube:before, .gui-btn-sm-youku:before, .gui-btn-sm-instagram:before, .gui-btn-sm-linkedin:before, .gui-btn-sm-yahoo:before, .gui-btn-sm-yahoo-us:before, .gui-btn-sm-digg:before, .gui-btn-sm-baidu:before, .gui-btn-sm-kaixin:before, .gui-btn-sm-sohu:before, .gui-btn-sm-hatena-bookmark:before, .gui-btn-sm-qq-share:before, .gui-btn-sm-skyrock:before, .gui-btn-sm-tecent:before, .gui-btn-sm-vk:before, .gui-btn-sm-wechat:before, .gui-btn-sm-foursquare:before, .gui-btn-sm-whatsapp:before, .gui-btn-with-icon.download span:before, .gui-btn-round-blue.download:before, .gui-btn-close:before, .gui-btn-round-close:before, .gui-btn-with-icon.pin span:before, .gui-link-with-pin span:before, .gui-btn-with-icon.icon-sound:before, .zoomImage > div:before, .b-zoom-icon:before, .gui-btn-with-icon.icon-share:before, .gui-btn-with-icon.icon-sound-mute:before, .b-teaser-link .b-teaser-context .b-teaser-caption-wrapper .b-teaser-caption span:before, ul.b-link-list li a:before, .gui-link-with-arrow span:before, .gui-link-with-article span:before, .gui-btn-round-blue.icon-right:before, .gui-back-link span:before, .gui-tab-nav-dark .m39-flyout-dropdown ul li:before, .royalSlider .rsArrowRight .rsArrowIcn:after, .gui .rsArrowRight .rsArrowIcn:after, .royalSlider .rsArrowLeft .rsArrowIcn:after, .gui .rsArrowLeft .rsArrowIcn:after, .gui-tab-nav-dark .m39-flyout-dropdown:hover .m-39-flyout-label:after, .gui-tab-nav-dark .m39-flyout-dropdown .m-39-flyout-label:after, .gui-btn-round-blue.configure:before, .gui-btn-with-arrow-left span:before, .b-form-wrapper .previousButton > .textButton span:before, .gui-btn-with-arrow span:before, .b-form-wrapper .nextButton > .textButton span:before, .gui-btn-with-arrow-left-to-right span:before, .gui-double-headline-with-arrow .claim-part-1:before, .gui-select2-container .select2-arrow b:before, .gui-scroll-indicator span:after, .gui-link-with-download span:before, .gui-btn-with-icon.phone span:before, .gui-link-with-phone span:before, .gui-btn-with-icon.globe span:before, .gui-link-with-globe span:before, .gui-btn-round-blue.getinfo:before, .b-form-wrapper .helpInfo:before, .gui-btn-round-blue.compare:before, .gui-btn-round-blue.finance:before, .gui-btn-round-blue.highlights:before, .b-form-wrapper .checkbox label.isChecked:before, .gui-btn-print:before, .b-form-wrapper .printButton > .textButton:before, .gui-btn-round-blue.testdrive:before, .gui-btn-round-blue.newsletter:before, .gui-btn-round-blue.ownerservice:before, .gui-icon.icon-timer > span:before, .gui-icon.icon-gps > span:before, .gui-icon.icon-microphone > span:before, .gui-icon.icon-play2 > span:before, .gui-link-with-video-play span:before, .gui-btn-round-blue.contact:before, .b-form-wrapper .radio label.isChecked:before, .gui-btn-round-blue.filter:before, .gui-btn-round-blue.car:before, .corporate-sales:before, .gui-btn-round-blue.shop:before, .b-dealer-search-form .b-dealer-search-submit, .gui-search-submit {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased;
    speak: none;
    text-transform: none;
    line-height: 1;
}

.gui-btn-round-blue.registration:before, .gui-btn-sm-xing:before, .gui-btn-round-blue.info:before, .gui-btn-round-blue.rss:before, .gui-btn-round-blue.search:before, .gui-btn-sm-twitter:before, .gui-btn-sm-pinterest:before, .gui-btn-sm-google:before, .gui-btn-sm-facebook:before, .gui-btn-round-plus:before, .gui-btn-sm-weibo:before, .gui-btn-sm-qq:before, .gui-btn-sm-renren:before, .gui-btn-sm-youtube:before, .gui-btn-sm-youku:before, .gui-btn-sm-instagram:before, .gui-btn-sm-linkedin:before, .gui-btn-sm-yahoo:before, .gui-btn-sm-yahoo-us:before, .gui-btn-sm-digg:before, .gui-btn-sm-baidu:before, .gui-btn-sm-kaixin:before, .gui-btn-sm-sohu:before, .gui-btn-sm-hatena-bookmark:before, .gui-btn-sm-qq-share:before, .gui-btn-sm-skyrock:before, .gui-btn-sm-tecent:before, .gui-btn-sm-vk:before, .gui-btn-sm-wechat:before, .gui-btn-sm-foursquare:before, .gui-btn-sm-whatsapp:before, .gui-btn-with-icon.download span:before, .gui-btn-round-blue.download:before, .gui-btn-close:before, .gui-btn-round-close:before, .gui-btn-with-icon.pin span:before, .gui-link-with-pin span:before, .gui-btn-with-icon.icon-sound:before, .zoomImage > div:before, .b-zoom-icon:before, .gui-btn-with-icon.icon-share:before, .gui-btn-with-icon.icon-sound-mute:before, .b-teaser-link .b-teaser-context .b-teaser-caption-wrapper .b-teaser-caption span:before, ul.b-link-list li a:before, .gui-link-with-arrow span:before, .gui-link-with-article span:before, .gui-btn-round-blue.icon-right:before, .gui-back-link span:before, .gui-tab-nav-dark .m39-flyout-dropdown ul li:before, .royalSlider .rsArrowRight .rsArrowIcn:after, .gui .rsArrowRight .rsArrowIcn:after, .royalSlider .rsArrowLeft .rsArrowIcn:after, .gui .rsArrowLeft .rsArrowIcn:after, .gui-tab-nav-dark .m39-flyout-dropdown:hover .m-39-flyout-label:after, .gui-tab-nav-dark .m39-flyout-dropdown .m-39-flyout-label:after, .gui-btn-round-blue.configure:before, .gui-btn-with-arrow-left span:before, .b-form-wrapper .previousButton > .textButton span:before, .gui-btn-with-arrow span:before, .b-form-wrapper .nextButton > .textButton span:before, .gui-btn-with-arrow-left-to-right span:before, .gui-double-headline-with-arrow .claim-part-1:before, .gui-select2-container .select2-arrow b:before, .gui-scroll-indicator span:after, .gui-link-with-download span:before, .gui-btn-with-icon.phone span:before, .gui-link-with-phone span:before, .gui-btn-with-icon.globe span:before, .gui-link-with-globe span:before, .gui-btn-round-blue.getinfo:before, .b-form-wrapper .helpInfo:before, .gui-btn-round-blue.compare:before, .gui-btn-round-blue.finance:before, .gui-btn-round-blue.highlights:before, .b-form-wrapper .checkbox label.isChecked:before, .gui-btn-print:before, .b-form-wrapper .printButton > .textButton:before, .gui-btn-round-blue.testdrive:before, .gui-btn-round-blue.newsletter:before, .gui-btn-round-blue.ownerservice:before, .gui-icon.icon-timer > span:before, .gui-icon.icon-gps > span:before, .gui-icon.icon-microphone > span:before, .gui-icon.icon-play2 > span:before, .gui-link-with-video-play span:before, .gui-btn-round-blue.contact:before, .b-form-wrapper .radio label.isChecked:before, .gui-btn-round-blue.filter:before, .gui-btn-round-blue.car:before, .corporate-sales:before, .gui-btn-round-blue.shop:before, .b-dealer-search-form .b-dealer-search-submit, .gui-search-submit {
    font-family: 'pag-iconfont';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
}

.no-touch .gui-btn.gui-link-with-arrow:hover, .no-touch .gui-btn.gui-link-with-article:hover, .no-touch .gui-btn.gui-link-with-download:hover, .no-touch .gui-btn.gui-link-with-phone:hover, .no-touch .gui-btn.gui-link-with-globe:hover, .no-touch .gui-btn.gui-link-with-pin:hover {
    color: #fff;
}

.no-touch .m-061__overlay-button-replay:hover, .no-touch .gui-link-with-arrow:hover, .no-touch .gui-link-with-download:hover, .no-touch .gui-link-with-globe:hover, .no-touch .gui-link-with-pin:hover, .no-touch .gui-link-with-phone:hover, .no-touch .gui-link-with-article:hover, .no-touch .gui-link-with-video-play:hover, .no-touch .gui-back-link:hover {
    color: #d5001c;
}

.no-touch .gui-btn:hover, .no-touch .gui-btn.gui-btn-blue:hover {
    background-color: #d5001c;
}

html[dir="ltr"] .m-107-info__link {
    margin-right: 10px;
}

.gui-btn.gui-link-with-arrow, .gui-btn.gui-link-with-article, .gui-btn.gui-link-with-download, .gui-btn.gui-link-with-phone, .gui-btn.gui-link-with-globe, .gui-btn.gui-link-with-pin {
    color: #fff;
}

.m-061__overlay-button-replay:active, .gui-link-with-arrow:active, .gui-link-with-download:active, .gui-link-with-globe:active, .gui-link-with-pin:active, .gui-link-with-phone:active, .gui-link-with-article:active, .gui-link-with-video-play:active, .gui-back-link:active, .gui-link:active, .gui-link-underline:active, .gui-btn-round-blue:active, .m-061__overlay-button-replay:focus, .gui-link-with-arrow:focus, .gui-link-with-download:focus, .gui-link-with-globe:focus, .gui-link-with-pin:focus, .gui-link-with-phone:focus, .gui-link-with-article:focus, .gui-link-with-video-play:focus, .gui-back-link:focus, .gui-link:focus, .gui-link-underline:focus, .gui-btn-round-blue:focus {
    outline: none;
}

.gui-btn:hover {
    cursor: pointer;
}

.gui-btn.gui-btn-white {
    background-color: #fff;
}

.gui-btn:active, .gui-btn:focus {
    outline: none;
}

a:active, a:hover {
    outline: 0;
}

.m-107-info__link {
    margin-top: 10px;
}

.m-061__overlay-button-replay, .gui-link-with-arrow, .gui-link-with-download, .gui-link-with-globe, .gui-link-with-pin, .gui-link-with-phone, .gui-link-with-article, .gui-link-with-video-play, .gui-back-link, .gui-link, .gui-link-underline, .gui-btn-round-blue {
    color: inherit;
    text-decoration: inherit;
    cursor: inherit;
    display: inline-block;
    cursor: pointer;
}

.gui-btn {
    color: inherit;
    text-decoration: inherit;
    cursor: inherit;
    cursor: pointer;
    display: inline-block;
    padding-top: 13px;
    padding-bottom: 13px;
    background-color: #313639;
    color: #fff;
    padding-left: 21px;
    padding-right: 21px;
}

.b-teaser-link .b-teaser-context .b-teaser-preview-wrapper:after, .gui-btn, .gui-tab-nav-dark .m39-flyout-dropdown:hover .m-39-flyout-label, .gui-tab-nav-dark .m39-flyout-dropdown .m-39-flyout-label, .gui-tab-nav-dark ul li a {
    transition: background-color .24s, color .24s;
}

.b-link-line-context a, .b-eco__container, .gui-btn-with-arrow.gui-btn-red span, .b-form-wrapper .nextButton > .gui-btn-red.textButton span, .gui-btn-with-arrow.gui-btn-white span, .b-form-wrapper .nextButton > .gui-btn-white.textButton span, .gui-btn-with-arrow.gui-btn-white.gui-link-with-arrow span:before, .b-form-wrapper .nextButton > .gui-btn-white.gui-link-with-arrow.textButton span:before, .gui-btn-with-arrow-left.gui-btn-red span, .b-form-wrapper .previousButton > .gui-btn-red.textButton span, .gui-btn-with-arrow-left.gui-btn-white span, .b-form-wrapper .previousButton > .gui-btn-white.textButton span, .gui-btn-with-arrow-left.gui-btn-white.gui-link-with-arrow span:before, .b-form-wrapper .previousButton > .gui-btn-white.gui-link-with-arrow.textButton span:before, .gui-btn-with-arrow-left-to-right.gui-btn-red span, .gui-btn-with-arrow-left-to-right.gui-btn-white span, .gui-btn-with-arrow-left-to-right.gui-btn-white.gui-link-with-arrow span:before, .gui-btn-print.gui-btn-red span, .b-form-wrapper .printButton > .gui-btn-red.textButton span, .gui-btn-print.gui-btn-white span, .b-form-wrapper .printButton > .gui-btn-white.textButton span, .gui-btn-print.gui-btn-white.gui-link-with-arrow span:before, .b-form-wrapper .printButton > .gui-btn-white.gui-link-with-arrow.textButton span:before, .gui-btn.gui-btn-red span, .gui-btn.gui-btn-white span, .gui-btn.gui-btn-white.gui-link-with-arrow span:before, .gui-btn-with-icon.gui-btn-red span, .gui-btn-with-icon.gui-btn-white span, .gui-btn-with-icon.gui-btn-white.gui-link-with-arrow span:before, .m-061__overlay-button-replay, .gui-link-with-arrow, .gui-link-with-download, .gui-link-with-globe, .gui-link-with-pin, .gui-link-with-phone, .gui-link-with-article, .gui-link-with-video-play, .gui-back-link, .gui-link, .gui-link-with-arrow--blue span:before, .no-touch .gui-link-with-download:hover span:before, .no-touch .gui-link-with-globe:hover span:before, .no-touch .gui-link-with-pin:hover span:before, .no-touch .gui-link-with-phone:hover span:before, .no-touch .gui-link-with-article:hover span:before, .no-touch .gui-link-with-video-play:hover span:before, .no-touch .gui-back-link:hover span:before, .gui-link-underline, .gui-double-headline-with-arrow .claim-part-1, .gui-double-headline-with-arrow .claim-part-2, .gui-btn-round-blue, .gui-link-list li a, .gui-tab-nav-light ul li a, .no-touch .royalSlider .rsArrowIcn:hover, .no-touch .gui .rsArrowIcn:hover, .gui-btn-outline span, body div:first-child#cookie-notice .b-standard-module a, body div:first-child#cookie-notice .b-standard-module a:hover, body div:first-child#cookie-notice .b-standard-module a.gui-btn-with-icon:hover:before {
    transition: color .24s;
}

.b-standard-module-wrapper > p, .b-standard-module-wrapper > .m-09-techspecs-disclaimer, .b-thumbnail-caption, .gui-btn-with-arrow, .b-form-wrapper .nextButton > .textButton, .gui-btn-with-arrow-left, .b-form-wrapper .previousButton > .textButton, .gui-btn-with-arrow-left-to-right, .gui-btn-print, .b-form-wrapper .printButton > .textButton, .gui-btn, .gui-btn-outline, .gui-btn-with-icon, .m-061__overlay-button-replay, .gui-link-with-arrow, .gui-link-with-download, .gui-link-with-globe, .gui-link-with-pin, .gui-link-with-phone, .gui-link-with-article, .gui-link-with-video-play, .gui-back-link, .gui-link, .gui-link-underline, .gui-btn-round-blue, h4, .gui-btn-round-plus, .gui-btn-round-close, .gui-select2-container .select2-choice, .gui-select2-dropDown, .gui-tab-nav-light ul li a, .gui-tab-nav-dark .m39-flyout-dropdown .m-39-flyout-label, .gui-nav-flyout .gui-nav-flyout-item .gui-nav-flyout-link {
    font-family: inherit;
}

.b-teaser-wrapper *, .b-teaser-link .b-teaser-context *, .b-more-about-context *, .b-title-wrapper .b-title-headline-text *, .b-standard-module-wrapper *, .b-form-wrapper #formcomponentform *, .b-form-wrapper #formcomponentform2 *, .b-form-wrapper .container.c-default *, .b-form-wrapper .checkboxlist *, .b-form-wrapper .radiolist *, .b-form-wrapper .layout-1 .container.c-default *, .b-grid-overlay-zforms *, .module-grid * {
    box-sizing: border-box;
}

a {
    color: inherit;
}

a, a > img, a > span {
    cursor: pointer;
}

.module-headline span:not(.module-subline) {
    display: inline-block;
}

.module-headline span {
    background-color: inherit;
    height: 100%;
    z-index: 1;
    padding-left: 1em;
    padding-right: 1em;
}

.module-container--e2e .module-headline {
    padding-left: 7.14286%;
    padding-right: 7.14286%;
}

@media only screen and (min-width: 1200px) {
    .module-headline {
        width: 99%;
        margin-left: 1%;
    }
}

.module-headline {
    float: left;
    width: 97%;
    margin-left: 3%;
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 0;
    background-color: inherit;
}

.b-module-lined-headline, .gui-double-headline .claim-part-1, .gui-double-headline-with-arrow .claim-part-1, .module-headline {
    font-family: inherit;
}

.no-touch .gui-btn.gui-link-with-arrow:hover, .no-touch .gui-btn.gui-link-with-article:hover, .no-touch .gui-btn.gui-link-with-download:hover, .no-touch .gui-btn.gui-link-with-phone:hover, .no-touch .gui-btn.gui-link-with-globe:hover, .no-touch .gui-btn.gui-link-with-pin:hover {
    color: #fff;
}

.no-touch .m-061__overlay-button-replay:hover, .no-touch .gui-link-with-arrow:hover, .no-touch .gui-link-with-download:hover, .no-touch .gui-link-with-globe:hover, .no-touch .gui-link-with-pin:hover, .no-touch .gui-link-with-phone:hover, .no-touch .gui-link-with-article:hover, .no-touch .gui-link-with-video-play:hover, .no-touch .gui-back-link:hover {
    color: #d5001c;
}

.no-touch .gui-btn:hover, .no-touch .gui-btn.gui-btn-blue:hover {
    background-color: #d5001c;
}

.gui-btn-transparent-with-outline {
    background: none;
    border: 1px solid #fff;
    cursor: pointer;
    display: inline-block;
    padding-bottom: 11px;
    padding-top: 11px;
    padding-left: 21px;
    padding-right: 21px;
    text-decoration: inherit;
    transition: background-color .24s, color .24s, border-color .24s;
}

.no-touch .gui-btn-transparent-with-outline:hover {
    border-color: #d5001c;
    background-color: transparent;
    color: #d5001c;
}

.no-touch .gui-btn-transparent-with-outline.gui-link-with-arrow:hover {
    color: #d5001c;
}

.module-container--e2e .module-headline {
    padding-left: 7.14286%;
    padding-right: 7.14286%;
}

@media only screen and (min-width: 1200px) {
    .module-headline {
        width: 99%;
        margin-left: 1%;
    }
}

.module-headline {
    float: left;
    width: 97%;
    margin-left: 2%;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 0;
    background-color: inherit;
}

h2:before {
    border: 0 !important;
}

h2 {
    border: 0 !important;
}

.m-107-info__link {
    margin-right: 10px;
}

.gui-btn-round-blue.registration:before, .gui-btn-sm-xing:before, .gui-btn-round-blue.info:before, .gui-btn-round-blue.rss:before, .gui-btn-round-blue.search:before, .gui-btn-sm-twitter:before, .gui-btn-sm-pinterest:before, .gui-btn-sm-google:before, .gui-btn-sm-facebook:before, .gui-btn-round-plus:before, .gui-btn-sm-weibo:before, .gui-btn-sm-qq:before, .gui-btn-sm-renren:before, .gui-btn-sm-youtube:before, .gui-btn-sm-youku:before, .gui-btn-sm-instagram:before, .gui-btn-sm-linkedin:before, .gui-btn-sm-yahoo:before, .gui-btn-sm-yahoo-us:before, .gui-btn-sm-digg:before, .gui-btn-sm-baidu:before, .gui-btn-sm-kaixin:before, .gui-btn-sm-sohu:before, .gui-btn-sm-hatena-bookmark:before, .gui-btn-sm-qq-share:before, .gui-btn-sm-skyrock:before, .gui-btn-sm-tecent:before, .gui-btn-sm-vk:before, .gui-btn-sm-wechat:before, .gui-btn-sm-foursquare:before, .gui-btn-sm-whatsapp:before, .gui-btn-with-icon.download span:before, .gui-btn-round-blue.download:before, .gui-btn-close:before, .gui-btn-round-close:before, .gui-btn-with-icon.pin span:before, .gui-link-with-pin span:before, .gui-btn-with-icon.icon-sound:before, .zoomImage > div:before, .b-zoom-icon:before, .gui-btn-with-icon.icon-share:before, .gui-btn-with-icon.icon-sound-mute:before, .b-teaser-link .b-teaser-context .b-teaser-caption-wrapper .b-teaser-caption span:before, ul.b-link-list li a:before, .gui-link-with-arrow span:before, .gui-link-with-article span:before, .gui-btn-round-blue.icon-right:before, .gui-back-link span:before, .gui-tab-nav-dark .m39-flyout-dropdown ul li:before, .royalSlider .rsArrowRight .rsArrowIcn:after, .gui .rsArrowRight .rsArrowIcn:after, .royalSlider .rsArrowLeft .rsArrowIcn:after, .gui .rsArrowLeft .rsArrowIcn:after, .gui-tab-nav-dark .m39-flyout-dropdown:hover .m-39-flyout-label:after, .gui-tab-nav-dark .m39-flyout-dropdown .m-39-flyout-label:after, .gui-btn-round-blue.configure:before, .gui-btn-with-arrow-left span:before, .b-form-wrapper .previousButton > .textButton span:before, .gui-btn-with-arrow span:before, .b-form-wrapper .nextButton > .textButton span:before, .gui-btn-with-arrow-left-to-right span:before, .gui-double-headline-with-arrow .claim-part-1:before, .gui-select2-container .select2-arrow b:before, .gui-scroll-indicator span:after, .gui-link-with-download span:before, .gui-btn-with-icon.phone span:before, .gui-link-with-phone span:before, .gui-btn-with-icon.globe span:before, .gui-link-with-globe span:before, .gui-btn-round-blue.getinfo:before, .b-form-wrapper .helpInfo:before, .gui-btn-round-blue.compare:before, .gui-btn-round-blue.finance:before, .gui-btn-round-blue.highlights:before, .b-form-wrapper .checkbox label.isChecked:before, .gui-btn-print:before, .b-form-wrapper .printButton > .textButton:before, .gui-btn-round-blue.testdrive:before, .gui-btn-round-blue.newsletter:before, .gui-btn-round-blue.ownerservice:before, .gui-icon.icon-timer > span:before, .gui-icon.icon-gps > span:before, .gui-icon.icon-microphone > span:before, .gui-icon.icon-play2 > span:before, .gui-link-with-video-play span:before, .gui-btn-round-blue.contact:before, .b-form-wrapper .radio label.isChecked:before, .gui-btn-round-blue.filter:before, .gui-btn-round-blue.car:before, .corporate-sales:before, .gui-btn-round-blue.shop:before, .b-dealer-search-form .b-dealer-search-submit, .gui-search-submit {
    font-family: 'pag-iconfont';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
}

.gui-btn.gui-link-with-arrow span:before, .gui-btn.gui-link-with-article span:before, .gui-btn.gui-link-with-download span:before, .gui-btn.gui-link-with-phone span:before, .gui-btn.gui-link-with-globe span:before, .gui-btn.gui-link-with-pin span:before {
    color: #fff;
}

.m-061__overlay-button-replay span:before, .gui-link-with-arrow span:before, .gui-link-with-download span:before, .gui-link-with-globe span:before, .gui-link-with-pin span:before, .gui-link-with-phone span:before, .gui-link-with-article span:before, .gui-link-with-video-play span:before, .gui-back-link span:before {
    margin-right: .5em;
    color: #d5001c;
    font-size: 1em;
    position: absolute;
    margin-left: -26px;
    line-height: inherit;
    margin-top: -1px;
}

.gui-btn-round-blue.registration:before, .gui-btn-sm-xing:before, .gui-btn-round-blue.info:before, .gui-btn-round-blue.rss:before, .gui-btn-round-blue.search:before, .gui-btn-sm-twitter:before, .gui-btn-sm-pinterest:before, .gui-btn-sm-google:before, .gui-btn-sm-facebook:before, .gui-btn-round-plus:before, .gui-btn-sm-weibo:before, .gui-btn-sm-qq:before, .gui-btn-sm-renren:before, .gui-btn-sm-youtube:before, .gui-btn-sm-youku:before, .gui-btn-sm-instagram:before, .gui-btn-sm-linkedin:before, .gui-btn-sm-yahoo:before, .gui-btn-sm-yahoo-us:before, .gui-btn-sm-digg:before, .gui-btn-sm-baidu:before, .gui-btn-sm-kaixin:before, .gui-btn-sm-sohu:before, .gui-btn-sm-hatena-bookmark:before, .gui-btn-sm-qq-share:before, .gui-btn-sm-skyrock:before, .gui-btn-sm-tecent:before, .gui-btn-sm-vk:before, .gui-btn-sm-wechat:before, .gui-btn-sm-foursquare:before, .gui-btn-sm-whatsapp:before, .gui-btn-with-icon.download span:before, .gui-btn-round-blue.download:before, .gui-btn-close:before, .gui-btn-round-close:before, .gui-btn-with-icon.pin span:before, .gui-link-with-pin span:before, .gui-btn-with-icon.icon-sound:before, .zoomImage > div:before, .b-zoom-icon:before, .gui-btn-with-icon.icon-share:before, .gui-btn-with-icon.icon-sound-mute:before, .b-teaser-link .b-teaser-context .b-teaser-caption-wrapper .b-teaser-caption span:before, ul.b-link-list li a:before, .gui-link-with-arrow span:before, .gui-link-with-article span:before, .gui-btn-round-blue.icon-right:before, .gui-back-link span:before, .gui-tab-nav-dark .m39-flyout-dropdown ul li:before, .royalSlider .rsArrowRight .rsArrowIcn:after, .gui .rsArrowRight .rsArrowIcn:after, .royalSlider .rsArrowLeft .rsArrowIcn:after, .gui .rsArrowLeft .rsArrowIcn:after, .gui-tab-nav-dark .m39-flyout-dropdown:hover .m-39-flyout-label:after, .gui-tab-nav-dark .m39-flyout-dropdown .m-39-flyout-label:after, .gui-btn-round-blue.configure:before, .gui-btn-with-arrow-left span:before, .b-form-wrapper .previousButton > .textButton span:before, .gui-btn-with-arrow span:before, .b-form-wrapper .nextButton > .textButton span:before, .gui-btn-with-arrow-left-to-right span:before, .gui-double-headline-with-arrow .claim-part-1:before, .gui-select2-container .select2-arrow b:before, .gui-scroll-indicator span:after, .gui-link-with-download span:before, .gui-btn-with-icon.phone span:before, .gui-link-with-phone span:before, .gui-btn-with-icon.globe span:before, .gui-link-with-globe span:before, .gui-btn-round-blue.getinfo:before, .b-form-wrapper .helpInfo:before, .gui-btn-round-blue.compare:before, .gui-btn-round-blue.finance:before, .gui-btn-round-blue.highlights:before, .b-form-wrapper .checkbox label.isChecked:before, .gui-btn-print:before, .b-form-wrapper .printButton > .textButton:before, .gui-btn-round-blue.testdrive:before, .gui-btn-round-blue.newsletter:before, .gui-btn-round-blue.ownerservice:before, .gui-icon.icon-timer > span:before, .gui-icon.icon-gps > span:before, .gui-icon.icon-microphone > span:before, .gui-icon.icon-play2 > span:before, .gui-link-with-video-play span:before, .gui-btn-round-blue.contact:before, .b-form-wrapper .radio label.isChecked:before, .gui-btn-round-blue.filter:before, .gui-btn-round-blue.car:before, .corporate-sales:before, .gui-btn-round-blue.shop:before, .b-dealer-search-form .b-dealer-search-submit, .gui-search-submit {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased;
    speak: none;
    text-transform: none;
    line-height: 1;
}

.gui-btn-round-blue.registration:before, .gui-btn-sm-xing:before, .gui-btn-round-blue.info:before, .gui-btn-round-blue.rss:before, .gui-btn-round-blue.search:before, .gui-btn-sm-twitter:before, .gui-btn-sm-pinterest:before, .gui-btn-sm-google:before, .gui-btn-sm-facebook:before, .gui-btn-round-plus:before, .gui-btn-sm-weibo:before, .gui-btn-sm-qq:before, .gui-btn-sm-renren:before, .gui-btn-sm-youtube:before, .gui-btn-sm-youku:before, .gui-btn-sm-instagram:before, .gui-btn-sm-linkedin:before, .gui-btn-sm-yahoo:before, .gui-btn-sm-yahoo-us:before, .gui-btn-sm-digg:before, .gui-btn-sm-baidu:before, .gui-btn-sm-kaixin:before, .gui-btn-sm-sohu:before, .gui-btn-sm-hatena-bookmark:before, .gui-btn-sm-qq-share:before, .gui-btn-sm-skyrock:before, .gui-btn-sm-tecent:before, .gui-btn-sm-vk:before, .gui-btn-sm-wechat:before, .gui-btn-sm-foursquare:before, .gui-btn-sm-whatsapp:before, .gui-btn-with-icon.download span:before, .gui-btn-round-blue.download:before, .gui-btn-close:before, .gui-btn-round-close:before, .gui-btn-with-icon.pin span:before, .gui-link-with-pin span:before, .gui-btn-with-icon.icon-sound:before, .zoomImage > div:before, .b-zoom-icon:before, .gui-btn-with-icon.icon-share:before, .gui-btn-with-icon.icon-sound-mute:before, .b-teaser-link .b-teaser-context .b-teaser-caption-wrapper .b-teaser-caption span:before, ul.b-link-list li a:before, .gui-link-with-arrow span:before, .gui-link-with-article span:before, .gui-btn-round-blue.icon-right:before, .gui-back-link span:before, .gui-tab-nav-dark .m39-flyout-dropdown ul li:before, .royalSlider .rsArrowRight .rsArrowIcn:after, .gui .rsArrowRight .rsArrowIcn:after, .royalSlider .rsArrowLeft .rsArrowIcn:after, .gui .rsArrowLeft .rsArrowIcn:after, .gui-tab-nav-dark .m39-flyout-dropdown:hover .m-39-flyout-label:after, .gui-tab-nav-dark .m39-flyout-dropdown .m-39-flyout-label:after, .gui-btn-round-blue.configure:before, .gui-btn-with-arrow-left span:before, .b-form-wrapper .previousButton > .textButton span:before, .gui-btn-with-arrow span:before, .b-form-wrapper .nextButton > .textButton span:before, .gui-btn-with-arrow-left-to-right span:before, .gui-double-headline-with-arrow .claim-part-1:before, .gui-select2-container .select2-arrow b:before, .gui-scroll-indicator span:after, .gui-link-with-download span:before, .gui-btn-with-icon.phone span:before, .gui-link-with-phone span:before, .gui-btn-with-icon.globe span:before, .gui-link-with-globe span:before, .gui-btn-round-blue.getinfo:before, .b-form-wrapper .helpInfo:before, .gui-btn-round-blue.compare:before, .gui-btn-round-blue.finance:before, .gui-btn-round-blue.highlights:before, .b-form-wrapper .checkbox label.isChecked:before, .gui-btn-print:before, .b-form-wrapper .printButton > .textButton:before, .gui-btn-round-blue.testdrive:before, .gui-btn-round-blue.newsletter:before, .gui-btn-round-blue.ownerservice:before, .gui-icon.icon-timer > span:before, .gui-icon.icon-gps > span:before, .gui-icon.icon-microphone > span:before, .gui-icon.icon-play2 > span:before, .gui-link-with-video-play span:before, .gui-btn-round-blue.contact:before, .b-form-wrapper .radio label.isChecked:before, .gui-btn-round-blue.filter:before, .gui-btn-round-blue.car:before, .corporate-sales:before, .gui-btn-round-blue.shop:before, .b-dealer-search-form .b-dealer-search-submit, .gui-search-submit {
    font-family: 'pag-iconfont';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
}

html[dir="ltr"] .m-107--hide-on-desktop .m-107-info__headline:before, .m-107--hide-on-desktop html[dir="ltr"] .m-107-info__headline:before {
    content: "î€¤";
}

.no-touch .gui-btn.gui-link-with-arrow:hover span:before, .no-touch .gui-btn.gui-link-with-article:hover span:before, .no-touch .gui-btn.gui-link-with-download:hover span:before, .no-touch .gui-btn.gui-link-with-phone:hover span:before, .no-touch .gui-btn.gui-link-with-globe:hover span:before, .no-touch .gui-btn.gui-link-with-pin:hover span:before {
    color: #fff;
}

.gui-btn.gui-btn-white.gui-link-with-arrow span:before {
    color: #000;
}

.b-link-line-context a, .b-eco__container, .gui-btn-with-arrow.gui-btn-red span, .b-form-wrapper .nextButton > .gui-btn-red.textButton span, .gui-btn-with-arrow.gui-btn-white span, .b-form-wrapper .nextButton > .gui-btn-white.textButton span, .gui-btn-with-arrow.gui-btn-white.gui-link-with-arrow span:before, .b-form-wrapper .nextButton > .gui-btn-white.gui-link-with-arrow.textButton span:before, .gui-btn-with-arrow-left.gui-btn-red span, .b-form-wrapper .previousButton > .gui-btn-red.textButton span, .gui-btn-with-arrow-left.gui-btn-white span, .b-form-wrapper .previousButton > .gui-btn-white.textButton span, .gui-btn-with-arrow-left.gui-btn-white.gui-link-with-arrow span:before, .b-form-wrapper .previousButton > .gui-btn-white.gui-link-with-arrow.textButton span:before, .gui-btn-with-arrow-left-to-right.gui-btn-red span, .gui-btn-with-arrow-left-to-right.gui-btn-white span, .gui-btn-with-arrow-left-to-right.gui-btn-white.gui-link-with-arrow span:before, .gui-btn-print.gui-btn-red span, .b-form-wrapper .printButton > .gui-btn-red.textButton span, .gui-btn-print.gui-btn-white span, .b-form-wrapper .printButton > .gui-btn-white.textButton span, .gui-btn-print.gui-btn-white.gui-link-with-arrow span:before, .b-form-wrapper .printButton > .gui-btn-white.gui-link-with-arrow.textButton span:before, .gui-btn.gui-btn-red span, .gui-btn.gui-btn-white span, .gui-btn.gui-btn-white.gui-link-with-arrow span:before, .gui-btn-with-icon.gui-btn-red span, .gui-btn-with-icon.gui-btn-white span, .gui-btn-with-icon.gui-btn-white.gui-link-with-arrow span:before, .m-061__overlay-button-replay, .gui-link-with-arrow, .gui-link-with-download, .gui-link-with-globe, .gui-link-with-pin, .gui-link-with-phone, .gui-link-with-article, .gui-link-with-video-play, .gui-back-link, .gui-link, .gui-link-with-arrow--blue span:before, .no-touch .gui-link-with-download:hover span:before, .no-touch .gui-link-with-globe:hover span:before, .no-touch .gui-link-with-pin:hover span:before, .no-touch .gui-link-with-phone:hover span:before, .no-touch .gui-link-with-article:hover span:before, .no-touch .gui-link-with-video-play:hover span:before, .no-touch .gui-back-link:hover span:before, .gui-link-underline, .gui-double-headline-with-arrow .claim-part-1, .gui-double-headline-with-arrow .claim-part-2, .gui-btn-round-blue, .gui-link-list li a, .gui-tab-nav-light ul li a, .no-touch .royalSlider .rsArrowIcn:hover, .no-touch .gui .rsArrowIcn:hover, .gui-btn-outline span, body div:first-child#cookie-notice .b-standard-module a, body div:first-child#cookie-notice .b-standard-module a:hover, body div:first-child#cookie-notice .b-standard-module a.gui-btn-with-icon:hover:before {
    transition: color .24s;
}

.gui-link-with-arrow span::before {
    content: "";
}

.m-061__overlay-button-replay span:before, .gui-link-with-arrow span:before, .gui-link-with-download span:before, .gui-link-with-globe span:before, .gui-link-with-pin span:before, .gui-link-with-phone span:before, .gui-link-with-article span:before, .gui-link-with-video-play span:before, .gui-back-link span:before {
    margin-right: .5em;
    color: #d5001c;
    font-size: 1em;
    position: absolute;
    margin-left: -26px;
    line-height: inherit;
    margin-top: -1px;
}

.no-touch .gui-btn-transparent-with-outline.gui-link-with-arrow:hover span:before {
    color: #d5001c;
}

#main-content {
    padding-top: 5px;
}

.m-107-tile img {
    width: 100%;
}

@media only screen and (max-width: 700px) {
    .m-107-tile__gradient {
        display: none;
    }
}