.sidebar_Setup {

    background-color: var(--greySP);
    height: 100%;
    width: 170px;
    font-family: 'Frutiger LT 47 Light Cond';
    font-size: 18px;
    letter-spacing: 0.3px;

}

.sidebar_Setup>div {
    height: 50px;
    padding-left: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px grey solid;
    margin-left: 10px;
    margin-right: 10px;
}

.sidebar_Setup>div:first-of-type {
    padding-bottom: 20px;
}

.sidebar_Setup>div:hover:not(:first-of-type) {

    font-weight: bolder;
    font-size: larger;
    cursor: pointer;
}

.sidebar_Setup_aktive {
    background-color: var(--lightgreySP);
    border-right: 5px var(--digitalBlau) solid;
}

@media (max-width: 800px) {
    .sidebarklein {
        display: block !important;
    }

    .sidebargross {
        display: none;
    }
}

.sidebarklein {
    font-size: 1.5em;
    display: none;
    max-width: 65px;
}

.sidebarklein div:first-child {
    width: 40px;
}


.setupMenuZeile select {
    width: 120px;
}

.setupMenuZeile img {
    width: 25px;
    height: 25px;
}

.setupContent {
    height: 100%;
    flex-grow: 2;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 80px;
}

.anzahlZeileTabelle {
    height: 25px;
    /* width: 100%; */
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    font-weight: bold;
    border-bottom: 1px var(--greySP) solid;
    border-top: 1px var(--greySP) solid;
    font-size: larger;
}

.setupContent h1 {
    font-size: 3vh;
    margin-block-end: 20px;
    margin-block-start: 20px;
}


.tableSetup {
    /* width: 80%; */
    /* height: 100px; */
    flex-grow: 2;
    margin-bottom: 20px;
}

.tableSetup>table {
    /* border: 1px black solid; */
    width: 100%;

}

.tableSetup th {
    text-align: left;
    padding: 5px 0 5px 0;
    background-color: var(--greySP);
    cursor: pointer;
}

.descSort::after {
    content: " ▲";
    margin-left: 5px;
    white-space: nowrap;
}

.ascSort::after {
    content: " ▼";
    margin-left: 5px;
    white-space: nowrap;
}

.tableSetup th:first-of-type,
.tableSetup td:first-of-type {
    padding-left: 10px;
}

.tableSetup th:last-of-type,
.tableSetup td:last-of-type {
    padding-right: 10px;
}

.tableSetup td {
    border-bottom: 1px var(--greySP) solid;
    text-align: left;
    padding: 5px 0 5px 0;
    cursor: pointer;
}

.tableSetup tr:nth-of-type(2n) {
    background-color: var(--lightgreySP);
}

.tableSetup tbody tr:hover {
    background-color: var(--digitalBlau);
    color: white;
}

.tableSetup th {
    min-width: 10%;
}

#tabelle_Mitglieder th:nth-of-type(n+5):not(:last-of-type) {
    width: 7%;
    text-align: center;
}

#tabelle_Mitglieder td:nth-of-type(n+5):not(:last-of-type) {
    text-align: center;
}

.tableSetup th:last-of-type {
    width: 10px;
}

.tableSetup:not(.ohneMenu) td:last-of-type {
    text-align: end;
}

.menue_projektMitglieder,
.menue_projektFormulare,
.menuBtnAdmin {
    position: absolute;
    right: 0;
}

.btnMenu_projektMitglieder,
.btnMenu {
    position: relative;
}

#btnNeuesProjekt {
    margin-right: 20px;
}

.setupContent h2 {
    font-size: 18px;
    border-bottom: 1px var(--greySP) solid;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: bolder;
    color: var(--greySP);
    padding-bottom: 5px;

}

.setupContent section {
    font-size: 16px;
    padding: 5px 0;
}

#newUser section {
    width: 100%;
}

.setupContent section label:not(.control):not(.switch) {
    min-width: 220px;
    margin-bottom: 5px;
}

.updateFormular section label:not(.control):not(.switch),
.newFormular section label:not(.control):not(.switch),
.profilFormular section label:not(.control):not(.switch){
    min-width: 250px;
    margin-bottom: 5px;
}

.updateFormular section input{
    width: 360px;
}

.setupContent section input,
.setupContent section select {
    /* width: 200px; */
    box-sizing: border-box;
}

.setupContent section input[type="radio"] {
    width: auto;
}

.setupContent section input:not(#inputMitgliederProjekt):focus,
.setupContent section textarea:focus {
    outline: none;
    border-color: var(--digitalBlau);
    border-radius: 5px;
}

.setupContent section textarea {
    resize: none;
}

#addMember,
#addImage,
#newUser,
#expiredTestphaseContainer {
    width: 100%;
    align-self: center;
    justify-content: center;
    height: auto;
}

#addMember>div,
#addImage>form {
    height: 300px;
    padding: 30px;
    width: 250px;
    border-radius: 3px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.3);
}

