
/********************************************************************* General */
#glossarHeader {
    padding: 92px 0;
}
#glossarHeader > img[src$=".svg"]{
    margin: 90 0 32px 0;
}
#glossarHeader header .subheader{
    margin: 24px auto 32px auto;
    max-width: 500px;
}
.glossarSearch{
    width: 100%;
    max-width: 500px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid #DEE2ED;
    background: #F6F7FA;
    color: #000;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 auto;
}
.glossarSearch input {
    width: 92%;
    border-radius: 8px;
    border: 0;
    padding: 8px 16px;
    background: #F6F7FA;
}
.glossarSearch input:focus,
.glossarSearch input:focus-visible {
    outline: 0;
}
.glossarSearch img[src$=".svg"] {
    max-width: 20px;
}

/********************************************************************* cat/tags */
#glossarCats .container-fixed-distance {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding: 0;
}
#content ul.glossar-cat {
    display: inline-flex;
    gap: 1rem;
    padding: 1rem;
    list-style: none;
    margin: 0;
}
#content ul.glossar-cat li {
    list-style: none;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-grow: 1;
}
.glossar-tags .tag-disabled,
#content ul.glossar-cat li > a{
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #fff;
    border-radius: 50%;
}
#content ul.glossar-cat li > a.activeCat{
    background-color: #4277FC;
}
#content .glossar-cat .tag-disabled {
    color: #ccc;
}

@media (max-width: 699px) {
    #glossarCats::before,
    #glossarCats::after {
        content: '';
        position: absolute;
        top: 47%;
        transform: translateY(-50%);
        background: #1F2E53;
        color: #4277FC;
        font-size: 2rem;
        padding: 0.5rem;
        pointer-events: none;
        z-index: 1;
    }
    #glossarCats::before {
        left: 5px;
        content: '‹';
    }
    #glossarCats::after {
        right: 5px;
        content: '›';
    }
}


/********************************************************************* Switch */
.switch {
    width: 100%;
    position: relative;
    z-index: 1;
    padding-top: 33px;
}
.sBackground {
    height: 48px;
    width: 90px;
    border-radius: 14px;
    border: 1px solid #DEE2ED;
    background: #FFF;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    right: 0;
}
/* Burger Menü Style */
.sList {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 50%;
    transform: scale(.9);
    cursor: pointer;
}
.sList span {
    display: block;
    width: 20px;
    height: 2px;
    background: #1F2E53;
    border-radius: 2px;
}
/* Fensterkachel Style */
.sDisplay {
    display: grid;
    grid-template-columns: repeat(2, 10px);
    grid-template-rows: repeat(2, 10px);
    gap: 4px;
    transform: scale(.9);
    cursor: pointer;
}
.sDisplay span {
    display: block;
    width: 10px;
    height: 10px;
    background: #1F2E53;
    border-radius: 2px;
    position: relative;
}
.sDisplay span::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #fff;
    position: absolute;
    top: 2px;
    left: 2px;
}
.sList.active span,
.sDisplay.active span {
    background: #4277FC;
}


