:root {

    --color-green: rgba(175,202,5,1);
    --color-dark-green: rgba(152,177,0,1);
    --color-dark-blue: rgba(0,76,134,1);
    --color-light-blue: rgba(72,177,224,1);
    --color-red: rgba(192,12,29,1);
    --color-pink: rgba(189,65,145,1);
    --color-link: rgba(0,76,134,1);


    --color-dark-grey: rgba(80,80,80,1);
    --color-mid-grey: rgb(135, 135, 135);
    --color-light-grey: rgb(190, 190, 190);
    --color-super-light-grey: rgb(240, 240, 240);

    --global-font-title: 'Roboto Slab';
    --global-font-wide: 'Roboto';
    --global-font-thin: 'Roboto Condensed';
}

html {
    scroll-padding-top: 220px;
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    font-family: var(--global-font-wide), sans-serif;
    color: var(--color-dark-grey);
    font-weight: 300;
    line-height: 135%;
    position: relative;
    background-color: #ffffff;

}
:focus {
    border: 2px dotted var(--color-link) !important;
}
video {
    width: 100%;
    margin-bottom: 1em;
}
a,
a h3 {
    color: var(--color-link);
}

a.skip {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    display: inline-block;
    padding: 3px 6px;
    margin-bottom: -31px;
}
a.skip:focus {
    display: inline-block;
    position: fixed;
    width: auto;
    height: auto;
    z-index: 99999;
    left: 14px;
    top: 15px;
}

strong, b {
    font-weight: 500;
}

.st0 {
    fill: var(--color-green);
}

.highlight {
    fill: var(--color-dark-blue);
}

.hover {
    fill: var(--color-pink);
}

html.contrast .hover {
    fill: var(--color-red);
}

h1, h2, h3, h4, h5 {
    color: var(--color-dark-blue);
}

h1, h2 {
    font-family: var(--global-font-title), sans-serif;
    font-weight: 500;
}

h3 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 0.4em;
    font-family: var(--global-font-thin), sans-serif;
}

h3.thin {
    font-weight: 300;
}

h3.big {
    font-size: 24px;
}

span.tender-expired {
    color: var(--color-red);
}

h4, h5 {
    font-weight: 400;
    font-size: 16px;
}

span.prehead {
    display: block;
    color: var(--color-dark-blue);
    margin-bottom: 0.4em;
    font-family: var(--global-font-thin), sans-serif;
}

div.headline span.prehead {
    margin-left: 65px;
    position: absolute;
    top: -20px;
}

h3.prehead{
    display: block;
    color: var(--color-dark-blue);
    margin-top: 0.3em;
    margin-bottom: 0.4em;
    font-family: var(--global-font-thin), sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 16px;
}

.centered {
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 24px;
    margin-bottom: 0.5em;
    line-height: 120%;
}
h2 {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 120%;
}

p {
    margin-bottom: 0.8em;
}
a#logo {
    display: inline-block;
    width: 160px;
    margin-left: -10px;
    margin-top: 10px;
    margin-bottom: 5px;
}

a#logo img {
    width: 100%;
}

.body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8em 0;
}

.body ul li {
    padding-left: 1.5em;
    text-indent: -.7em;
}

.body ul li::before {
    content: "> ";
    color: var(--color-green);
}

.body ol {
    list-style-type: none;
    margin-bottom: 0.8em;
}

.body ol li {
    counter-increment: count-me;
    padding-left: 25px;
}
.body ol li::before {
    content: counter(count-me) ". ";
    display: inline-block;
    position: relative;
    color: var(--color-green);
    font-weight: normal;
    text-indent: -25px;
    text-align: right;
    margin-left: -5px;
    margin-right:  5px;
}

.body img {
    display: block;
    width: 100%;
}

.body a {
    font-weight: 500;
}

main {
    margin-top: 106px;
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: nowrap;
}
.no-pointer {
    pointer-events: none;
}
nav.main,
nav.hover {
    display: none;
}

nav.top {
    display: none;
}

.content {
    position: relative;
    clear: both;
    width: 85%;
    max-width: 960px;
    margin: 0 auto;
}

.content .flex {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin-left: -30px;
}

.border-top {
    border-top: 6px solid var(--color-green);
    padding-top: 10px;
}

.border-bottom {
    border-bottom: 8px solid var(--color-green);
    padding-bottom: 10px;
}

.headline {
    position: relative;
    padding-top: 35px;
}

.headline:before {
    position: absolute;
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    top: -30px;
    left: -30px;
    z-index: -1;
    background-color: var(--color-green);
    transform: rotate(-10deg);
}

.headline h1 {

}

.headline p.subheadline {
    font-family: var(--global-font-thin), sans-serif;
    color: var(--color-dark-blue);
    font-weight: 600;
    font-size: 18px;
}

div.intro,
p.intro {
    margin-bottom: 35px;
    font-family: var(--global-font-wide), sans-serif;
    color: var(--color-dark-blue);
    font-weight: 400;
}

img.mediatop-logo {
    padding: 0 50px 30px 50px;
    margin-top: 10px;
}

.grid .item img.mediatop-logo {
    width: 60%;
}

.sub-navigation {
    display: none;
}
.map-wrap {
    padding-top: 30px;
    padding-bottom: 30px;
}
.map-wrap h2{
    font-size: 32px;
}
div.map {
    width: 100%;
    margin-top: -50px;
}

div.map svg {
    width: 100%;
    height: calc(100% * 2 / 3);
}

div.map svg rect:hover {
   background-color: var(--color-pink);
}

html.contrast div.map svg rect:hover {
   background-color: var(--color-red);
}

ul.mediatop-list {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 135%;
    font-weight: 500;
}

ul.mediatop-list a.hover,
ul.mediatop-list a:hover {
    color: var(--color-pink);
}

html.contrast ul.mediatop-list a.hover,
html.contrast ul.mediatop-list a:hover {
    color: var(--color-red);
}

/*******************************************/
/* Header-Bereich
/*******************************************/

.link-tree-header a#logo {
    margin: auto auto auto calc((100vw - 400px) / 2);
    width: 90%;
    max-width: 180px;
    display: block;
}
.link-tree-header {
    border-bottom: 5px solid var(--color-green);
    display: flex;
    flex-direction: row;
}
.link-tree-header .map {
    max-width: 140px;
    margin: 15px calc((100vw - 400px) / 2) 10px auto;
}
.link-tree-header .map img {
    width: 100%;
    display: block;
}
section.linktree {
    overflow: hidden;
    position: relative;
}
.linktree ul {
    margin-top: 1em;
    width: 100%;
    display: inline-block;
}
.linktree ul li {
   display: inline-block;
    font-size: 28px;
    margin: 0 8px;
}
.linktree ul li a img {
    width: 35px;
}
.linktree ul li a img.bluesky {
    width: 38px;
}
section.linktree {
    text-align: center;
    padding: 30px;
}

.bottom-style {
    position: absolute;
    left: 0;
    top:30%;
    width: auto;
    display: block;
    height: 70%;
    z-index: -1;
}

.link-tree-body footer {
    /*border-top: 30px solid var(--color-green);*/
    margin-top: 0;
}

section.linktree .content {
    max-width: 400px;
    min-height: 800px;
}

section.linktree a.button:last-child {
    margin-bottom: 100px;
}

section.linktree a.button {
    line-height: 24px;
    margin-bottom: 10px;
    font-size: 18px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: stretch;
    padding: 20px 30px;
    background-color: var(--color-dark-blue);
    border-radius: 10px;
}

section.linktree a i {
    font-size: 24px;
    margin-right: 10px;
    width: 30px;
}

section.linktree a span.handle {
    display: block;
    text-align: center;
    width: calc(100% - 30px);
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background-color: white;
    border-bottom: 10px solid var(--color-green);
}

.header .content {
    width: 85%;
    max-width: 960px;
    margin: 0 auto;
}

