
._cdwAnchor{
    display: none !important;
}

.fadeOut{
    opacity: 0 !important;
    transition: opacity 0.5s !important;
    pointer-events: none !important;
}

.fadeIn{
    opacity: 1 !important;
    transition: opacity 0.5s !important;
    pointer-events: all !important;
}
    .fadeIn--delayed {
        transition: 0.5s 1s !important;
    }

.fade--delay05s{
    transition-delay: 0.5s !important;
}

.fade--delay1s{
    transition-delay: 1s !important;
}

.fade--delay2s{
    transition-delay: 2s !important;
}

.fade--delay5s{
    transition-delay: 5s !important;
}

.deaf{
    pointer-events: none !important;
}

.listening{
    pointer-events: all !important;
}

.smallFont{
    font-size: 0.8em;
}

.fullScreen{
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    padding: 0px !important;
    margin: 0px !important;
}

    /* RESCALING */

    /* @media (pointer: coarse){

        .smallFont{
            font-size: 1em;
        }
    } */

.variableSpan{
    margin: 0px 0.25em;
}

.bodyBGoff{
    background-image: none;
}

.animated{
    transition:
        transform 0.15s ease,
        max-height 0.15s ease,
        opacity 0.15s ease,
        margin-top 0.15s ease;
}

.animated--open{
    max-height: 100em;
    opacity: 1;
    pointer-events: all;
}

.animated--closed{
    max-height: 0em;
    opacity: 0;
    pointer-events: none;
}

/* POPUPS ------------------------------------------------------------------------------------------------------------------------*/


.PopUpMemorize{
    margin: 0px ;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    --iconSize: calc(var(--lineHeight) * 0.95em);
    background-color: rgba(var(--colBG),0.95);
    -moz-box-shadow: 0.1em 0.1em 0.3em rgba(var(--boxShadow));
    -webkit-box-shadow: 0.1em 0.1em 0.3em rgba(var(--boxShadow));
    box-shadow: 0.1em 0.1em 0.3em rgba(var(--boxShadow));
    border: solid transparent;
    border-color: rgba(var(--boxCorner));
    border-width: 1px 0 0 1px;
    border-radius: 0.5em;
}


/*navi ------------------------------------------------------------------------------------------------------------------------*/



.UIMain{
    background-color: rgb(var(--colUIBack03));
}

    .logoHeader{
        position: absolute;
        bottom: 1em;
        margin-left: -0.5em;
        padding: 0px 1em;
        display: block;
        width: var(--naviSize);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        visibility: visible;
    }

        .logoHeader--normal{
            display: none;
        }

        .logoHeader--signet{
            display: block;
            width: calc(var(--naviSize) * 0.7);
        }

.line{
    width: 100%;
    height: 1px;
    background-color: rgb(var(--colUIText04));
    margin: 0.125em 0px;
}

    .line--v{
        width: 1px;
        height: 100%;
        margin:  0px 0.125em;
    }

.line--bottomDashed,
.line--bottomDotted{
    overflow: hidden;
    position: relative;
    padding-bottom: 0.1em;
}


.line--topDashed,
.line--topDotted{
    overflow: hidden;
    position: relative;
    padding-top: 0.5em;
}

    .line--bottomDashed:before{
        content: "";
        position: absolute;
        border-bottom: 3px dashed rgb(var(--colUIText04));
        bottom: -2px;
        left: 0px;
        right: 0px;
    }

    .line--topDashed:before{
        content: "";
        position: absolute;
        border-top: 3px dashed rgb(var(--colUIText04));
        top: -2px;
        left: 0px;
        right: 0px;
    }

    .line--bottomDotted:before{
        content: "";
        position: absolute;
        border-bottom: 3px dotted rgb(var(--colUIText04));
        bottom: -2px;
        left: 0px;
        right: 0px;
    }

    .line--topDotted:before{
        content: "";
        position: absolute;
        border-top: 3px dotted rgb(var(--colUIText04));
        top: -2px;
        left: 0px;
        right: 0px;
    }






/* CONTENT & DRAGBOX ------------------------------------------------------------------------------------------------------------------------*/


#content{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
}

