:root {
    --GETECO: #932747;
    --programmfarbe: #932747;
    /*anthrazit*/
    --col1: #474747;
    /*hellgrau*/
    --col2: #696969;
    /*weiß*/
    --col3: #fefefe;
    /*fast weiß*/
    --col4: #f1f1f1;
    --SearchboxHeight: 3em;
    /*MediaElemente*/
    --mediaBorderColor: #4747472e;
    --mediaBorderWith: 4px;
    --mediaHoverBorderColor: var(--GETECO);
    /*articleContent*/
    --contentMaxWidth: 1100px;
    --block2Padding: 1rem;
    --block3Padding: 2rem;
    --block4Padding: 3rem;
    --mediaMaxWidth: calc(var(--contentMaxWidth)-(8px))
}

/*CSS  reset, um Browser-Vorgaben außer Kraft zu setzen*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
}

article {
    padding: 2.5em 1em 0.25em;
    background: var(--GETECO);
    border-radius: 0.25em;
    transition: all 250ms cubic-bezier(0.06, 0.63, 0.91, 0.66);
    position: absolute;
    transform-origin: 0 10vw;
    width: 100%;
    border-radius: 0px;
    box-shadow: -9px -9px 30px #bebebe, 9px 9px 30px #bebebe;
    background: var(--col3);
    margin-top: 80px;
    min-height: 100%;
    overflow: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

    blockquote:before,
    blockquote:after,
    q:before,
    q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Style*/
body {
    line-height: 1.5rem;
    background-color: var(--col4);
}

p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: var(--col2);
    text-align: justify;
    margin: 0 0 0.5em 0;
    font-size: 1.3rem;
    line-height: 1.7rem;
}

h1 {
    font-family: 'PT Sans Narrow', sans-serif;
    font-weight: 900;
    font-size: 33pt;
    line-height: 1.5em;
    color: var(--col1);
    margin: 0 0 0.5em 0;
}

h2 {
    font-family: 'PT Sans Narrow', sans-serif;
    font-weight: 900;
    font-size: 28pt;
    line-height: 1.3em;
    color: var(--col1);
    text-align: justify;
    margin: 0 0 0.5em 0;
}

h3 {
    font-family: 'PT Sans Narrow', sans-serif;
    font-weight: 400;
    font-size: 25pt;
    line-height: 1em;
    color: var(--col2);
    margin: 0 0 0.5em 0;
}

h4 {
    font-family: 'PT Sans Narrow', sans-serif;
    font-weight: 400;
    font-size: 22pt;
    line-height: 1em;
    margin: 0 0 0.5em 0;
    color: var(--col2);
}

a {
    color: cornflowerblue;
    text-decoration: none;
    overflow-wrap: anywhere; 
}

    a:hover {
        text-decoration: underline;
        color: cornflowerblue;
    }

.getecolink {
    color: cornflowerblue;
    text-decoration: none;
    font-family: 'PT Sans Narrow', sans-serif;
    font-weight: 600;
    font-size: 1.5em;
    cursor: pointer;
}

.getecolink:hover {
    text-decoration: underline;
    color: cornflowerblue;
}

.fa {
    box-sizing: border-box;
    position: relative;
    top: 0;
    right: 0;
    border-radius: 50%;
    color: var(--col1);
    text-align: center;
    font-size: 1.2em;
    transition: all 1s;
}

/*Header*/
#header {
    width: 100%;
    background-color: var(--col3);
    position: fixed;
    z-index: 1;
    padding: auto;
}

    #header .visibleSearchInput {
        height: calc(80px + var(--SearchboxHeight));
    }

    #header .collapsedSearchInput {
        height: 80px;
    }

#headercontent {
    display: flex;
    flex-direction: row;
    overflow: auto;
    box-shadow: inset 0px 0px 8px #d5d5d5, inset -5px -5px 11px #ffffff;
    overflow: hidden;
}

#logo {
    padding: 20px 0 20px 40px;
    cursor: pointer;
}