a.simple-lang-icon {
    display: none;
    position: absolute;
    right: 120px;
    bottom: 24px;
    width: 23px;
    height: 23px;
    filter: invert(16%) sepia(93%) saturate(2200%) hue-rotate(190deg) brightness(95%) contrast(101%);
}

a.contrast-icon {
    display: none;
    position: absolute;
    right: 82px;
    bottom: 23px;
    width: 23px;
    height: 23px;
    filter: invert(16%) sepia(93%) saturate(2200%) hue-rotate(190deg) brightness(95%) contrast(101%);
}

.header.collapsed a.contrast-icon,
.header.collapsed a.simple-lang-icon {
    display: inline-block;
}

a.search-icon {
    display: block;
    width: 30px;
    margin: auto 0 auto 0;
    height: 25px;
    position: absolute;
    right: 40px;
    bottom: 20px;
    cursor: pointer;
    font-size: 22px;
    color: var(--color-green);
}
a.search-icon:hover {
    color: var(--color-link);
}
.icon.bluesky {
    width: 19px;
    height: 19px;
    display: inline-block;
    vertical-align: -1px;
    filter: invert(16%) sepia(93%) saturate(2200%) hue-rotate(190deg) brightness(95%) contrast(101%);
}
/*******************************************/
/* Responsive-Navigation
/*******************************************/

a#offcanvas-menu {
    display: block;
    width: 30px;
    margin: auto 0 auto 0;
    height: 30px;
    position: absolute;
    right: 0;
    bottom: 20px;
    cursor: pointer;
}

a#offcanvas-menu span.bar {
    background-color: var(--color-green);
    display: block;
    float: left;
    height: 2.5px;
    border-radius: 1px;
    margin-left: 0;
    margin-top: 6px;
    width: 100%;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
a#offcanvas-menu:hover span.bar {
    background-color: #000000;
}
#offcanvas-menu.toggled span:first-child {
    transform: translateY(8px) rotate(45deg);
}

#offcanvas-menu.toggled span {
    transform-origin: center center 0;
}

#offcanvas-menu.toggled span:nth-child(2) {
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

#offcanvas-menu.toggled span:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

.sidr-open #sidr-body-overlay {
    display: block;
}
body.sidr-animating #sidr ,
body.sidr-open #sidr {
    display: block;
}

#sidr-body-overlay {
    background-color: rgba(0, 0, 0, 0.2);
    bottom: 0;
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999998;
}


.sidr {
    background: var(--color-dark-green) none repeat scroll 0 0;
    box-shadow: none;
    color: #FFF;
    display: none;
    font-family:var(--global-font-thin), sans-serif;
    font-size: 15px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    width: 250px;
    z-index: 999999;
}

.sidr ul {
    border: 0 none;
}

.sidr ul li {
    border: 0 none;
}

.sidr ul li a, .sidr ul li span {
    color: #FFFFFF;
    display: inline-block;
}
.sidr ul li.indent {
    padding-left: 30px;
}

.sidr ul li a span {
    padding: 0;
}

.sidr ul li:hover > a, .sidr ul li:hover > span, .sidr ul li.active > a, .sidr ul li.active > span, .sidr ul li.sidr-class-active > a, .sidr ul li.sidr-class-active > span {
    box-shadow: none;
}

.sidr ul.mobile-social-nav {
    display: flex;
    flex-direction: row;
    margin: 15px 0 20px 0;
}

.sidr ul.mobile-social-nav li {
    margin-right: 20px;
    font-size: 16px;
}

.sidr ul.mobile-social-nav li a i {
    font-size: 20px;
}

.sidr ul.mobile-social-nav li:first-of-type {
    margin-left: auto;
}
.sidr ul.mobile-social-nav li:last-of-type {
    margin-right: 0;
}
.sidr ul.mobile-social-nav .icon.bluesky {
    filter: none;
}

.sidr ul.mobile-main-nav {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin: 40px 0 20px -30px;
}

.sidr ul.mobile-main-nav li {
    line-height: 20px;
    display: inline-block;
    position: relative;
    width: calc(100% - 30px);
    margin: 0 0 30px 30px;
}

.sidr ul.mobile-main-nav li a {
    margin-bottom: 20px;
}

.sidr ul.mobile-main-nav li a span.title {
    font-family: var(--global-font-title), sans-serif;
    font-weight: 500;
    color: var(--color-link);
    font-size: 16px;
    margin-bottom: 3px;
    display: block;
}

.sidr ul.mobile-main-nav li a span.subtitle {
    font-weight: 400;
    color: white;
    font-size: 15px;
    font-family: var(--global-font-thin), sans-serif;
    display: block;
}

.sidr ul.mobile-section-nav {
    display: block;
    width: 100%;
}
.sidr ul.mobile-section-nav.mediatop {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-basis: auto;
}
.sidr ul.mobile-section-nav li {
    line-height: 20px;
    margin: 0;
    font-size: 15px;
    display: block;
    width: 100%;
}
.sidr ul.mobile-section-nav.mediatop > li {
    width: 50%;
    margin-bottom: 7px;
}

.sidr ul.mobile-section-nav li a {
    margin: 0 0 2px 0;
}

.sidr ul li:hover, .sidr ul li.active, .sidr ul li.sidr-class-active, .sidr ul li.selected {
    border-top: 0 none;
}
.sidr.fullwidth {
    width: 100%;
}

.sidr.left.fullwidth {
    left: -100%;
}

.sidr.right.fullwidth {
    right: -100%;
}
.sidr .close-menu {
    position: absolute;
    top: 55px;
    right: 2.5%;
    font-size: 40px;
}
.sidr .close-menu a {
    color: #FFFFFF;
}

.sidr ul.mobile-mediatope-nav li {
    line-height: 20px;
    margin: 0;
    font-size: 15px;
    display: block;
    width: 100%;
}
.sidr ul.mobile-section-nav li h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--color-dark-blue);
}

.sidr ul.mobile-section-nav li h3 a{
    color: var(--color-link);
}

#searchform {
    width: 70%;
    display: block;
    position: relative;
    margin: 0 0 0 0;
}
section.page.search #searchform {
    margin: 0 0 30px 0;
}
.sidr #searchform {
    width: 70%;
    display: block;
    position: relative;
    margin: 37px 0 0 0;
}
#searchform i {
    font-size: 20px;
    color: #FFFFFF;
}
.sidr #searchform i {
    color: #FFFFFF;
}

#searchform input[type='text'] {
    font-size: 18px;
    font-weight: 200;
    background-color: rgba(255,255,255,.1);
    width: calc(100% - 35px);
    height: 35px;
    margin: 0;
    padding: 5px 30px 5px 6px;
    border-radius: 0;
    color: var(--color-green);
    border: 1px solid var(--color-green);
}
.sidr #searchform input[type='text'] {
    color: #FFFFFF;
}
#searchform input[type='text']::placeholder {
    color: var(--color-green);
}
.sidr #searchform input[type='text']::placeholder {
    color: rgba(255,255,255,1);
}
#searchform input[type='text']:focus{
    outline: 0;
    background-color: rgba(255,255,255,.9);
    color: var(--color-dark-blue);
}
#searchform input[type='text']:focus::placeholder{
    color: var(--color-dark-blue);
}
#searchfield:focus + #search-submit {
    background-color: var(--color-dark-blue);
}
#act_searchform #search-submit,
#searchform #search-submit {
     position: relative;
     width: 35px;
     height: 35px;
     margin: 0;
     border: none;
     background-color: var(--color-green);
     cursor: pointer;
}

/*******************************************/
/* Grid
/*******************************************/

.grid {
    width: calc(100% + 30px);
    display: flex;
    flex-basis: auto;
    margin-left: -30px;
    flex-direction: column;
}

.grid.row {
    flex-direction: row;
}

.grid.column {
    flex-direction: column;
}

.grid.wrap {
    flex-wrap: wrap;
}

.grid .item {
    margin-left: 30px;
}