#newUser>div {
    padding: 30px;
    width: 350px;
    border-radius: 3px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.3);
}

#expiredTestphaseContainer>div {
    padding: 30px;
    width: 400px;
    border-radius: 3px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.3);
}

#expiredTestphaseContainer span {
    text-align: center;
    font-size: larger;
}

#addMember h3,
#newUser h3,
#addImage h3,
#expiredTestphaseContainer h3 {
    color: var(--digitalBlau);
    margin-top: 0;
}

#addMember .fehlermeldung,
#newUser .fehlermeldung {
    margin-left: 0;
    margin-top: 0px;
}

input[type="radio"]+label {
    width: auto;
    margin-left: 20px;
}

.benutzerprofil_Ueberschrift {
    font-size: 18px;
    border-bottom: 1px var(--greySP) solid;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: bolder;
    color: var(--greySP);
    padding-bottom: 5px;
}

.benutzerverwaltungContent,
.benutzerprofilContent {
    height: 100%;
    flex-grow: 2;
}

.benutzerprofilContent section:not(:first-child) {
    font-size: 16px;
    padding: 5px 0;
}

.benutzerprofilContent section div {
    width: 35%;
}

#benutzerprofil_benutzerlevel_select~button,
#benutzerprofil_benutzerAppRole_select+button {
    margin-left: 2vw;
}

.benutzerprofilContent input:nth-of-type(2) {
    margin-left: 2vw;
}

#benutzerprofil_Nutzungsrechte section:last-of-type {
    justify-content: flex-end;
}


.benutzerprofilContent section:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#benutzerprofil_benutzerlevel_select,
#benutzerprofil_benutzerAppRole_select {
    margin-left: 5vw;
}

#BenutzerAppRole,
#Benutzerlevel,
#TestnutzerSpan,
#akademischeNutzungSpan {
    width: 10vw;
}


.geaendert::after {
    content: " (geändert)";
}

#inputprojectBildDashboard {
    width: auto;
}

.projektprofilflex {
    display: flex;
    flex-direction: row;
    align-content: stretch;
}

#containerProjektbild {
    display: flex;
    flex-direction: row;
    justify-content: end;
    flex-grow: 2;
}

#containerProjektbild img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

#containerProjektbild>div {
    position: relative;
    height: 150px;
    width: 150px;
}

#containerProjektbild img+div {
    display: none;
    /* top: 150px; */
    /* transition: all 1.5s linear; */
    /* transition: height 1s ease; */
}

#containerProjektbild>div:hover img+div {
    /* display: block; */
    position: absolute;
    height: 40px;
    background-color: var(--digitalBlau);
    width: 100%;
    color: white;
    padding: 5px;
    box-sizing: border-box;
    bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    /* transform: translateY(40px); */
}

#containerProjektbild img:hover {
    cursor: pointer;
}

.containerAutocomplete #inputProjectAdmin+div {
    margin-top: 0;
}

#tbodyLoader td {
    padding: 10px;
}

.loader {
    background-color: var(--lightgreySP);
    height: 18px;
    border-radius: 7px;
    width: 100%;
}

td .loader {
    background-color: #ededed;
    background: linear-gradient(100deg,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, .5) 50%,
            rgba(255, 255, 255, 0) 60%) var(--lightgreySP);
    background-size: 200% 100%;
    background-position-x: 180%;
    animation: 1s loading ease-in-out infinite;
}

@keyframes loading {
    to {
        background-position-x: -30%;
    }
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 22px;
    height: 22px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 22px;
    height: 22px;
    margin: 2px;
    border: 4px solid var(--lightgreySP);
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--lightgreySP) transparent transparent transparent;
}

.autocompleteflex {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.autocompleteAddMember {
    overflow-y: auto;
    margin-top: 44px;
}

.autocomplete>span {
    color: var(--greySP);
}

.controlNewUser,
.controlIbtKunde {
    padding-left: 0;
    width: auto;
}

.control>span {
    margin-left: 27px;
}

#sectionTestUser {
    align-self: flex-start;
}


#tabelle_Verzeichnis_Benutzer thead th:nth-of-type(5),
#tabelle_Verzeichnis_Benutzer thead th:nth-of-type(6),
#tabelle_Verzeichnis_Benutzer thead th:nth-of-type(7),
#tabelle_Verzeichnis_Benutzer thead th:nth-of-type(8),
#tabelle_Verzeichnis_Benutzer thead th:nth-of-type(9),
#tabelle_Verzeichnis_Benutzer tbody td:nth-of-type(5),
#tabelle_Verzeichnis_Benutzer tbody td:nth-of-type(6),
#tabelle_Verzeichnis_Benutzer tbody td:nth-of-type(7),
#tabelle_Verzeichnis_Benutzer tbody td:nth-of-type(8),
#tabelle_Verzeichnis_Benutzer tbody td:nth-of-type(9) {
    text-align: center;
}

#benutzerprofil .flexboxRow {
    align-items: center;
}