/********************************************************************* List Kachel */
.groupedWrapper {
    padding-bottom: 96px;
}
.groupedNews header {
    display: flex;
    padding: 32px 0 16px 0;
}
.groupedNews a,
.groupedNews a:hover {
    text-decoration: none;
    color: #1F2E53;
    transition: all .2s ease;
}
.groupedNews .btn-outline-active {
    background: white;
    margin-top: 10px;
}
.groupedNews h2 {
    color: #1F2E53;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    margin: 0;
}
.groupedWrapper h3 {
    margin-bottom: 16px;
}
.groupedWrapper.list h3 {
    font-size: 16px;
    line-height: 8px;
    margin: 0;
}
.groupedNews .borderLine {
    border-bottom: 1px solid #DEE2ED;
    display: block;
    width: 100%;
    position: relative;
    bottom: 10px;
    margin: 0px 16px;
}
.tx_news_list ul.Tagsfilter {
    justify-content: center;
}
.tx_news_list ul.Tagsfilter a:hover {
    color: #fff;
    text-decoration: none;
}
#content ul.glossar-cat li > a:hover {
    background-color: #4277FC;
    text-decoration: none;
    color: #fff;
}
#content ul.glossar-cat li > a:hover .tagCount {
    visibility: visible;
    opacity: 1;
    transform: translateX(5px);
    transition-delay: 0s;
}
.glossar-list-view{
    display: flex;
    flex-wrap: wrap;
}
.glossar-article {
    max-width: 31.1%;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #DEE2ED;
    padding: 32px;
    margin: 16px;
    flex-grow: 1;
}
.glossar-article:last-child {
    flex-grow: 0;
}
.glossar-article:hover {
    border: 1px solid #4277FC;
}
.glossar-article:first-child,
.glossar-article:nth-child(3n + 1) {
    margin-left: 0;
}
.groupedNews a h3::first-letter {
    color: #4277FC;
}
.glossar-article header{
    width: 100%;
}
.glossar-article .more {
    margin-bottom: 16px;
    display: block;
}
@media (max-width: 1023px) {
    .glossar-article {
        max-width: 45%;
    }
    .glossar-article:first-child,
    .glossar-article:nth-child(4n) {
        margin-left: 16px;
    }
}
@media (max-width: 699px) {
    .glossar-article {
        width: 100%;
        max-width: 100%;
    }
}


/********************************************************************* List Liste */
.groupedWrapper.list {
    display: block;
}
.groupedWrapper.list .groupedNews {
    width: 31%;
}
.list .glossar-list-view {
    display: block;
}
.list .glossar-article {
    width: 100%;
    max-width: unset;
    border-radius: 0;
    background-color: unset;
    border: 0;
    padding: 8px 0;
    margin: 0;
}
.list .glossar-article a h3 {
    margin: 0;
    font-size: 16px;
}
.list .buttonElement,
.list .teaser-text {
    display: none;
}
.list .groupedNews a h3::first-letter {
    color: #1F2E53;
}
.list .groupedNews a:hover h3,
.list .groupedNews a:hover h3::first-letter{
    color: #4277FC !important;
}
@media (max-width: 699px) {
    .groupedWrapper.list .groupedNews {
        width: 100%;
    }
    .groupedNews h2 {
        margin:0 !important;
    }
}

/********************************************************************* Detail */
.glossar-single .mainContent > div {
    margin: 24px 0;
}
.glossar-single .mainContent > div h3 {
    margin: 0 0 16px 0;
}
.glossar-single .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 31px;
}
.glossar-single .row::before,
.glossar-single .row::after  {
    content: unset;
}
.glossar-single .order-1 {
    max-width: 65%;
    width: 100%;
    order: 1;
}
.glossar-single .order-2 {
    max-width: 32%;
    width: 100%;
    order: 2;
}
@media (max-width: 1023px) {
    .glossar-single .row {
        margin-right: 0;
        margin-left: 0;
    }
    .glossar-single .flex {
        gap: 0;
    }
}
@media (max-width: 699px) {
    .glossar-single .row {
        margin-right: -15px;
        margin-left: -15px;
    }
    .glossar-single .order-1,
    .glossar-single .order-2 {
        max-width: 100%;
        width: 100%;
    }
    .glossar-single .order-1 {
        order: 2;
        padding: 0 15px;
    }
    .glossar-single .order-2 {
        order: 1;
    }
    .glossar-single .container {
        padding-top: 0;
        padding-bottom: 0;
    }
    .sideBar .box3 {
        display: none;
    }
}