.grid .item {
    width: calc(100% - 30px);
    margin-left: 30px;
}
.grid .item figure {
    margin: 0 0 10px 0;
    text-align: right;
}
.grid .item figure span.caption,
.grid .item figure span.source {
    display: inline-block;
    font-size: 12px;
    color: var(--color-light-grey);
    line-height: 15px;
    margin-top: 5px;
}

.grid .item figure span.source:before {
    content: "Quelle: ";
}
.grid .item img {
    display: block;
    width: 100%;
}

.grid .item figure.tn-image {
    float: right;
    width: 100px;
    margin-left: 10px;
}

.grid .item figure.tn-image.publications img {
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 3px;
}

form.form.grid .item {
    margin-bottom: 10px;
}

.grid .item p {
    hyphens: auto;
    -webkit-hyphens: auto;
}

.swiper-container {
    width: 100%;
    max-height: fit-content;
}

.swiper-wrapper {
    width: 100%;
    margin: 0 auto 10px auto;
    height: calc(100% - 30px);
    align-content: stretch;
}

.swiper-container {
    overflow-x: hidden;
    overflow-y: hidden;
}

.swiper-slide {
    width: 100%;
    display: flex;
    flex-basis: auto;
    align-items: stretch;
    align-content: stretch;
    overflow: hidden;
    flex-direction: column;
    /*background-color: var(--color-green);*/
    height: auto;
}

.swiper-slide .overlay {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--color-green);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 4;
}

.swiper-slide .overlay .description_mobile {
    margin-bottom: auto;
}

.swiper-slide .source {
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 5px;
    color: white;
    border-bottom-left-radius: 15px;
}

.swiper-slide .source i {
    margin: 0 5px;
}

.swiper-slide .source p {
    display: none;
    padding: 5px 5px 0 5px;
    font-size: 12px;
    margin-bottom: 0;
}

.swiper-slide .overlay .overlay-content {
    padding: 15px;
    width: 100%;
    color: white !important;
    font-size: 16px;
    line-height: 125%;
}

.swiper-slide .overlay .overlay-content h3 {
    font-family: var(--global-font-title);
    color: white !important;
    font-size: 18px;
    font-weight: normal;
}

.swiper-slide .overlay .overlay-content p {
    margin-bottom: 0;
    font-family: var(--global-font-thin), sans-serif;
}

.swiper-slide .overlay .overlay-content p.description {
    display: none;
}

.swiper-slide.alternate .overlay .overlay-content a.button,
.swiper-slide .overlay .overlay-content a.button {
    margin-bottom: 0;
    background-color: #FFFFFF;
    color: var(--color-green);
}

#slider .swiper-slide {

}

.swiper-slide img {
    margin: 0 auto !important;
    display: block;
    width: 100%;
    z-index: 1;
    height: 400px;
    object-fit: cover;
    object-position: center center;
}
.swiper-slide.preview img {
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    width: 47px;
    height: 64px;
    top: 50%;
    color: var(--color-light-grey);
    background: none;
    font-size: 48px;
}

.swiper-button-next {
    right: 0;
    text-align: right;
}

.swiper-button-prev {
    left: 0;
}
/*
.swiper-button-prev {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Ebene_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 150 265' style='enable-background:new 0 0 150 265;' xml:space='preserve'%3E%3Cg%3E%3Cpolygon style='fill:%23FFFFFF;' points='124.9,13.3 144.8,33.1 44.8,133 144.8,233 124.9,252.8 5.2,133 '/%3E%3C/g%3E%3C/svg%3E ");
}
.swiper-button-next {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Ebene_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 150 265' style='enable-background:new 0 0 150 265;' xml:space='preserve'%3E%3Cg%3E%3Cpolygon style='fill:%23FFFFFF;' points='25.1,252.8 5.2,233 105.2,133 5.2,33.1 25.1,13.3 144.8,133 '/%3E%3C/g%3E%3C/svg%3E%0A");
}
 */

.swiper-pagination {
    position: relative;
}

#product-slider {
    overflow: hidden;
}

#product-slider .swiper-pagination,
#slider .swiper-pagination {
    bottom: 10px;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    opacity: 1;
    background: var(--color-green);
    border-radius: 0;
    margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
    background: var(--color-dark-blue);
}

/*******************************************/
/* News-Liste
/*******************************************/
.news-list-wrap .grid a.item p {
    color: var(--color-dark-grey);
}

.news-list-wrap h2 {
    font-size: 32px;
}
.news-grid .item {
    margin-bottom: 20px;
}

section.news-list-wrap {
    margin-bottom: 50px;
    margin-top: 0;
}

body.home section.news-list-wrap {
    margin-top: 0;
    margin-bottom: 0;
}

section.page + section.news-list-wrap {
    margin-top: 30px;
}

div.news-footer {
    border-top: 6px solid var(--color-green);
    padding-top: 10px;
}

/*******************************************/
/* Mediatope Nav
/*******************************************/

ul.mediatope-nav {
    width: 100%;
    text-align: center;
    border-bottom: 5px solid var(--color-green);
    margin-bottom: 40px;
}
ul.mediatope-nav li {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
}

ul.mediatope-nav li a{
    font-size: 20px;
}
ul.mediatope-nav li.selected a{
    font-weight: 500;
}

/*******************************************/
/* Mediathek Nav
/*******************************************/

ul.mediathek-nav {
    width: 100%;
    text-align: center;
    background-color: var(--color-green);
}
ul.mediathek-nav li {
    display: inline-block;
    margin: 7px 15px 5px 0;
}

ul.mediathek-nav li a{
    font-size: 20px;
    color: #FFFFFF;
}
ul.mediathek-nav li.selected a{
    font-weight: 500;
}

/*******************************************/
/* Geförderte Projekte
/*******************************************/

.buttongroup {
    margin-bottom: 30px;
}

.buttongroup ul li {
    display: inline-block;
}
.buttongroup ul li a {
    font-weight: 500;
    display: inline-block;
    cursor: pointer;
    border: 1px solid var(--color-link);
    padding: 6px 8px;
    color: var(--color-link);
    font-size: 15px;
    margin-left: auto;
    margin-top: 10px;
    margin-bottom: 0px;
    background-color: #FFFFFF;
    vertical-align: middle;
    font-family: var(--global-font-title);
}
.buttongroup ul li a:hover,
.buttongroup ul li a.selected {
    background-color: var(--color-green);
    color: #FFFFFF;
    border: 1px solid var(--color-green);
}

/*******************************************/
/* Law
/*******************************************/
.download-list-filter ul li {
    display: inline-block;
}
.download-list-filter ul li a {
    font-weight: 500;
    display: inline-block;
    cursor: pointer;
    border: 1px solid var(--color-link);
    padding: 8px;
    color: var(--color-link);
    font-size: 15px;
    margin-left: auto;
    margin-top: 15px;
    margin-bottom: 30px;
    background-color: #FFFFFF;
    vertical-align: middle;
    font-family: var(--global-font-title);
}
.download-list-filter ul li a:hover,
.download-list-filter ul li a.selected {
    background-color: var(--color-green);
    color: #FFFFFF;
    border: 1px solid var(--color-green);
}

.download-list .list .item {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: nowrap;
    margin-bottom: 1em;
}
.download-list .list .item .text {
    width: calc(100% - 100px);
}
.download-list .list .item .text h2 {
    margin-bottom: .25em;
    line-break: loose;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}
.download-list .list .item .download {
    text-align: right;
    width: 100px;
}
.download-list .list .item .download a {
    color: var(--color-mid-grey);
    font-size: 16px;
}
.download-list .list .item .download span {
    display: block;
    width: 40px;
    height: 40px;
    background-color: var(--color-green);
    color: white;
    font-size: 30px;
    text-align: center;
    padding-top: 5px;
    margin-left: auto;
    margin-bottom: 5px;
}

/********************************************/
/*
 ********************************************/
#act_searchform {
    margin-left: auto;
    position: relative;
    margin-top: 8px;
}
.selection-section.acts {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: nowrap;
}


