<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.media-center-category-menu {
    position: relative;
    display: flex;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.media-center-category-menu__btn {
    width: 100%;
    height: 40px;
    text-align: left;
    padding: 0 30px 0 10px;
    border: 1px solid rgba(0,0,0,0.05);
    background: #FFF;
    transition: border-color .2s;
    cursor: pointer;
}
.media-center-category-menu__btn:after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -2px;
    border-top: 6px solid #f96915;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.media-center-category-menu__list {
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #fff;
}
.media-center-category-menu__list--1 {
    position: static;
}
.media-center-category-menu__list-btn {
    position: relative;
    display: block;
    width: 100%;
    padding: 14px 20px 15px 45px;
    text-align: left;
    border: 0;
    border-top: 1px solid #cbc9c8;
    background: #fff;
    color: #f96915;
    /* fix multiline text issues, otherwise exceeds width */
    overflow: hidden;
    cursor: pointer;
}
.no-touchevents .media-center-category-menu__list-btn:hover {
    font-weight: bold;
}
.media-center-category-menu__list-item:first-child &gt; .media-center-category-menu__list-btn,
.media-center-category-menu__list-item--go-back + .media-center-category-menu__list-item &gt; .media-center-category-menu__list-btn {
    border-top: 0;
}
.media-center-category-menu__list-item--active &gt; .media-center-category-menu__list-btn {
    font-weight: bold;
}
.media-center-category-menu__list-item--has-sub .media-center-category-menu__list-btn {
    padding-right: 55px;
}
.media-center-category-menu__list-item--go-back .media-center-category-menu__list-btn {
    padding-left: 45px;
    background-color: #f3f4f5;
    color: #808b8f;
}
.media-center-category-menu__list-btn-icon {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 14px;
    height: 14px;
    margin: auto;
    transform: rotate(-90deg);
}
.media-center-category-menu__list-btn-inner--align-left .media-center-category-menu__list-btn-icon {
    transform: rotate(90deg);
}
.media-center-category-menu__list-btn-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    padding: 0;
    border: 0;
    border-left: 1px solid #cbc9c8;
    background: transparent;
}
.media-center-category-menu__list-btn-inner--align-left {
    left: 0;
    right: auto;
}

@media ( min-width: 576px ) {
    .media-center-category-menu {
        width: auto;
        flex: 1 0 0%;
    }
}

@media ( max-width: 991px ) {
    .media-center-category-menu__dropdown {
        position: fixed;
        left: 0;
        /* equals header height */
        top: 60px;
        bottom: 0;
        width: 100%;
        /* viewport height - position top/header height */
        height: calc(100vh - 60px);
        font-size: 16px;
        overflow: hidden;
        opacity: 0;
        transition: opacity .3s;
        pointer-events: none;
        /* must be at least 2001 (due to z-index for .mi-big-play and .content-splash-teaser) */
        z-index: 2001;
    }
    .media-center-category-menu__dropdown--on-top {
        top: 0;
        height: 100vh;
    }
    .media-center-category-menu--visible .media-center-category-menu__dropdown {
        opacity: 1;
        pointer-events: auto;
    }
    .media-center-category-menu__dropdown-inner {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        background-color: #fff;
    }
    .media-center-category-menu__dropdown-inner-head {
        display: flex;
        justify-content: flex-end;
        height: 45px;
        border-bottom: 1px solid #cbc9c8;
    }
    .media-center-category-menu__dropdown-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 45px;
        padding: 0 15px;
        color: #f96915;
    }
    .media-center-category-menu__dropdown-close-btn .svg-icon {
        width: 15px;
        height: 15px;
        pointer-events: none;
    }
    .media-center-category-menu__dropdown-slider {
        position: absolute;
        left: 0;
        top: 45px;
        width: 100%;
        height: 100%;
        transition: left .4s;
        transition-timing-function: cubic-bezier(0.455, 0.030, 0.515, 0.955); /* easeInOutQuad */
    }
}

@media ( min-width: 992px ) {
    .media-center-category-menu__dropdown {
        position: absolute;
        left: 0;
        top: 100%;
        font-size: 16px;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity .3s, transform .3s;
        pointer-events: none;
        /* must be at least 2001 (due to z-index for .mi-big-play and .content-splash-teaser) */
        z-index: 2001;
    }
    .media-center-category-menu--visible .media-center-category-menu__dropdown {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
    .media-center-category-menu__btn {
        height: 50px;
        padding: 0 35px 0 15px;
    }
    .media-center-category-menu__btn:after {
        right: 15px;
    }
    .media-center-category-menu--visible .media-center-category-menu__btn {
        border-color: #f96915;
    }
    .media-center-category-menu__list {
        box-shadow: 0 1px 4px 1px rgba(0, 0, 0, .2);
    }
    .media-center-category-menu__list--1 {
        position: relative;
        left: 0;
        width: 300px;
    }
    .media-center-category-menu__list--2,
    .media-center-category-menu__list--3 {
        left: 100%;
    }
    .media-center-category-menu__list-item {
        position: relative;
    }
    .media-center-category-menu__list-item--go-back {
        display: none;
    }
    .media-center-category-menu__list-btn {
        position: relative;
        padding: 12px 30px;
        border-width: 1px;
        background-color: transparent;
    }
    .media-center-category-menu__list-item--has-sub .media-center-category-menu__list-btn {
        padding-right: 60px;
    }
    /* Helper to avoid jibber-jabber on hover (due to bold font-weight) */
    .media-center-category-menu__list-item &gt; .media-center-category-menu__list-btn:after {
        content: attr(data-name);
        position: absolute;
        left: 30px;
        top: 12px;
        right: 30px;
    }
    .media-center-category-menu__list-item--has-sub .media-center-category-menu__list-btn:after {
        right: 60px;
    }
    .media-center-category-menu__list-btn-text {
        display: inline-block;
        font-weight: bold;
        visibility: hidden;
    }
    .media-center-category-menu__list-btn-inner {
        width: 55px;
        border-left: 0;
    }
    .media-center-category-menu__list-btn-icon {
        right: 15px;
    }
}
</pre></body></html>