.glossar-single  video{
    width: 100%;
}
.glossar-single {
    background: #F6F7FA;
}
.glossar-single .header {
    position: relative;
}
.glossar-single .header a img[src$=".svg"] {
    position: absolute;
    top: 8px;
}
.glossar-single .ce-gallery img {
    width: 100%;
    border-radius: 8px;
}
@media (max-width: 699px) {
    .glossar-single .header a img[src$=".svg"] {
        top: 2px;
    }
}
.glossar-single .header h1 {
    padding-left: 32px;
    margin: 0;
    line-height: 1 !important;
}
@media (max-width: 699px) {
    .glossar-single .header h1 {
        margin: 0  0 12px 0 !important;
    }
}
.glossar-single .teaser-text{
    padding: 32px;
    border-radius: 8px;
    background: rgba(66, 119, 252, 0.10);
    margin-bottom: 35px;
}
.glossar-single .teaser-text h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin: 0 0 16px 0 !important;
}
.glossar-single .related {
    padding: 86px 0;
    background-color: #fff;
}
.glossar-single .related-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}
@media (max-width: 699px) {
    .relatedHeader .center{
        text-align: left;
    }
    .glossar-single .related-wrap {
        display: block;
    }
}
.glossar-single .related-article {
    width: 30.7%;
    border-radius: 8px;
    border: 1px solid #DEE2ED;
    background: #F6F7FA;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.glossar-single .related-article h3 {
    margin-bottom: 32px;
}
.glossar-single .box1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 125px;
}

@media (max-width: 1023px) {
    .glossar-single .box1 {
        display: block;
        height: unset;
        padding: 15px 0;
    }
}
.glossar-single .box2 {
    margin-bottom: 24px;
}
.glossar-single .box2, .glossar-single .box3 {
    border-radius: 0;
    border: 1px solid #DEE2ED;
    padding: 16px;
    background: #FFF;
}
.glossar-single .box2 .arrowDown {
    float: right;
    opacity: 0;
}
.glossar-single .box2,
.glossar-single .box3 {
    border-radius: 8px;
    border: 1px solid #DEE2ED;
    padding: 32px;
    background: #FFF;
}
.glossar-single .box3 .h3 {
    display: block;
    margin-bottom: 24px;
}
.glossar-single .box1 .icons .Social {
    border: 0;
    background: unset;
    padding: 0;
}

@media (max-width: 699px) {
    .glossar-single .box2 .arrowDown {
        opacity: 1;
    }
    .glossar-single .box1 .icons .phone,
    .glossar-single .box1 .icons .mail {
        display: none;
    }
    .glossar-single .box1 .icons .Social {
        position: fixed;
        right: -152px;
        background-color: #4277FC;
        border-radius: 40px;
        z-index: 999;
        height: 44px;
        top: 312px;
        width: 200px;
        text-align: left;
    }
    .glossar-single .box1 .icons .Social img[src$=".svg"]{
        height: 40px;
        padding: 2px 0 0 16px;
    }
    .glossar-single .box2 {
        border-radius: 0;
        border: 1px solid #DEE2ED;
        padding: 16px;
    }
    .glossar-single .box2 .h3 {
      font-size: 14px;
    }
    .glossar-single .box2 ul {
      display: none;
    }
    .glossar-single .box2 ul.open,
    .glossar-single .box2 h3 .icon.open  {
        display: block;
        user-select: none;
    }
    .glossar-single .box2 .toggle-button {
        display: inline-block;
        cursor: pointer;
        background-color: #eee;
        padding: 5px 10px;
        border-radius: 3px;
        margin-bottom: 10px;
        user-select: none;
    }
}
.glossar-single .box1 .readTime {
    display: flex;
    align-items: center;
}
.glossar-single .box1 .phone {
    padding-right: 15px;
}
.glossar-single .box1 .mail {
    padding-right: 15px;
}
.glossar-single .header .box1 {
    height: unset;
    margin-left: 31px;
}
.glossar-single .titleLinks {
    margin-top: 24px;
    list-style: none;
}
.glossar-single .titleLinks li.isFirst a {
    font-weight: 500;
}
.glossar-single .titleLinks li.isFirst a > img[src$=".svg"] {
    position: relative;
    top: 1px;
}

@media (max-width: 1023px) {
    .glossar-single .related-article {
        width: 46.7%;
    }
}
@media (max-width: 699px) {
    .glossar-single .related-article {
        width: 100%;
        padding: 26px 24px;
        margin-bottom: 16px;
    }
}