#act_searchform input[type='text'] {
    font-size: 18px;
    font-weight: 200;
    background-color: rgba(255,255,255,.1);
    width: calc(100% - 35px);
    height: 35px;
    margin: 0;
    padding: 5px 30px 5px 6px;
    border-radius: 0;
    color: var(--color-green);
    border: 1px solid var(--color-green);
}

#act_searchform input[type='text']::placeholder {
    color: var(--color-green);
}
#act_searchform i {
    font-size: 20px;
    color: #FFFFFF;
}

#act_searchform input[type='text']:focus{
    outline: 0;
    background-color: rgba(255,255,255,.9);
    color: var(--color-dark-blue);
}
#act_searchform input[type='text']:focus::placeholder{
    color: var(--color-dark-blue);
}
#act_searchfield:focus + #search-submit {
    background-color: var(--color-dark-blue);
}


.act-list-filter {
    margin: 15px 0;
}
.content-filter ul li {
    display: inline-block;
}
.content-filter ul li a {
    font-weight: 500;
    display: inline-block;
    cursor: pointer;
    border: 1px solid var(--color-link);
    padding: 6px 8px;
    color: var(--color-link);
    font-size: 15px;
    margin-left: auto;
    margin-top: 15px;
    background-color: #FFFFFF;
    vertical-align: middle;
    font-family: var(--global-font-title);
}

.content-filter.small ul li a {
    font-size: 13px;
    padding: 4px 8px;
}

.content-filter ul li a:hover,
.content-filter ul li a.selected {
    background-color: var(--color-green);
    color: #FFFFFF;
    border: 1px solid var(--color-green);
}

.content-filter ul {
    margin-bottom: 30px;
}

/*******************************************/
/* Act (box, list)
/*******************************************/

div.act-list div.item a.image {
    display: block;
    width: 100%;
}

div.act-list div.item div.text {
    margin-top: 5px;
    display: inline-block;
    width: 100%;
}

div.act-list div.item div.text h3 {
    margin-bottom: 2px;
    color: var(--color-dark-blue);
    font-weight: 600 !important;
    font-size: 16px !important;
}

div.act-list div.item div.text h3 {
    color: var(--color-dark-blue);
}

span.media-icon {
    color: rgba(0,0,0,0.6);
    position: absolute;
    text-align: right;
    display: block;
    top:0;
    right: 0;
    width: 70px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    z-index: 20;
    -webkit-font-smoothing: antialiased;
    background: rgba(175,202,5,0.8);
    padding: 3px 15px 6px 10px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-bottom-left-radius: 30px;
}

span.media-icon i {
    font-size: 32px;
    text-align: right;
    margin-top: 5px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

div.act-list div.item div.addinfo {
    float: left;
    width: 100%;
    height: 17px;
    margin-top: 4px;
}

div.act-list div.item div.addinfo span.date {
    float: left;
    font-size: 0.857em;
}
div.act-list div.item div.addinfo .rating-section {
    float: right;
    font-size: 0.857em;
}

div.act-list div.item a.image {
    position: relative;
    display: block;
    float: left;
    width: 100%;
}

div.act-list div.item a.image.audio {
    display: block;
    width: 100%;
}

div.act-list div.item a span.duration {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4);
    border-radius: 5px 0 0;
    bottom: 0;
    color: #ffffff;
    font-size: 0.857em;
    padding: 2px 3px 2px 7px;
    position: absolute;
    right: 0;
    letter-spacing: 1px;
}

.player-section .starbox {
    margin-top: 20px;
}

div.act-list div.item a.icon {
    background: var(--color-green);
    display: block;
    border: none !important;
}


div.act-line-list {
    float: left;
}

div.act-line-list div.item {
    float: left;
    width: 100%;
    border-bottom: 1px dotted #cccccc;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

div.act-line-list div.item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

div.act-line-list div.image {
    position: relative;
    float: left;
    width: 17%;
}

div.act-line-list div.image img {
    float: left;
    width: 100%;
}

div.act-line-list div.image span.duration {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.8);
    border-radius: 5px 0 0;
    bottom: 0;
    color: #ffffff;
    font-size: 0.857em;
    padding: 2px 3px 2px 7px;
    position: absolute;
    right: 0;
    letter-spacing: 1px;
}

div.act-line-list div.text {
    float: left;
    width: 68%;
    padding-left: 10px;
    padding-right: 10px;
}

div.act-line-list div.text h2 {
    margin-bottom: 3px;
    color: var(--color-dark-blue);
    font-size: 1.214em;
    font-family:'ITC Officina Serif W01';
    font-style: italic;
    font-weight: 700;
    line-height: 1.25em;
}
div.act-line-list div.text h2 a {
    color: var(--color-link);
}

div.act-line-list div.text p {
    font-weight: 600;
}

div.act-line-list div.addinfo {
    float: left;
    width: 15%;
    margin-top: 5px;
}

div.act-line-list div.addinfo span.date {
    float: right;
    font-size: 0.857em;
}

div.act-line-list div.rating-section {
    margin-top: 10px;
}

/*******************************************/
/* Act (single)
/*******************************************/

.epaper-embed {
    width: 100%;
    position: relative;
    padding-top: 0px;
    height: 0;
    overflow: hidden;
    margin: 20px 0;
    padding-bottom: 750px;
}

.epaper-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.responsive-video {
    width: 100%;
    position: relative;
    padding-top: 0px;
    height: 0;
    overflow: hidden;
    margin: 20px 0;
}

