.content-splash-teaser {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color .3s;
    z-index: 2000;
    pointer-events: none;
}
.content-splash-teaser--visible {
    background-color: rgba(0, 0, 0, .2);
    pointer-events: auto;
}
.content-splash-teaser__modal {
    position: absolute;
    left: 0;
    top: 100%;
    right: 0;
    display: flex;
    flex-direction: column;
    min-width: 290px;
    /* width required for IE */
    width: 100%;
    max-width: calc(100% - 30px);
    max-height: 88%;
    margin: auto;
    background-color: #fff;
    opacity: 0;
    transition: top .3s, opacity .3s, transform .3s;
    transition-timing-function: ease;
}
.content-splash-teaser--enabled .content-splash-teaser__modal {
    top: calc(100% - 45px);
    opacity: 1;
    pointer-events: auto;
}
.is-main-nav-open .content-splash-teaser__modal {
    opacity: 0;
    pointer-events: none;
}
.content-splash-teaser--on-page-bottom:not(.content-splash-teaser--visible) .content-splash-teaser__modal {
    opacity: 0;
    pointer-events: none;
}
.no-touchevents .content-splash-teaser__modal:hover {
    top: calc(100% - 55px);
    transition-timing-function: cubic-bezier(0.500, 0.250, 0.130, 1.350);
}
/* over-qualification intended, overwrite :hover */
.content-splash-teaser--visible .content-splash-teaser__modal.content-splash-teaser__modal.content-splash-teaser__modal {
    top: 50%;
    transform: translateY(-50%);
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.315, 1.230), ease, ease; /* custom bezier */
}
.content-splash-teaser__header {
    position: relative;
    flex-shrink: 0;
    height: 45px;
    background-color: #999;
}
.content-splash-teaser__header-headline {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 14px;
    margin: 0;
    padding: 0 45px 0 15px;
    cursor: default;
    overflow: hidden;
}
.content-splash-teaser__header-btn {
    position: absolute;
    top: 0;
    right: 5px;
    bottom: 0;
    width: 35px;
    height: 35px;
    margin: auto 0;
    padding: 0;
    border: 0;
    color: #fff;
    background-color: #777;
    z-index: 1;
}
.content-splash-teaser__header-btn .svg-icon {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 14px;
    height: 14px;
    margin: auto;
}
.content-splash-teaser__content {
    flex: 1 1 auto;
    overflow: auto;
}
.content-splash-teaser__content-inner {
    padding: 15px;
}
.content-splash-teaser__footer {
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: flex-start;
    margin: 0 15px;
    padding: 5px 0 20px;
    font-size: .8em;
}
.content-splash-teaser__footer-btn-wrap {
    flex: 0 1 0;
    padding-top: 15px;
}
.content-splash-teaser__footer-btn {
    white-space: nowrap;
}
.content-splash-teaser__footer-text-wrap {
    display: flex;
    align-items: flex-end;
    padding-top: 15px;
    padding-right: 25px;
    flex: 1 0 auto;
}
.content-splash-teaser__footer-text {
    padding: 5px 0;
}
.no-touchevents .content-splash-teaser__footer-text:hover {
    cursor: default;
    text-decoration: underline;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media ( min-width: 768px ) {
    .content-splash-teaser__modal {
        min-width: 400px;
        max-width: 720px;
    }
    .content-splash-teaser--enabled .content-splash-teaser__modal {
        top: calc(100% - 60px);
    }
    .no-touchevents .content-splash-teaser__modal:hover {
        top: calc(100% - 70px);
    }
    .content-splash-teaser__header {
        height: 60px;
    }
    .content-splash-teaser__header-headline {
        font-size: 24px;
        padding: 0 55px 0 30px;
    }
    .content-splash-teaser__header-btn {
        right: 15px;
    }
    .content-splash-teaser__content-inner {
        padding: 30px;
    }
    .content-splash-teaser__footer {
        margin: 0 30px;
        padding-bottom: 30px;
    }
}