/*Start: Search*/
.toggleSearchbutton {
}

    .toggleSearchbutton button {
        position: fixed;
        top: 15px;
        left: 95%;
        width: 50px;
        height: 50px;
        background: var(--col3);
        box-sizing: border-box;
        border-radius: 25px;
        border: 4px solid var(--col3);
        padding: 5px;
        box-shadow: 5px 5px 13px #d5d5d5, -5px -5px 13px #ffffff;
        z-index: 999;
        color: var(--col1);
    }

        .toggleSearchbutton button:hover {
            background: var(--col4);
            border-color: var(--col4);
            cursor: pointer;
        }

#searchbox {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: var(--SearchboxHeight);
    background-color: var(--GETECO);
}

    #searchbox button {
        cursor: pointer;
        border-radius: 50%;
        border-style: none;
        background-color: transparent;
        color: var(--col3);
        height: calc(var(--SearchboxHeight) * 0.8);
        width: calc(var(--SearchboxHeight) * 0.8);
        margin: calc(var(--SearchboxHeight) * 0.2);
    }

        #searchbox button:hover {
            background-color: rgb(0, 0, 0, 0.3);
        }

        #searchbox button > .fa {
            color: inherit;
        }

#searchForm {
    background-color: transparent;
    display: flex;
    width: inherit;
    border: none;
}

    #searchForm > input, select, textarea {
        padding-left: 40px;
        right: 2em;
        color: white;
        font-weight: bold;
        background-color: transparent;
        width: 100%;
        border: none;
        font-family: 'Roboto', sans-serif;
        font-size: large;
    }

        #searchForm > input :focus, :focus-visible, :focus-within {
            outline-style: none;
        }

::placeholder {
    color: white;
}
/*End: Search*/

/*Footer*/
#footer {
    height: 40px;
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: var(--col3);
    text-align: center;
    display: flex;
    flex-direction: row;
    overflow: auto;
    box-shadow: inset 0px 3px 8px #d5d5d5, inset -5px -5px 11px #ffffff;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    justify-items: center;
}

    #footer a {
        color: var(--GETECO);
    }

/*Main-Seite*/
.button-header {
    text-align: center;
    color: var(--programmfarbe);
}

.main-body {
    height: auto;
    /* position: absolute; */
    top: 80px;
    width: 100%;
    background-color: var(--col3);
    align-content: center;
    padding-bottom: 80px;
}

    .main-body:after {
        clear: both;
    }

    .main-body:before,
    .main-body:after {
        content: " ";
        display: table;
    }

.main-body {
    *zoom: 1;
    background: linear-gradient(to bottom right, var(--col4), var(--col3));
}

.tile-rows {
    display: flex;
    flex-direction: column;
}

.centertext {
    margin: 0 auto;
    max-width: calc(1200px + 8%*2);
    padding: 0 8%;
    box-sizing: border-box;
}

.tile {
    box-shadow: 15px 16px 28px 0 rgba(0, 0, 0, 0.11);
    margin: 40px 0;
    border-radius: 18px;
    box-sizing: border-box;
    width: inherit;
    background-color: var(--col3);
    text-align: center;
}

.tile-content {
    padding: 2em 2.5em;
}

/*Mehrere Panes für später
.lefttext,
.righttext,
.imageframe {
    width: 100%;
    background-position: center center;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;

}
*/

.programIcon {
    background: url(../../Ressources/Icons/conviva-button.png);
}

.button img {
    position: relative;
    z-index: -1;
}

/*Artikelseite*/
.k-item {
    font-family: 'PT Sans Narrow', sans-serif;
    font-weight: 300;
    color: var(--col1);
    font-size: 14pt;
}

.collapsible {
    width: auto;
}

.content {
    max-width: var(--contentMaxWidth);
    width: 100%;
}

.biblioVideo {
}

    .biblioVideo :hover {
        cursor: pointer;
    }

    .biblioVideo video {
        cursor: pointer;
        max-width: 100%;
        margin: 0 auto;
        border-color: var(--mediaBorderColor);
        border-style: solid;
        border-width: var(--mediaBorderWith);
    }

        .biblioVideo video:hover {
            border-color: var(--mediaHoverBorderColor);
            mask-border-mode: luminance;
        }

    .biblioVideo p {
        font-style: italic;
    }

