.content-divider {
    /* due to IE11 adjustment - see #60066 */
    margin: 2.6rem 0;
    font-size: 1rem;
    color: #f2f2f2;
}
.content-divider--type-2 {
    position: relative;
    display: flex;
    height: auto;
    align-items: center;
    color: #302e2c;
}
.content-divider--type-2-color-2 {
    color: #fff;
}
.content-divider--type-2-color-3 {
    color: #263F6A;
    margin: 2rem 0;
}
.content-divider__hr {
    margin: 0;
    background-color: currentColor;
    color: inherit; /* required for FF */
}
.content-divider--type-3 .content-divider__hr {
    background-color: #CBC9C8;
}
.content-divider--type-4 {
    position: relative;
    margin: 0 -15px;
    font-size: 1.2rem;
    color: #302e2c;
    /* avoid text overflow */
    overflow: hidden;
}
.content-divider--type-4-color-2 {
    color: #fff;
}
.content-divider--type-4 .content-divider__hr {
    width: 0;
    height: 0;
}
.content-divider__bg-media-wrap {
    position: relative;
    /* width required for IE 11 to work with max-width */
    width: 100%;
    max-width: 1920px;
    margin: auto;
    overflow: hidden;
}
.content-divider__bg-media-wrap:not(.content-divider__bg-media-wrap--no-shadow):after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(70deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .2) 100%);
    pointer-events: none;
}
.content-divider__bg-media-wrap--shadow-right:after {
    background: linear-gradient(290deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .2) 100%);
}
.content-divider__bg-img,
.content-divider__bg-video {
    width: 100%;
}
.content-divider__bg-video {
    position: relative;
    display: block;
    pointer-events: none;
}
.content-divider--bg-video-hidden .content-divider__bg-video {
    visibility: hidden;
}
.content-divider__text-container {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}
.content-divider__text {
    flex: 0 1 auto;
    margin: 0;
    /* paddings disabled during facelift */
    /* padding: 0 10px; */
    /* paddings due to IE11 - see #60066 */
    /*padding-top: 3px;
    padding-bottom: 3px;*/
    color: currentColor;
    overflow-wrap: break-word;
    word-wrap: break-word;
    overflow: hidden;
}
.page--dealer-websites .content-divider__text {
    font-size: 1.8em;
}
.content-divider--type-2 .content-divider__text {
    flex-grow: 1;
    text-align: center;
}
.content-divider--type-4 .content-divider__text {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    font-size: 1.8em;
    text-align: left;
}
.content-divider__subtext {
    position: relative;
    display: flex;
    align-items: baseline;
    margin: .2em 0 0;
    color: currentColor;
    overflow-wrap: break-word;
    word-wrap: break-word;
    overflow: hidden;
}
.content-divider__subtext:before {
    content: '';
    display: none;
    width: 10%;
    max-width: 75px;
    height: .3em;
    margin-right: 4%;
    background-color: currentColor;
}
/* Pseudo helpers are required for IE 11.
 As soon as we don't support it anymore => remove it and use CSS pseudo elements */
.content-divider__pseudo-helper {
    /* disabled during facelift */
    display: none;
    content: '';
    flex: 1 1 auto;
    min-width: 10px;
    height: 1px;
    background-color: currentColor;
}
.content-divider--type-2 .content-divider__hr {
    /* not sure about using display: none, might have impact on semantic reasoning by crawlers and seo services */
    width: 0;
    height: 0;
    border-top: 2px solid #f2f2f2;
}

@media ( min-width: 768px ) {
    .content-divider__bg-video-wrap + .content-divider__bg-img-wrap {
        /* due to missing 'OR'-operator in fluid we have to do this with CSS ... */
        display: none;
    }
    .content-divider__text-container {
        bottom: 15%;
    }
    .content-divider--type-4 .content-divider__text {
        font-size: 2.6em;
        padding-bottom: 7px;
    }
    .content-divider__subtext:before {
        display: block;
    }
}

@media ( min-width: 1200px ) {
    .content-divider--type-4 {
        font-size: 1.5rem;
    }
}

@media ( min-width: 1600px ) {
    .content-divider--type-4 .content-divider__text {
        font-size: 3em;
    }
}