.player .responsive-video {
    margin: 20px 0;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

div.act-single {
    float: left;
    width: 100%;
}

.act-single div.player {
    position: relative;
}
.act-single div.player img {
    width: 100%;
    display: block;
}

.act-single div.player audio {
    margin-bottom: 20px;
    background-color: black;
}

div.details {
    float: left;
    width: 100%;
    font-size: 0.9em;
}

div.details a {

}

div.details span {
    float: left;
}

div.details span.label {
    float: left;
    width: 100%;
    margin-bottom: 5px;
}

div.details span.value {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

div.details a.button {
    float: left;
    clear: both;
    margin-top: 20px;
    padding: 5px 10px;
    border: 1px solid var(--color-green) !important;
}

div.rating-section {
    color: var(--color-green);
}

span.visits {
    float: right;
    clear: both;
    margin-top: 5px;
}

/*******************************************/
/* comment (list)
/*******************************************/

div.comment-list {
    float: left;
    width: 100%;
}

div.comment-form {
    float: left;
    width: 100%;
    margin-top: 0;
    margin-bottom: 2em;
}

div.comment-list div.list {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

div.comment-list div.list h3 {
    margin-bottom: 10px;
}

div.comment-list div.list div.item {
    float: left;
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #cccccc;
}

div.comment-list div.list div.item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

div.comment-list div.list div.item span.prehead {
    float: left;
    width: 100%;
    margin-bottom: 5px;
    font-style: italic;
    font-weight: 500;
    font-size: 1.2em;
    line-height: 1.25em;
    color: var(--color-dark-blue);
}

div.comment-form form.default {
    width: 100%;
}

div.comment-form form.default div.field,
div.comment-form form.default div.field-group {
    clear: both;
    float: left;
    width: 100%;
}
/*******************************************/
/* Licensee (list)
/*******************************************/

div.licensee-list {
   margin-top: 1em;
}

div.licensee-list h2 {
    margin-top: 1em;
}

div.licensee-list div.list div.item {
    width: 100%;
    margin-bottom: 30px;
}

div.licensee-list div.list ul {
    display: block;
}

div.licensee-list div.list ul li {
    margin-top: 20px;
}

div.licensee-list div.list span.address {
    /*letter-spacing: 0.025em;
    font-weight: 600;*/
    font-size: 0.857em;
}

div.licensee-list div.list h3 {
    color: var(--color-dark-blue);
    font-weight: 600;
}

div.licensee-list div.list a {
    color: var(--color-link);
    /*font-size: 0.857em;*/
    cursor: pointer;
}

div.licensee-single {
    background-color: var(--color-super-light-grey);
    padding: 1em;
    margin-top: 1em;
    position: relative;
}

div.licensee-single h2 {
    color: var(--color-dark-blue);
    font-size: 1.143em;
    margin-bottom: 5px;
    letter-spacing: 0.025em;
    font-weight: 600;
}

div.licensee-single p {
    margin-bottom: 7px;
}
div.licensee-single .licensee-logo {
    width: 100px;
    display: block;
    position: relative;
}

div.licensee-list h4.open {

}
div.licensee-list h4:after {
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    content: "\f0fe";
    margin-left: 5px;
}
div.licensee-list h4.open:after {
    content: "\f146";
}

/*******************************************/
/* channel (list)
/*******************************************/

div.channel-list {
    float: left;
    width: 100%;
}

div.channel-list ul li a img {
    max-width: 100%;
}

div.channel-list div.list {
    float: left;
    margin: 0 -20px;
}

div.channel-list div.list div.item {
    float: left;
    width: 33.33%;
    padding: 0 20px;
    margin-bottom: 40px;
}

div.channel-list div.list div.item:nth-child(3n+1) {
    clear: both;
}

div.channel-list div.list div.item div.image {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

div.channel-list div.list div.item div.image img {
    float: left;
    height: 28px;
}

/*******************************************/
/* channel (single)
/*******************************************/

div.channel-single {
    float: left;
    width: 100%;
}

div.channel-single div.logo {
    float: left;
    width: 100%;
    margin-bottom: 40px;
}

div.channel-single div.logo img {
    float: left;
    width: 66%;
}

div.channel-single div.image {
    float: left;
    width: 100%;
}

div.channel-single div.image img {
    float: left;
    width: 100%;
}

div#site div.site-row div.site-content div.channel-single div.channel-single {
    display: none;
}

/*******************************************/
/* programm (list)
/*******************************************/
.program-serie-list-view .grid .item {
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: nowrap;
    margin-bottom: 1em;
}
.program-serie-list-view .grid .item .text h2 {
    margin-bottom: 0;
}
.program-serie-list-view .grid .item .text {
    width: 100%;
    margin-top: 10px;
}
.program-serie-list-view .grid .item .info {
    margin-left: auto;
    width: 100%;
    margin-top: 10px;
}
.program-serie-list-view .grid .item .info span {
    display: block;
    width: 100%;
}
div.program-list {}

div.program-list.filter-section {
    float: left;
    width: 100%;
}

div#site div.site-row div.site-content div.program-list.filter-section {
    display: none;
}

div.program-list.filter-section div.channel-list {
    float: left;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #a7c507;
}

div.program-list.filter-section div.channel-list ul li {
    float: left;
    clear: both;
    margin-bottom: 10px;
}

div.program-list.filter-section div.channel-list ul li:last-child {
    margin-bottom: 0;
}

div.program-list.filter-section div.alphabet-list ul li {
    float: left;
    width: 33px;
    margin-right: 15px;
    margin-bottom: 10px;
}

div.program-list.filter-section div.alphabet-list ul li:nth-child(5),
div.program-list.filter-section div.alphabet-list ul li:nth-child(10) {
    margin-right: 0;
}

div.program-list.filter-section div.alphabet-list ul li:nth-child(6) {
    clear: both;
}

div.program-list.filter-section div.alphabet-list ul li a {
    font-size: 1.143em;
    font-weight: 500;
    border-bottom: none !important;
}

div.program-list.filter-section div.alphabet-list ul li.selected a {
    color: #000000 !important;
}

div.program-list div.list {
    float: left;
}

div.program-list div.list div.item {
    float: left;
    width: 100%;
    border-bottom: 1px dotted #cccccc;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

div.program-list div.list div.text {
    float: left;
    width: 77%;
}

div.program-list div.list div.addinfo {
    font-size: 0.857em;
}

div.program-list div.list div.addinfo {
    float: right;
    width: 23%;
    padding-left: 3px;
    line-height: 120%;
}

div.program-list div.list div.prehead {
    font-size: 0.929em;
}

div.program-list div.list div.item h2 {
    margin-bottom: 0 !important;
    font-weight: 600;
    font-size: 1.143em;
    line-height: 100%;
}

div.act-single-page div.site-row.row-3 {
    margin-bottom: 2em;
}

div.source-list {
    width: 100%;
    float: left;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin-bottom: 30px;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

div.source-list div.item {
    width: 33.33%;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 35px;
}

div.source-list div.double-item {
    width: 66.66%;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 35px;
}


ul.archiv-filter {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

div.year-filter {
    float: left;
    width: 100%;
}

div.year-filter h3 {
    float: left;
    margin-right: 20px;
}

div.year-filter select {
    float: left;
    font-weight: 400;
    font-size: 16px;
    padding: 10px;
}

i.star {
    color: #a7c507;
}

h3.keyword_category {
    float: left;
    width: 100%;
    color: #a7c507;
    margin-bottom: 15px;
    padding-top: 5px;
    border-bottom: 1px solid #a7c507;
}


div.keywordcloud ul {
    float: left;
    text-align:center;
    list-style:none;
}

div.keywordcloud ul li {
    display: inline;
    padding: 5px;
    padding-top: 6px;
    padding-bottom: 6px;
    color: #cccccc;
    background: none;
    margin: 0;
    line-height: 240%;
}

div.keywordcloud ul li a, div.keywordcloud ul li a:link {
    color: #8D8D8D;
    text-decoration:none;
    font-weight: normal;
    font-size: 1.2em;
}

div.keywordcloud ul li a:hover {
    /* 	border-bottom: 1px dotted #808080;  */
}

div.keywordcloud ul li.t0 a { color: #999999; font-size: 0.8em; }
div.keywordcloud ul li.t1 a { color: #999999; font-size: 0.9em; }
div.keywordcloud ul li.t2 a { color: #8B8B8B; font-size: 1.0em; }
div.keywordcloud ul li.t3 a { color: #808080; font-size: 1.1em; }
div.keywordcloud ul li.t4 a { color: #737373; font-size: 1.2em; }
div.keywordcloud ul li.t5 a { color: #666666; font-size: 1.3em; }
div.keywordcloud ul li.t6 a { color: #595959; font-size: 1.4em; }
div.keywordcloud ul li.t7 a { color: #4C4C4C; font-size: 1.45em; }
div.keywordcloud ul li.t8 a { color: #404040; font-size: 1.5em; }
div.keywordcloud ul li.t9 a { color: #343434; font-size: 1.55em; }
div.keywordcloud ul li.t10 a { color: #272727; font-size: 1.6em; }

div.keywordcloud ul li a sup {
    display: inline-block;
    background-color: #a7c507;
    border-radius: 10px;
    margin-left: 3px;
    color: white;
    padding: 3px 5px;
    font-size: 12px;
    line-height: 1;
    margin-top: -10px;
}

/*******************************************/
/* Archiv
/*******************************************/

.archive-list {
    margin-top: 30px;
}
.archive .selection-section .months,
.archive .selection-section .location,
.archive .selection-section .types,
.archive .selection-section .mediatop {
    margin-top: 15px;
}
 .selection-section span.label {
    display: block;
    margin-bottom: 14px;
}
 .selection-section ul li{
    display: inline-block;
     height: 42px;
}
.selection-section ul li a {
    font-weight: 500;
    background-color: #FFFFFF;
    color: var(--color-link);
    border: 1px solid var(--color-link);
    padding: 6px 8px;
    font-size: 15px;
}

.selection-section ul li:hover a,
.selection-section ul li.selected a {
    font-weight: 500;
    background-color: var(--color-green);
    color: #FFFFFF;
    border: 1px solid var(--color-green);
}
.selection-section ul li.dimmed span {
    padding: 8px;
    font-size: 15px;
    font-weight: 500;
    background-color: white;
    color: rgba(225,225,225,2);
    border: 1px solid rgba(225,225,225,2);
    margin-bottom: 0;
}
.news-list-wrap .selection-section {
    margin-bottom: 30px;
}

.page-detail-nav{
   margin-top: 15px;
}

.page-detail-nav.selection-section ul li a {
    font-weight: 300;
    background-color: #FFFFFF;
    color: var(--color-dark-blue);
    border: none;
    border-left: 3px solid var(--color-green);
    padding: 2px 8px 0px 8px;
    font-size: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: wrap;
}
.page-detail-nav.selection-section ul li a::after {
    content: attr(data-text);
    height: 0;
    visibility: hidden;
    overflow: hidden;
    user-select: none;
    pointer-events: none;
    font-weight: 500;
}
@media speech {
    .page-detail-nav.selection-section ul li a::after {
        display: none;
    }
}

.page-detail-nav.selection-section ul li:hover a,
.page-detail-nav.selection-section ul li.selected a {
    font-weight: 500;
    border-left: 3px solid var(--color-dark-blue);
}
.page-detail-nav.selection-section ul li.dimmed span {
    padding: 8px;
    font-size: 15px;
    font-weight: 500;
    background-color: white;
    color: rgba(225,225,225,2);
    border: 1px solid rgba(225,225,225,2);
    margin-bottom: 0;
}

/*******************************************/
/* Kompass
/*******************************************/

.baustein h2 {
    margin-top: 20px;
}
hr.baustein-divider {
    border: none;
    height: 3px;
    background-color: var(--color-green);
    margin: 20px 0 25px 0;
}
hr.baustein-divider:last-of-type {
    border: none;
    height: 0;
    background-color: transparent;
}
.angebote h3 {
    color: var(--color-dark-grey);
    font-family: var(--global-font-wide);
    font-size: 16px;
    margin-bottom: 0;
}
.angebot_info h2 {
    margin-top: 20px;
    margin-bottom: 10px;
}

div.baustein {
    float: left;
    width: 100%;
    margin-bottom: 2em;
}

div.baustein h2 {
    float: left;
    width: 100%;
    margin-top: 0;
}


div.baustein div.info {
    float: left;
    width: 45%;
}

div.baustein div.info strong {
    color: black;
}

div.baustein div.angebote {
    float: left;
    width: 55%;
    padding-left: 20px;
}

div.baustein div.angebote h3 {
    font-weight: bold;
    color: black;
}

div.baustein div.angebote ul {
    margin-top: 1em;
}

div.baustein div.angebote ul li {
    padding: 0.3em;
}

div.baustein div.angebote ul li {
    border-bottom: 1px dotted #808080;
    position: relative;
    padding-right: 10px;
}

div.baustein div.angebote ul li.ro {
    border-right: 20px solid #a7c507;
}

div.baustein div.angebote ul li a {
    border: none;
}

span.flag-ro {
    font-size: 12px;
    line-height: 1;
    background-color: #a7c507;
    width: 25px;
    border-radius: 13px;
    text-align: center;
    padding-top: 6px;
    padding-bottom: 6px;
    color: white;
}

div.baustein div.angebote ul li span.flag-ro {
    position: absolute;
    right: 0;
    top: 1px;
}

div.indent {
    margin-left: 1.5em;
}

div.angebot_info h2 {
    margin-bottom: 1em;
    float: none;
}

div.angebot_info h3 {
    margin-bottom: 10px;
    color: #004D86;
    font-size: 17px;
    border-bottom: 1px solid #004D86;
    font-weight: 500;
    font-style: italic;
    padding-bottom: 3px;
    margin-top: 2em;
}

div.angebot_info ul li {
    margin-bottom: 0.3em;
    list-style-image: url(images/dot.svg);
    margin-left: 1em;
}

div.angebot_info p {
    margin-bottom: 0.8em;
}

ul.keywords {
    margin-top: 1em;
}

ul.keywords li {
    margin-bottom: 0.3em;
    list-style-image: url(images/dot.svg);
    margin-left: 1em;
}

a.angebot_addon_box {
    display: block;
    float: left;
    width: 100%;
    padding: 10px;
    margin: 20px 0;
    background-color: #a7c507;
    color: white !important;
    text-align: center;
    border: none !important;
}

a.angebot_addon_box i {
    font-size: 32px;
}

div.addon_box {
    margin-top: 20px;
    margin-bottom: 40px;
    position: relative;
    clear: both;
}

div.addon_box .icon {
    position: absolute;
    left: 0;
    top: 25px;
    width: 35px;
    height: 30px;
    display: block;
    text-align: center;
    color: white;
    font-size: 22px;
    line-height: 1;
    padding-top: 5px;
}
div.addon_box.legal .icon {
    height: 35px;
}

div.addon_box h2 {
    font-weight: 700;
    color: var(--color-dark-grey);
    font-family: var(--global-font-thin);
    line-height: 125%;
    margin-bottom: 5px;
}

div.addon_box p {
    margin-top: 0.6em;
}

div.addon_box.info,
div.addon_box.caution,
div.addon_box.learn,
div.addon_box.legal {
    padding: 20px;
    padding-left: 70px;
}

div.addon_box.blue{
    background-color: #cde0ee;
}

div.addon_box.green {
    background-color: #ecf0c3;
}

div.addon_box.blue .icon {
    background-color: #004D86;
}

div.addon_box.green .icon {
    background-color: #719000;
}

div.addon_box.learn {
    margin-top: 30px;
}

div.addon_box.learn h2 {
    background-color: #004D86;
    position: absolute;
    top: -15px;
    padding: 5px 20px;
    color: white;
}

div.addon_box.default h2 {
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    color: #004D86;
    margin: 10px 0;
}
.attachment-list {
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: nowrap;
}
/*******************************************/
/* Inhalts-Bilder
/*******************************************/
figure.list-image {
    position: relative;
}
figure.list-image.video:before {
    content: "\f04b";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    color: rgba(255,255,255,0.6);
    position: absolute;
    height: 50px;
    width: 50px;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    font-size: 40px;
    line-height: 1;
    text-align: center;
}

.grid .item figure.kompass_cover {
    float: right;
    width: 50%;
    max-width: 250px;
    margin-left: 20px;
}

.grid .item figure.kompass_cover img,
img.cover {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    border: 1px solid #808080;
}

.image-wrapper img {
    margin-bottom: 0;
}

.image-wrapper.wide-img img {
    margin-bottom: 20px;
}

.image-wrapper.wide-img {
    margin-bottom: 20px;
    position: relative;
}

a.fancybox div.icon {
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--color-green);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 5px;
    color: white;
    z-index: 100;
}

a.fancybox div.icon i {
    margin: 0 5px;
    color: white;
}

.image-wrapper p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 16px;
    margin-top: 10px;
    margin-bottom: 0;
}

.fr-dib {
    width: 100%;
    max-width: 100%;
    display: block;
    float: left;
    margin: 20px 0 20px 0;
    text-align: center;
}

.fr-dib img {
    width: auto !important;
    max-width: 100%;
    margin: 0 auto;
}

.fr-dib.fr-fil {
    text-align: left;
}

.fr-dib.fr-fil img {
    float: left;
}

.fr-dib.fr-fir {
    text-align: right;
}

.fr-dib.fr-fir img {
    float: left;
}

.fr-dii {
    display: inline-block;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.fr-dii.wj-page_detail-image {
    display: block;
    max-width: 300px;
    text-align: center;
}

.fr-dii.wj-page_detail-image img {
    display: block;
    max-width: 300px;
    width: auto;
    margin: 0 auto;
}

.wj-page-image {
    width: auto;
    max-width: 100%;
    display: block;
}

.grid .item img.wj-page-image {
    width: auto;
    max-width: 100%;
    display: block;
}

section.page {
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    margin-top: 40px;
}
section.page.archive {
    margin-top: 0;
}
section.page.search {
    margin-top: 20px;
}
section.page.search .item h2{
    margin-bottom: 5px;
}
section.page.search .item p{
    margin-bottom: 5px;
}
section.page.search .item{
    margin-bottom: 20px;
}
section.page.detail {
    margin-top: 10px;
}

.page-detail h2 {
    font-size: 30px;
}
.page-detail.clicklist h4 {
    margin-bottom: 10px;
    cursor: pointer;
}
.page-detail.clicklist p.clicklist-body {
    background-color: var(--color-super-light-grey);
    padding: 1em;
    margin-top: 1em;
}
.page-detail.clicklist h4.open {

}
.page-detail.clicklist h4:after {
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    content: "\f0fe";
    margin-left: 5px;
}
.page-detail.clicklist h4.open:after {
    content: "\f146";
}
form h3 {
    margin-bottom: 0.5em;
}
form.grid .item.form_text {
    padding: 25px 0 5px 0;
    border-bottom: 3px solid var(--color-green);
    margin-bottom: 20px;
}

form {

}

form .counter {
    font-size: 12px;
}

label {
    width: 100%;
    font-size: 16px;
    margin-bottom: 3px;
}

.label_wrapper label {
    font-family: var(--global-font-thin);
}

label.required {

}

label.required::after {
    display: inline-block;
    content: '*';
    color: var(--color-green);
    margin-left: 4px;
}

select,
input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border:none;
    border-radius: 0;
    font-size: 14px;
    width: 100%
}




/* remove standard-styles */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    /* appearance: none; */
    border-radius: 0;
}

/* hide browser-styling (arrow) in IE10 */
select::-ms-expand {
    display:none;
}

.lt-ie10 select {
    background-image: none;
}

select {
    background: rgba(109,110,94,0.1) url("/styles/images/select-arrow.png") no-repeat scroll right center / 23px auto;
    margin-bottom: 10px;
}

select:focus {
    background: rgba(109, 110, 94, 0.1) url("/styles/images/select-arrow-active.png") no-repeat scroll right center / 23px auto;
    margin-bottom: 10px;
}

input[type='text'],
input[type='tel'],
input[type='email'],
input[type='password'],
textarea,
select {
    font-size: 16px;
    font-weight: 200;
    background-color: rgba(0,0,0,0.1);
    width: 100%;
    height: 35px;
    margin-left: 0;
    padding: 5px 6px;
    margin-bottom: 10px;
    border-radius: 0;
    color: rgba(0,0,0,0.85);
    border: 1px solid rgba(0,0,0,0.1);
    font-family: var(--global-font-wide);
}
/*
select {
    width: auto;
}
 */

select:focus,
input:focus,
textarea:focus {
    outline: 0;
    border: 1px solid var(--color-dark-blue) !important;
}

form div.checkbox {
    float: left;
    margin-bottom: 15px;
    width: 100%;
}

.field_wrapper.small {
    width: 25%;
    min-width: 4em;
}

.field_wrapper.medium {
    width: 50%;
    min-width: 6em;
}

.field_wrapper.large {
    width: 100%;
}

form input.error, form textarea.error {
    border: 1px solid rgba(219,8,18,1);
}

form input.checkbox-type {
    width: 60%;
}

form input[type="checkbox"] {
    margin-left: 0;
}

label.checkbox input {
    display: none;
}

label.checkbox span {
    border: 1px solid ;
    display: inline-block;
    float: left;
    font-size: 22px;
    height: 18px;
    margin-right: 10px;
    margin-top: 2px;
    position: relative;
    width: 18px;
}
select.error,
label.checkbox.error span {
    border: 1px solid rgba(219,8,18,1);
}
.maxlength-indicator {
    margin-top: -10px;
    float: right;
    font-size: 13px;
}

.maxlength-indicator.warning {
    color: rgb(255, 174, 0);
}

.maxlength-indicator.error {
    color: rgba(219,8,18,1);
}

label.checkbox i {
    padding-left: 7px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    font-style: normal;
    display: inline-block;
    width: calc(100% - 28px);
}

[type=checkbox]:checked + span:before {
    content: '\2714';
    position: absolute;
    color: var(--color-dark-blue);
    top: -5px;
    left: 1px;
}

[type=checkbox]:checked + label.checkbox span {
    border: 0.5px solid var(--color-dark-blue);
}
form div.checkbox {
    float: left;
    margin-bottom: 15px;
    width: 100%;
    margin-left: 2px;
}
.checkboxgroup_buttons {
    width: 100%;
}
form .checkboxgroup_buttons div.checkbox {
    float: left;
    width: auto;
    margin-right: 10px;
}

form .checkboxgroup_buttons div.checkbox label {
    cursor: pointer;
}

form .checkboxgroup_buttons .validatormessage {
    float: left;
}
form .checkboxgroup_buttons label.checkbox i {
    width: 100%;
    padding: 5px 10px;
    font-style: normal;
    background-color: #ffffff;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

form .checkboxgroup_buttons [type=checkbox]:checked + i {
    background-color: var(--color-dark-blue);
    color: #FFFFFF;
}
form .checkboxgroup_buttons [type=radio]:checked + i {
    background-color: var(--color-dark-blue);
    color: #FFFFFF;
}
textarea {
    height: 109px !important;
}
a.button,
button:not(#search-submit) {
    font-weight: 500;
    display: inline-block;
    cursor: pointer;
    border: none;
    padding: 6px 8px;
    color: #FFFFFF;
    font-size: 15px;
    margin-left: auto;
    margin-top: 15px;
    margin-bottom: 30px;
    background-color: var(--color-green);
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    font-family: var(--global-font-title);
}
a.button.active,
a.button:hover,
button:not(#search-submit).active,
button:not(#search-submit):hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.button.back-button {
    background-color: var(--color-light-grey);
}

button.unsub_all {
    background-color: var(--color-red);
}

button:disabled{
    cursor: not-allowed;
}
button:disabled:hover {
    -webkit-transform: none;
    transform: none;
}

button.prev-next{
    margin-top: auto;
}

.admin-button {
    display: inline-block;
    cursor: pointer;
    border: none;
    padding: 4px 8px;
    color: #000000;
    font-size: 15px;
    margin-left: auto;
    margin-top: 15px;
    margin-bottom: 30px;
    background-color: #E5E5E5;
    vertical-align: middle;
    box-shadow: 0 0 1px transparent;
    font-family: var(--global-font-title);
}

span.validatormessage {
    color: rgba(219,8,18,1);
    display: block;
    margin-top: -10px;
    font-size: 14px;
}

.checkbox span.missing {
    color: rgba(219,8,18,1);
    display: block;
    margin-left: 29px;
}

.file-list {
    display: flex;
    flex-direction: column;
}

.file-list .file-item {
    margin-bottom: 10px;
}

.file-list .file-item a {
    display: flex;
    flex-direction: row;
}

.file-list .file-item span.file-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    background-color: var(--color-green);
    color: white;
    font-size: 30px;
    text-align: center;
    padding-top: 5px;
}

.file-list .file-item div.file-info {
    width: calc(100% - 60px);
    display: flex;
    flex-direction: column;
}

.file-list .file-item div.file-info h3 {
    margin-bottom: 0;
    color: var(--color-link);
}

.file-list .file-item div.file-info span.file-size {
    color: var(--color-light-grey);
    font-size: 14px;
}
/*******************************************/
/* Gallery
/*******************************************/


.gallery {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: wrap;
    margin: 30px 0 55px -15px;
}

.gallery .item {
    width: calc(50% - 15px);
    margin-left: 15px;
    margin-bottom: 15px;
}

.gallery .item.fourth {
    width: calc(25% - 15px);
}

.gallery .item.sixth {
    width: calc(16.66% - 15px);
}
.gallery .item img {
    width: 100%;
    display: block;
    /*border-radius: 50%;*/
}
.gallery .item span {
    width: 100%;
    display: block;
    font-size: 12px;
    color: var(--color-dark-grey);
    text-align: center;
}

/*******************************************/
/* partner
/*******************************************/
#map {
    height: 380px;
}
.leaflet-tooltip-pane{
    font-size: 14px;
}
.partner-list .grid .item h2 {
    margin-bottom: 5px;
}

/*******************************************/
/* Winner
/*******************************************/
.prize-winner-list .grid .item {
    margin-bottom: 15px;
}
.prize-winner-list .grid .item img {
    width: 100px;
    float: left;
    margin-right: 15px;
}
.prize-winner-list .green {
    color: var(--color-green);
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

/*******************************************/
/* Team
/*******************************************/

.team-list .grid {
    margin-top: 20px;
}

.team-list .border-top {
    border-top-width: 3px;
}

.team-list .grid .item {
    margin-bottom: 25px;
}

.team-list .grid .item.team {
    width: calc(100% - 30px);
    display: flex;
    flex-basis: auto;
    flex-direction: row;
    flex-wrap: wrap;
}
.team-list .grid .item.team figure {
    width: 150px;
    margin: 0 auto 0 0;
}
.team-list .grid .item.team .body {
    width: calc(100% - 180px);
}
.team-list h2 {
    font-size: 30px;
    margin-top: 0px;
}
.team-list .grid .item span {
    display: block;
}
.team-list .grid .item span.name {
    font-weight: 500;
    color: var(--color-dark-blue);
}

.team-list .grid .item div.phone,
.team-list .grid .item div.email {
   margin-top: 2px;
}

.team-list .item .icon {
    color: var(--color-green);
    margin-right: 5px;
    font-size: 16px;
}

.vita-body {
    margin-top: 20px;
    display: none;
}

.team-list .grid .item.team .vita-body {
    width: 100%;
}


/*******************************************/
/* Form Print
/*******************************************/

.print_out{
    margin-bottom: 50px;
}
.print_out tr {
    height: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.print_out tr.print_out_text {
    height: auto;
}

.print_out tr td {
    vertical-align: top;
    padding: 8px;
}

.print_out tr td {
    vertical-align: top;
    padding-top: 5px;
    padding-bottom: 5px;
}

.print_out tr td:first-of-type:not(.two-col) {
    width: 35%;
    font-family: var(--global-font-thin);
}
.print_out tr td:nth-of-type(even) {
    width: 60%;
    padding-left: 30px;
    font-weight: 500;
    color: black;
}
.print_out tr.print_out_text h3 {
    margin-top: 1.5em;
}
.print_out tr span.user_input {
    display: inline-block;
}
.print_out tr span.user_input:after {
    display: inline-block;
    content: ", ";
    margin-right: 5px;
}
.print_out tr span.user_input:last-of-type:after {
    display: none;
}
/*******************************************/
/* Footer
/*******************************************/

footer {
    margin-top: 35px;
    float: left;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-super-light-grey);
    padding: 30px 0;
}

footer div.content {

}

footer ul {
    width: 100%;
    text-align: right;
}
footer ul li {
    display: block;
}

footer ul li a {
    color: var(--color-dark-blue);
    font-size: 14px;
}
footer ul li.selected a,
footer ul li:hover a {

}

footer div.footer_map {
    display: inline-block;
    width: 100%;
    margin: 0;
}

div.footer_map svg {
    width: 100%;
    height: calc(100% * 2 / 3);
}

footer #dot-402 {
    fill: var(--color-pink)
}
footer div.form-wrap form#searchform {
   margin: 0 auto 30px auto;
    max-width: 400px;
}

footer div.form-wrap form#searchform input{
   background-color: #FFFFFF;
}


.toTop {
    bottom: 20px;
    display: none;
    height: 50px;
    position: fixed;
    right: 20px;
    width: 50px;
    font-size: 30px;
    overflow: visible;
    z-index: 999;
}

.toTop a {
    position: absolute;
    background-color: var(--color-green);
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.toTop span {
    margin-top: 11px;
    margin-left: 11px;
    color: #FFFFFF;
}

.compass_video_list .video h3 {
    margin-top: 10px;
}

.grid.page-intro {
    flex-direction: column-reverse;
}

div.simple-list {
    margin-top: 30px;
}

div.simple-list .grid .item div.text a.button {
    margin-bottom: 0;
}

div.simple-list .grid .item {
    margin-bottom: 15px;
}

.mediatop-service .image-wrapper {
    margin-bottom: 15px;
}

.sub-navigation {
    display: none;
    background-color: var(--color-super-light-grey);
    padding: 10px 30px;
    font-family: Roboto, sans-serif;
    position: relative;
    margin-bottom: 30px;
}

address {
    font-weight: 200;
    font-size: 14px;
}

.sub-navigation.mediatop-sub-navigation,
body.medienforschung .sub-navigation,
body.kompass .sub-navigation {
    display: block;
}

.sub-navigation:before {
    content: '';
    display: block;
    position: absolute;
    width: 10px;
    height: 100%;
    left: 0;
    top: 0;
    background-color: white;
    border-left: 10px solid var(--color-green);
}

.sub-navigation div.burger {
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
    text-align: right;
}

.sub-navigation div.burger a {
    padding: 0 0 10px 15px;
    display: inline-block;
}

.sub-navigation ul li {
    min-height: 24px;
    position: relative;
    margin-bottom: 10px;
}

.sub-navigation ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.sub-navigation ul li a {
    font-weight: 300;
    line-height: 90%;
}

.sub-navigation ul li:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    left: -30px;
    background-color: var(--color-link);
    border-top: 10px solid white;
    border-bottom: 10px solid white;
    opacity: 0;
    -webkit-transition: opacity 0.6s 0s ease-in-out;
    -moz-transition: opacity 0.6s 0s ease-in-out;
    -o-transition: opacity 0.6s 0s ease-in-out;
    transition: opacity 0.6s 0s ease-in-out;
}

.sub-navigation ul li:hover:before,
.sub-navigation ul li.selected:before {
    opacity: 1;
}

.sub-navigation ul li.selected a {
    font-weight: 500;
}

ul.mediatop-sub-navigation-social {
    margin-bottom: 10px;
}

ul.mediatop-sub-navigation-social li {
    font-size: 28px;
    display: inline-block;
    margin-right: 10px;
}

ul.mediatop-sub-navigation-social li .fab  {
    font-size: 28px;
    display: inline-block;
}

.program.grid .item .broadcast {
    background-color: var(--color-super-light-grey);
    margin-bottom: 10px;
}

.program.grid .item .broadcast.broadcast-hgw {
    background-color: #CDDDE9;
}

.program.grid .item .broadcast h4 {
    background-color: var(--color-dark-blue);
    color: white;
    padding: 5px;
    text-align: center;
}

.program.grid .item .broadcast .entries {
    padding: 5px;
}

.program.grid .item .broadcast .entry {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    overflow: hidden;
}

.program.grid .item .broadcast .entry .time {
    width: 3em;
    margin-right: 1em;
}

.program.grid .item .broadcast .entry .text {
    width: calc(100% - 4em);
    font-family: var(--global-font-thin), sans-serif;
    position: relative;
}

.program.grid .item .broadcast .entry .text .live_button {
    font-family: var(--global-font-thin), sans-serif;
    font-weight: 600;
    border: 2px solid var(--color-dark-blue);
    color: var(--color-dark-blue);
    border-radius: 10px;
    padding: 2px 6px;
    position: absolute;
    top: 0;
    right: 10px;
    transform: rotate(-5deg);
}

.program.grid .item .broadcast .entry .text p {
    margin-bottom: 0;
}

.program.grid .item .broadcast .entry .text p.sub_info {
    font-size: 13px;
}

.program.grid .item .broadcast .entry h5 {
}

.program.grid .item .broadcast .entry h5 {
    font-family: var(--global-font-thin), sans-serif
}

#dictionary_popup {
    position: fixed;
    left: 50%;
    width: 90%;
    max-width: 400px;
    top: 50%;
    padding: 15px;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.6);
    display: none;
}

#dictionary_popup h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

#dictionary_popup div.body {
    padding: 15px 15px 0 15px;
}

#dictionary_popup span.popup_close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

#dictionary_popup a.button {
    margin-bottom: 15px !important;
    margin-left: 15px;
}

@media (max-width: 400px) {

    .sidr ul.mobile-social-nav li {
        margin-right: 12px;
        font-size: 13px;
    }

    .sidr ul.mobile-social-nav li a i {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .mobile-hidden {
        display: none !important;
    }
}