.article-content {
    margin: 0.5em 0 1.5em 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.img-article {
    max-width: 1092px;   
    padding-right: 0.5em;
}

    .img-article img {
        max-width: 100%;
        border-style: solid;
        border-width: var(--mediaBorderWith);
        border-color: var(--mediaBorderColor);
    }

        .img-article img:hover {
            cursor: pointer;
            border-color: var(--mediaHoverBorderColor);
        }

    .img-article p {
        font-style: italic;
    }

.content h2 {
    margin: 0 0 0.5em 0;
}

#check {
    display: none;
    position: fixed;
}

    #check + label {
        position: fixed;
        top: calc(5.7em + var(--SearchboxHeight));
        left: 1em;
        z-index: 1;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

        #check + label::before {
            position: absolute;
            content: '';
            top: -1em;
            left: -1em;
            background-color: rgba(33, 33, 61, 0.5);
            transform-origin: 50% 50%;
            transform: scale(1.3);
            visibility: hidden;
            opacity: 0;
            transition: all 250ms linear;
        }

        #check + label svg {
            margin-right: 0.5em;
        }

            #check + label svg path {
                transform-origin: 35% 50%;
                transition: transform 166.6666666667ms cubic-bezier(0.06, 0.63, 0.91, 0.66);
            }

    #check:checked + label ~ aside {
        transform: none;
    }

    #check:checked + label::before {
        left: calc(25vw - 1em);
        transform: scale(1);
        visibility: visible;
        opacity: 1;
    }

    #check:checked + label svg #one {
        transform: rotate(45deg);
    }

    #check:checked + label svg #two {
        transform: rotate(-45deg);
    }

    #check:checked + label ~ article {
        z-index: -1;
        transform: translateX(25vw) scale(0.7);
        border-radius: 0.25em;
    }

#leftmenuinner {
    position: fixed;
    top: 0;
    padding-top: 80px;
    padding-bottom: 90px;
    height: 70%;
}

#leftmenuinnerinner {
    height: 100%;
    overflow-y: auto;
    padding-top: 0.5em;
    padding-right: 0.5em;
    padding-bottom: 50px;
    padding-left: 1em;
}

.asidePadding {
    padding: 2.5em 1em 0.25em;
    padding-top: calc(2.5em + var(--SearchboxHeight));
}

aside {
    transition: all 250ms cubic-bezier(0.06, 0.63, 0.91, 0.66);
    position: fixed;
    margin-top: 80px;
    height: 100%;
    justify-content: space-between;
    background-color: var(--col3);
    transform: translateX(-100%);
}

/*START: Telerik overwrites*/
.k-window-titlebar {
    border-bottom-style: none;
    padding: 0;
    background-color: unset;
}

.k-overlay {
    opacity: .75;
}

.k-window {
    max-width: 95%;
    max-height: 95%;
}

.k-window {
    position: fixed;
}

.k-treeview .k-treeview-leaf {
    display: inline-block;
}

.k-treeview .k-treeview-item {
    font-family: 'PT Sans Narrow', sans-serif;
    font-weight: 300;
    color: var(--col1);
    font-size: 14pt;
}
/*END: Telerik overwrites*/

/*START: Einrückungen header verschiedenen Text-Blöcke*/
.block1 {
    
}

.block2 {
    padding-left: var(--block2Padding);
}

.block3 {
    padding-left: var(--block3Padding);
}

.block4 {
    padding-left: var(--block4Padding);
}
/*END: Einrückungen header verschiedenen Text-Blöcke*/
.releasenoteInfo {
}

@media only screen and (max-width: 1300px) {
    .toggleSearchbutton button {
        left: 85%;
    }
}

@media only screen and (max-width: 600px) {
    .toggleSearchbutton button {
        left: 80%;
    }

    aside {
        width: 100%;
    }
}

@media only screen and (max-width: 450px) {
    .toggleSearchbutton button {
        left: 75%;
    }
}

.sidebar {
    height: 100%;
    position: fixed !important;
}

article .wrapper {
    margin: auto;
    padding: 2em;
    max-width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 60px;
}

/* Suchergebnisse*/
/*Paginierung*/
.suchseiten {
    margin-left: auto;
    margin-right: auto;
    margin-top: 2em;
    font-family: 'PT Sans Narrow', sans-serif;
    text-align: center;
}

    .suchseiten td {
        padding: 1.5em;
    }

        .suchseiten td:hover {
            background-color: #ddd;
            cursor: pointer;
        }

    .suchseiten a {
        font-family: 'PT Sans Narrow', sans-serif;
        text-align: center;
        font-weight: 400;
        color: var(--col2);
    }