.dragBox{
    position: relative;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    transition: margin 0.35s;
}

    .hasTouch .dragBox{
        background-color: rgba(var(--colBG),1);
    }


       .dragBox__sliderBox {
        border-radius: 2px;
        width: 2em;
        height: 2em;
    }

        .dragBox__sliderBox_horizontal {
            cursor: e-resize;

        }
        .dragBox__sliderBox_vertical {
            cursor: n-resize;
    }


    .content__menuBig--unfocused {
        margin-left: -100%;
    }

    .content__page--unfocused {
        margin-right: -100%;
    }

    .content__page--unfocused>.dragBox__view+.dragBox__control{
        opacity: 0;
        transition: opacity 0.2s;
        pointer-events: none;
    }

    .dragBox__control{
        opacity: 1;
        transition: opacity 0.3s ease-in 0.8s;
    }

    .dragBox>.dragBox__control>.dragBox__sliderBox {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .dragBox__sliderBar {
        background-color: rgba(var(--colUIText03),0.6);
        opacity:0.5;
        width: 5px;
        height: 5px;
        border-radius: 2px;
        transition: opacity 0.5s;
    }

        .noTouch .dragBox__sliderBox:hover>.dragBox__sliderBar {
            opacity:1;
        }

        .dragBox__sliderBar_vertical {
            min-height: 4em;
            right: 0.4em;
        }
        .dragBox__sliderBar_horizontal {
            min-width: 4em;
            bottom: 0.4em;

        }

    .dragBox>.dragBox__view{
        opacity: 1;
        transform-origin: left;
        transition: opacity 0.5s ease 0s, filter 0.5s ease 0s, transform 0.35s 0s !important;
    }


    /*.dragBox>.dragBox__view:not(.dragBox__view--inactive){
        transform: scale(1);
        filter: blur(0px);
    }*/

    .noTouch .dragBox.content__page--unfocused>.dragBox__view:not(.dragBox__view--inactive){
        filter: blur(10px);
        opacity: 0.5;
        transform: scale(0.75) perspective(200em) rotateY(60deg);
        transform-origin: left;
    }

    .dragBox.content__page--unfocused>.dragBox__view.dragBox__view--inactive{
        opacity: 0;
        transform: translateX(-100%);
        transform-origin: left;
    }

.dragBox__container{
    width: max-content;
}

.dragBox__TAMapBoxed>.dragBox__view>.dragBox__container,
.dragBox__Home>.dragBox__view>.dragBox__container{
    height: 100%;
    width: 100%;
}

.dragBox__container.dragStart{
    cursor: grab;
}

.dragBox__container.dragStart.drag_active,
.dragBox__container.dragStart .drag_active{
    cursor: grab;
}

/* breadcrumb ---------------------------------------------------------------------------------------------------------------------------------*/

.breadcrumb{
    list-style: none;
    padding: 0.25em;
    margin: 0px var(--naviSize);
    margin: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: calc(var(--naviSize) / 2);
    max-width: calc(100% - 1.25em);
    pointer-events: all;
    position: absolute;
    top: 0.5em;
    left: 0.5em;
    background: linear-gradient(90deg, rgba(var(--colBG),0.7) 0%, rgba(var(--colBG),1) 50%, rgba(var(--colBG),0.8) 70%, rgba(var(--colBG),0.2) 100%);
    border-radius: 0.4em;
}



.breadcrumb__button{
    white-space: nowrap;
    overflow: hidden;
    height: 100%;
    font-size: 0.8em;
    color: rgba(var(--colUIText03),0.65);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    max-width: fit-content;
    min-width: 3.25em;
    width: 100%;
    padding-left: 0.4em;
    margin-right: 0.25em;
    border-radius: 2em 0px 0px 2em;
    background-color: rgb(var(--colUIBack03));
    /* mask-image: url(breadcrumbMask.svg);
    -webkit-mask-image: url(breadcrumbMask.svg); */
}

    .noTouch .breadcrumb__button{
        max-width: 25em;
        width: fit-content;
    }

    .breadcrumb__button--changed{
        animation: breadcrumbButtonChange 4s ease 0s 2;
    }

    @keyframes breadcrumbButtonChange {
        70%   {color: rgb(var(--colUIText03)); background-color: rgb(var(--colUIBack03));}
        85%   {color: rgb(var(--colUIText05)); background-color: rgb(var(--colAccent01));}
        100%  {color: rgb(var(--colUIText03)); background-color: rgb(var(--colUIBack03));}
    }



.breadcrumb__button:last-of-type{
    border-radius: 5em;
    padding-right: 0.6em;
}

.breadcrumb__button:not(:last-of-type):after{
    background: rgb(var(--colBG));
    border-bottom: 1em solid transparent;
    border-left: 1em solid rgb(var(--colUIBack03));
    border-top: 1em solid transparent;
    content: '';
}

.noTouch .breadcrumb__button:not(.breadcrumb__button--selected):hover{
    color: rgb(var(--colUIText01));
    background-color: rgb(var(--colUIBack02));
    cursor: pointer;
}

.noTouch .breadcrumb__button:not(.breadcrumb__button--selected):hover:after{
    border-left-color: rgb(var(--colUIBack02));
}

.breadcrumb__button.breadcrumb__button--selected{
    background-color: rgb(var(--colUIText03));
    color: rgb(var(--colUIText04));
    cursor: default;
}

.breadcrumb__button.breadcrumb__button--selected:not(:last-of-type):after{
    border-left-color: rgb(var(--colUIText03));
}

.noTouch .breadcrumb__button:hover{
    overflow: visible;
    max-width: fit-content;
    width: 100%;
}

.breadcrumb__button>.breadcrumb__icon{
    stroke-width: 0px;
    fill: rgb(var(--colNormalIcon));
    width: calc(var(--ButtonIconSize)* 0.75);
    height: calc(var(--ButtonIconSize)* 0.75);
    flex-shrink: 0;
    margin-right: 0.5em;
}

.breadcrumb__button.breadcrumb__button--selected>.breadcrumb__icon>*{
    fill: rgb(var(--colUIText04));
}

.noTouch .breadcrumb__button:hover>.breadcrumb__icon{
    fill: rgb(var(--colUIText01));
}

.breadcrumb__button>.breadcrumb__text{
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
}


/* Menu-Listen/Einträge ------------------------------------------------------------------------------------------------------------------------*/

.entryList{
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-shrink: 0;
}

    .entryList--narrow{
        max-width: 25em;
    }

    .entryList--medium{
        max-width: 35em;
    }

    .entryList--wide{
        max-width: 60em;
    }

.entryList__title{
    display: flex;
    position: sticky;
    z-index: 1;
    top: 0px;
    background-image: linear-gradient(90deg, rgba(var(--colUIBack03),0.9) 90%, rgba(var(--colUIBack03),1) 99%);
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-bottom: 0.5em;
    border-bottom: 1px solid rgb(var(--colUIText04));
    margin-bottom: 1em;
}
    .entryList__titleText{
        width: 100%;
        text-align: center;
        font-size: 0.85em;
        margin: 0px;
        color: rgb(var(--colAccent01));
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .entryList__subMenu{
        position: absolute;
        top: 0px;
        right: 2em;
        z-index: 1;
        background-color: rgba(var(--colBG),0.9);
        -moz-box-shadow: 0.1em 0.1em 0.3em rgba(var(--boxShadow));
        -webkit-box-shadow: 0.1em 0.1em 0.3em rgba(var(--boxShadow));
        box-shadow: 0.1em 0.1em 0.3em rgba(var(--boxShadow));
        border: solid transparent;
        border-color: rgba(var(--boxCorner));
        border-width: 1px 0 0 1px;
        border-radius: 0.5em;
        padding: 0px 0.5em;
        font-size: 0.9em;
    }

        .noTouch .entryList__subMenu>*:hover{
            cursor: pointer;
            color: rgb(var(--colUIText01));
        }



.entryBlock{
    opacity: 1;
    /* transform: scaleY(1); */
    max-height: 100%;
    transition: opacity 0.3s ease, transform 0.1s ease, max-height 0.3s ease, padding 0.3s ease;
}

.entry{
    line-height: unset;
    /* transform: scaleY(1); */
    color: rgb(var(--colUIText03));
    padding: 0.35em 0px;
    /* margin-right: 1em; */
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.1s ease, max-height 0.3s ease, padding 0.3s ease;
}

    .entryRow>.entry:not(:first-of-type){
        margin-left: 1em;
    }

    .entry--fadedClose,
    .entry--fadedClose.entry,
    .entry--fadedClose>.entry{
        transform: scaleY(0);
        max-height: 0px;
        padding: 0em;
        opacity: 0;
        margin: 0em;
        transition: opacity 0.3s ease , transform 0.3s ease 0.15s, max-height 0.3s ease, padding 0.3s ease 0.15s;
    }


    .entry--fadedClose>hr{
        margin: 0em;
        transition: margin 0.3s ease;
    }

    .entry--height1{
        padding: 0px;
    }

    .entry--height2{
        padding: 0.25em 0px;
    }


.entry__label{
    --entryLabelDistance: 0.5em;
    align-items: center;
    /* width: 100%;         */
    margin: 0px;
    text-align: start;
    margin: 0px var(--entryLabelDistance);

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

    .customCheckbox>span.entry__label,
    .button--simple + span.entry__label{
        --entryLabelDistance: 0.5em;
    }

    .entry__label::first-letter{
        text-transform: capitalize;
    }

    .button__mainMenu>.menu__entryLabel{
        display: none;
    }

    .menu__sub>.button__mainMenu>.menu__entryLabel{
        white-space: nowrap;
    }


.entryHeadline{
    color: rgb(var(--colAccent02));
    margin-top: 0px;
    margin-bottom: 0.25em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.entryRow{
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-flow: row wrap;
    -webkit-hyphens: auto;
    hyphens: none;
}

    .entryRow--topalign{
        align-items: flex-start;
    }

    .entryRow--departed{
        justify-content: space-between;
        flex-flow: nowrap;
    }

    .entryRow--evenly{
        justify-content: space-around;
        flex-flow: nowrap;
    }

    .entryRow--noWrap{
        flex-flow: unset;
    }

.entryColumn{
    display: flex;
    flex-flow: column wrap;
    flex-direction: column;
}

.entryInput{
    resize: vertical;
    max-height: 100%;
    min-height: 2.3em;
    padding: 0.5em;
    /* overflow: hidden; */
    -webkit-hyphens: auto;
    hyphens: auto;
    overflow-wrap: anywhere;
    }

    .entryInput--small{
        margin: 0px;
        height: 2em;
    }

    textarea.entryInput {
        margin-bottom: -0.25em;
        height: 2.3em;
        min-height: 2.3em;
        padding: 0.5em;
        overflow: hidden;
    }

    .entryInput--warn00{
        border: 1px solid rgb(var(--colPro02));
    }

    .entryInput--warn01,
    .entryInput--changed{
        border: 1px solid rgb(var(--colAttention01));
    }

    .entryInput--warn02{
        border: 1px solid rgb(var(--colContra02));
    }


.entryLine{
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed rgb(var(--colUIText04));
}

    .entryLine--v{
        width: 1px;
        height: var(--ButtonIconSize);
        margin: 0px 0.5em;
        border: 0px;
        border-right: 1px dashed rgb(var(--colUIText04));
    }

.entryText{
    margin: 0px 0px 1em 0px;
    -webkit-touch-callout: default;
    /* column-width: 25em;
    column-count: 2;
    column-gap: 3em; */
}

    .entryText>p{
        margin-bottom: 1em;
    }

    .inputAccount{
        margin-bottom: 0.5em;
    }

    /* ----- User Alias & Colors  ---------------------------------------*/

    .changeLook__colors{
        display: flex;
        flex-wrap: wrap;
    }

    .button.changeLook__colorButton{
        width: 2em;
        height: 2em;
        margin: 0.4em;
        position: relative;
        transition: transform 0.15s ease;
    }

    .button.changeLook__colorButton:first-of-type{
        border: 2px solid rgb(var(--colUIText04));
    }

    .noTouch .button.changeLook__colorButton:hover{
        filter: brightness(1.2)
    }

    .button.changeLook__colorButton--active:after{
        content: "✓";
        font-weight: 600;
        position: absolute;
        color: rgb(var(--colUIText01));
    }

    .button.changeLook__colorButton--chosen{
        /* border: 2px solid rgb(var(--colUIText01)); */
        transform: scale(1.35);
    }

    input.inputAccount.alias:not(:focus){
        color: rgb(var(--colUIText04));
        font-style: italic;
    }


/* --- Admin Center Lösungsvariantenerstellung ------------------------------------------------------------------------------------------------------------- */

.value{
    border-collapse: collapse;
}

.value__table{
    display: table;
    width: 100%;
}

.value__text,
.value__percent{
    font-size: 0.8em;
}

.value__percent{
    text-align: center;
}

.value__row{
    padding: 0.25em;
    border-radius: 0.5em;
    display: table-row-group;
    width: 100%;}

.value__row--bordered{
    border-bottom: 1px dashed rgb(var(--colUIText04));
}

.value__cell {
    display: table-cell;
    vertical-align: middle;
    padding: 0.125em;
}

.value__cell--bordered {
    border-left: 1px solid rgb(var(--colUIText04));
}

.value__cell>.value__button {
    padding: 0.25em;
    margin: 0px;
}

.value__cell--active>.value__button>.button__icon {
    fill: rgb(var(--colUIText03));
}

.value__pro.value__cell--active>.value__button>.button__icon {
    fill: rgb(var(--colPro01));
}

.value__contra.value__cell--active>.value__button>.button__icon {
    fill: rgb(var(--colContra01));
}

.value__attention.value__cell--active>.value__button>.button__icon {
    fill: rgb(var(--colAttention01));
}

.value__button>.button__icon {
    stroke: rgb(var(--colUIText03));
    width: 1.2em;
    height: 1.2em;
}

.value__pro>.value__button>.button__icon {
    stroke: rgb(var(--colPro01));
}

.value__contra>.value__button>.button__icon {
    stroke: rgb(var(--colContra01));
}

.value__attention>.value__button>.button__icon {
    stroke: rgb(var(--colAttention01));
}



/* ---Kommentarfunktion ------------------------------------------------------------------------------------------------------------- */

#addNewFeedback>.entryHeadline{
    margin-bottom: 1em;
}

.chat{
    margin-top: 0px;
}

/* .chat__comment{
    margin-bottom: 1em;
} */

.chat__input{
    margin-bottom: 0.5em;
}

.chat__answer + .chat__input{
    padding-left: 1em;
}

.chat__inputNote>*{
    /* font-size: 0.8em; */
    color: rgb(var(--colAttention01));
    margin-bottom: 0.5em;
}

.chat__controlsRow{
    display: flex;
    justify-content: space-between;
    /* font-size: 0.9em; */
}

    .chat__opener:after{
        --arrowSize: 0.5em;
        content: "";
        width: 0px;
        height: 0px;
        border: 0px solid transparent;
        border-top: var(--arrowSize) solid rgb(var(--colUIText03));
        border-left: var(--arrowSize) solid transparent;
        border-right: var(--arrowSize) solid transparent;
        transform: rotate(0deg);
        margin-left: 0.25em;
        transition: transform 0.15s ease;
    }

        .chat__opener.button--attention:after{
            transform: rotate(-90deg);
        }

        .chat__controls.inactive>.chat__opener:after{
            display: none;
        }

        .chat__opener.button--attention:after{
            border-top: var(--arrowSize) solid rgb(var(--colUIText01));
        }

.chat__controls{
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    overflow: hidden;
    margin-bottom: 0.5em;
}

    .chat__controls--withText{
        flex-shrink: 1;
    }

    .chat__controls>.chat__button{
        margin: 0.25em 0.125em 0px 0.125em;
        padding: 0.5em;
        border: none;
        font-size: 0.9em;
        overflow: hidden;
        white-space: nowrap;
    }

    .chat__controls>.chat__button>.chat__buttonSpan{
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .chat__controls>.chat__button--abort {
        margin-left: 0.5em;
    }

.SVGIcon.chat__icon{
    width: 1.8em;
    height: 1.8em;
}

.chat__inputForm{
    margin-bottom: 0px;
    height: 5em;
    min-height: 2.2em;
    }

    .chat__inputForm.chat__inputForm--warning{
        border: 1px solid rgb(var(--colAttention01));
        height: 4.5em;
    }


.chat__responses{
    border-left: solid 1px rgb(var(--colUIText04));
    margin-left: 1.6em;
    max-height: 100em;
    /* margin-top: 1em; */
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
    transition:
        transform 0.15s ease,
        max-height 0.15s ease,
        opacity 0.15s ease,
        margin-top 0.15s ease;
}

.chat__responses.closed{
        transform: scaleY(0);
        max-height: 0em;
        opacity: 0;
        margin-top: 0em;
    }


    .chat__answer{
        padding-left: 1em;
        margin-top: 0px;
        margin-bottom: 0.25em;
    }

    .chat__answer>hr{
        display: none;
    }

    .chat__info{
        font-size: 0.8em;
        justify-content: space-between;
        display: flex;
        margin-bottom: 0.25em;
        margin-top: 0.75em;
    }

        .chat__infoAutor{
            color: rgba(var(--colUIText03),0.5);
            font-weight: 400;
            overflow: hidden;
            white-space: nowrap;
            margin-right: 0.5em;
            text-overflow: ellipsis;
        }

        .chat__infoAutor.admin{
            color: rgb(var(--colAccent01));
        }
        .chat__infoAutor.admin:before{
            content: "✦ ";
        }

        /* .chat__infoAutor.own:before{
            content: "👤";
        } */

        .chat__infoAutor.own{
            border: 1px solid rgba(var(--colUIText03),0.3);
            padding: 0px 0.55em;
            border-radius: 1.5em;
        }

        .chat__infoDate{
            color: rgba(var(--colUIText03),0.5);
            min-width: max-content;
        }

    .chat__text{
        /* font-size: 0.9em; */
        line-height: var(--lineHeight);
        margin-bottom: 0.25em;
        background: rgba(var(--colUIBack04),0.7);
        padding: 0.25em 0.5em;
        border-radius: 0.5em;
        }

    .hasTouch .chat__text{
        font-size: 1em;
    }

        .chat__text--reported{
            border: 1px solid rgb(var(--colAttention01));
            /* color: rgb(var(--colAttention01)); */
        }

        .chat__text--adress{
            font-weight: 500;
            color: rgba(var(--colUIText03),0.5);
        }

    .chat__text--deleted{
        background: rgba(var(--colUIBack04),0.4);
    }

    .chat__textDeleted,
    .chat__textEdited{
        color: rgb(var(--colUIText04));
        font-style: italic;
    }

    .chat__text>quote:before,
    .chat__text>quote:after{
        content: "\0022";
    }


/*SIDETOOLS -----------------------------------------------------------------------------------------------------------------------------*/

.sideTools{
    /* position: absolute; */
    display: flex;
    justify-content: flex-end;
    right: 0px;
    height: 100%;
    max-height: 10000px;
    max-width: 10000px;
    opacity: 0;
}

.sideTools__mask{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.sideTools.sideTools--hidden{
    opacity: 0;
    max-width: 0px;
    max-height: 0px;
    overflow: hidden;
    pointer-events: none;
}

.sideTools:not(.sideTools--hidden){
    opacity: 1;
    max-height: 10000px;
    max-width: 10000px;
}

.sideTools__sideBarBack{
    background-color: rgb(var(--colUIBack03));
    height: 100%;
    width: var(--naviSize);
    position: absolute;
}

.sideTools__sideBarBack--dark{
    filter: brightness(0.9);
}

.sideTools--AC{
    position: relative;
}

/*sideBar -----------------------------------------------------------------------------------------------------------------------------*/
.sideBar{
    /*position:absolute;
    right: 0px;*/
    z-index: 3;
    height: 100%;
    width: var(--naviSize);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex-shrink: 0;
    order: 3;
}

.sideBar__devider{
    width: 100%;
    height: 0.25em;
    -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.25) inset;
    -moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.25) inset;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.25) inset;
    background-color: transparent;
}

    .sideBar.fullScreen{
        display: none;
    }


/* Tools box -------------------------------------------------------------------------------------------------------------------- */

.toolBox{
    /*width: 0px;
    height: 100%;*/
    display: flex;
    width: 0;
    background-image: linear-gradient(90deg, rgba(var(--colUIBack03),0.95) 90%, rgba(var(--colUIBack03),1) 99%);
    position: relative;
    padding: 0.75em 0.5em 1.3em 0em;
    -webkit-box-shadow: 3px 0px 2px rgba(0,0,0,0.3);
    -moz-box-shadow: 3px 0px 2px rgba(0,0,0,0.3);
    box-shadow: 3px 0px 2px rgba(0,0,0,0.3);
    z-index: 2;
    order: 2;
    overflow: hidden;
    flex-shrink: 0;
}

    .button.toolBox__closeX{
        position: absolute;
        top: 0.5em;
        left: 0.5em;
        z-index: 101;
    }

    .button.toolBox__simpleResizer{
        position: absolute;
        top: 50%;
        left: 0.5em;
        z-index: 2;
        padding: 0px;
        transform: rotate(-90deg);
    }

        .button.toolBox__simpleResizer--reversed{
            transform: rotate(-90deg) scaleY(-1);
        }

    .toolBox--large{
        width: 40em;
    }

/* Player ------------------------------------------------------------------------------------------------------------------------*/

#TAInfoPlayer{
    display: flex;
    height: 100%;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    justify-content: center;
    align-items: center;
}


/* TAInfo ------------------------------------------------------------------------------------------------------------------------*/

.TAInfo{
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0px 0.5em 0px 2.75em;
    flex-direction: column;
    align-items: flex-start;
    overflow-x: hidden;
    overflow: auto;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

    .TAInfo--player{
        margin: 0px;
        justify-content: center;
        overflow: hidden;
    }

    .TAInfo--AC{
        min-width: unset;
        padding: 0px 1em 0px 2.5em;
        transition:
            width 0.3s ease;
    }


/* RESIZER ------------------------------------------------------------------------------------------------------------------------*/

.resizer{
    position: absolute;
    width: var(--resizerSize);
    height: 100%;
    left: 0px;
    bottom: 0px;
    cursor: ew-resize !important;
    z-index: 100;
}

.resizer::after{
    content: "";
    display: block;
    position: absolute;
    height: 2em;
    top: calc(50% - 1em);
    left: calc(var(--resizerSize) / 3.5);
    width: 0.3em;
    border-left: calc(var(--strokeWidth) * 4) solid rgb(var(--colUIText04));
    border-right: calc(var(--strokeWidth) * 4) solid rgb(var(--colUIText04));
}


/* EXTRAS ------------------------------------------------------------------------------------------------------------------------ */

#extras{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    order: 1;
}

/*------------------------------------------ Color Palette in TAInfo behaviour exception ---------------------------*/



.itemsRotated.itemBlock>.innerIcons>.zustimmung>button>.palette__iconLine,
.itemsRotated.itemBlock>.innerIcons>.relevanz>button>.palette__iconLine,
.itemsRotated.itemBlock>.button>.palette__iconLine{
    transform: rotate(90deg);
    bottom: calc(var(--ButtonIconSize) + var(--ButtonPadding) + 0.55em);
    left: unset;
    z-index: -10;

}

.itemsRotated.itemBlock{
    flex-direction: column-reverse;
    /* flex-grow: 0!important; */
}


.itemsRotated.itemBlock>.innerIcons{
    flex-direction: row;
    padding: 0px;
}

.itemsRotated.itemBlock>.innerIcons>.relevanz,
.itemsRotated.itemBlock>.innerIcons>.zustimmung{
    flex-direction: column-reverse;
}






/*Icons, Buttons & Logos*/

.SVGIcon {
    /*visibility: visible;*/
    pointer-events: none;
    opacity: 1;
    transition: opacity 1s;
    /* --strokeWidth: 0.03em; */
    fill: none;
    -moz-stroke: rgb(var(--colUIText03));
    stroke: rgb(var(--colUIText03));
    -moz-stroke-width: var(--strokeWidth);
    stroke-width: var(--strokeWidth);
    -moz-stroke-linecap: round;
    stroke-linecap: round;
    -moz-stroke-linejoin: round;
    stroke-linejoin: round;
}

.LogoTypeColor, .TAcolor1{
    fill: rgb(var(--colUIText03));
}

/* ---------------- Timer / Clock -------------------- */


.timer{
    /*display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;*/
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
    .timer__number{
        /*-webkit-box-align: end;
        align-items: flex-end;*/
        padding: 0.5em;
        -webkit-animation: fadeout 2s 1879s linear forwards;
        animation: fadeout 2s 1879s linear forwards;
        box-shadow: inset 0 0 3px rgba(var(--colUIText01),0.2);
        border-radius: 0.5em;
        margin-right: 0.5rem;
        overflow: hidden;
    }

    /*.timer__digitList{
        webkit-animation: mintens-jaggy 6000s cubic-bezier(1, 0.001, 1, 0.001) forwards;
        animation: mintens-jaggy 6000s cubic-bezier(1, 0.001, 1, 0.001) forwards;
        -webkit-animation-delay: -4719s;
        animation-delay: -4719s;
        font-size: 2em;
        line-height: 1.5em;
        height: 2em;
        overflow: hidden;
    }*/

        .timer__digit{
            overflow: hidden;
            margin: 0.3em 0.3em;
        }

        .timer__seperator{
            font-size: 1em;
            line-height: 1em;
            margin-right: 0.5rem;
        }


/* ----------------- Selection Menue PopUp -----------*/

.quickPopUp{
    display: flex;
    position: fixed;
    max-width: 12em;
    margin-top: -3.5em;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
    background-color: rgb(var(--colUIBack04));
    -webkit-box-shadow: 0.1em 0.1em 0.2em rgba(var(--boxShadow));
    -moz-box-shadow: 0.1em 0.1em 0.2em rgba(var(--boxShadow));
    box-shadow: 0.1em 0.1em 0.2em rgba(var(--boxShadow));
    border-radius: 0.5em;
    border: solid transparent;
    border-color: rgb(var(--colUIText04));
    border-width: 1px 0 0 1px;
    color: rgb(var(--colUIText03));
    z-index: 1000;
    transition: opactiy 1s ease;
}

    .quickPopUp__button{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.25em;
    }

    .noTouch .quickPopUp__button:hover{
        background-color: rgb(var(--colUIBack02));
    }

    .quickPopUp__buttonIcon{
        --strokeWidth: 0.03em;
        stroke: rgb(var(--colUIText03));
        height: 1.8em;
        width: 2em;
        margin: 0.25em;
    }

/* Ukraine */

#makelovenotwar{
    margin-bottom: 0.5em;
    cursor: pointer;
}

.schleife_ukraine{
    width: 3em;
    transition: transform 0.3s ease;
    animation: ukraine 5s 4 ease-in-out;
}
    @keyframes ukraine {
        0%   { transform: scale(1); }
        80% { transform: scale(1); }
        90%   { transform: scale(1.1); }
        100%   { transform: scale(1); }
    }

    .noTouch .schleife_ukraine:hover{
        transform: scale(1.1);

    }


/* FIRSTNODE */

.firstNodePic{
    width: 100%;
    max-width: 85em;
    min-width: 20em;
    margin: 1em 0px;
}

.firstNodePic__lines{
    stroke: rgb(var(--colNormalLine));
    stroke-width: 1px;
    fill: none;
}

.firstNodePic__pics{
    fill: rgb(var(--colNormalIcon));
}

.firstNodePic__text{
    fill: rgb(var(--colUIText03));
}

.firstNodePic__clicker{
    transform-origin: 262.5px 130.5px;
    transform:translate(150px,150px);
    animation: moveNclick 5s ease-in-out infinite;
}

@keyframes moveNclick {
    0%, 15%{transform:translate(150px,150px) scale(1)}
    25%, 40%{transform:translate(0%,0%) scale(1)}
    41% {transform:translate(0%,0%) scale(0.5)}
    43%, 55% {transform:translate(0%,0%) scale(1)}
    65%, 100%{transform:translate(150px,150px)}
}