.selectedPageItem {
    color: var(--GETECO);
    font-weight: 900;
    font-size: 1.4em;
    vertical-align: middle;
}

.suchergebnis {
    font-weight: 100;
    width: 800px;
    margin: 0.3em 0 0.5em 0;
    color: #006C8C;
}

    .suchergebnis a {
        color: #006C8C;
        cursor: pointer;
    }

        .suchergebnis a:hover {
            color: #006C8C;            
        }


#main {
    position: absolute;
    background-color: var(--col3);
    width: 100%;
}

#main-search {
    position: absolute;
    margin-top: 80px;
    background-color: var(--col3);
    width: 100%;
}

.result {
    color: var(--programmfarbe);
    font-weight: 500;
}

.button:hover {
    border-radius: 4px;
    box-shadow: 7px 7px 7px #d6d6d6, -6px -6px 5px #ffffff;
}

.activeButton {
    border-radius: 4px;
    box-shadow: inset 7px 7px 7px #d6d6d6, inset -6px -6px 5px #ffffff;
}

/* Style the tab */
#centertab {
    margin: auto;
}

#search {
    margin: auto;
    width: 380px;
}

/* Style the buttons inside the tab */

.tab button {
    background: none;
    float: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding-left: 0;
    padding-right: .5em;
    font-family: 'PT Sans Narrow', sans-serif;
    font-weight: 100;
    font-size: 14pt;
    border-radius: 4px;
}

    /* Create an active/current tablink class */
    .tab button.active {
        background: none;
    }

/* Style the tab content */
.tabcontent {
    display: block;
    padding: 100px 0 0 200px;
    padding-top: calc(100px + var(--SearchboxHeight));
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
    max-width: 800px;
    margin-bottom: 3em;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

    border-top: none;
}

a:link {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:active {
    text-decoration: none;
}

.button:hover {
    border-radius: 4px;
    box-shadow: 6px 6px 5px #d6d6d6, -6px -6px 5px #ffffff;
}

.button:active {
    border-radius: 4px;
    background: #ffffff;
    box-shadow: inset 6px 6px 5px #d6d6d6, inset -6px -6px 5px #ffffff;
}

.tablinks {
    border-radius: 4px;
}
.tablinks :hover {
    border-radius: 4px;
    box-shadow: inset 7px 7px 18px #b7b7b7, inset -7px -7px 18px #ffffff;
}

.button {
    width: 128px;
    height: 128px;
    margin: 2em auto 3em;
    box-shadow: 7px 7px 18px #b7b7b7, -7px -7px 18px #ffffff;
    border-radius: 18px;
    position: relative;
    z-index: 0;
    cursor: pointer;
    float: unset;
}


.searchresultInfoContainer {
    display: flex;
    margin-top: 2em;
}
    .searchresultInfoContainer .icon {
        width: 26px; /* Größe des Icons */
        height: 26px;
        margin-right: 5px; /* Abstand zum Text */
    }

    .searchresultInfoContainer .infoText {
        height: 20px;
        font-weight: 400;
        font-size: 13pt;
        width: 800px;
    }

.headline {
    font-size: 10pt;
}

.parallax {
    /* Set a specific height */
    min-height: 22rem;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.button-large:hover {
    box-shadow: inset 7px 7px 18px #b7b7b7, inset -7px -7px 18px #ffffff;
    border-radius: 18px;
}
/*Responsive: larger screens*/
@media screen and (min-width: 1201px) {

    .main-body {
        top: 35rem;
    }

    .tile-content {
        padding: 2em 7em;
    }


    aside,
    #sidebar,
    #leftmenuinner {
        width: 15%;
    }

    .parallax {
        min-height: 35rem;
    }
}

@media screen and (min-width: 651px) {

    .tile-rows {
        display: flex;
        flex-direction: row;
        margin-bottom: 2em;
    }

        .tile-rows > * {
            flex-basis: 100%;
        }

    .tile-content {
        padding: 2em 5em;
    }


    .content {
        margin: 0 auto;
    }

    aside,
    #sidebar,
    #leftmenuinner {
        width: 22%;
    }

    .parallax {
        min-height: 28rem;
    }
}
