.main-header2__logo {
    width: 200px;
    text-align:center;
}

.anwendungCard {
    display: grid;
    grid-template: "icon name"
                   "icon description";
    grid-template-columns: 80px 280px;
    grid-template-rows:    24px 56px;
    padding-top: 15px;
    background-color: white;
}

.anwendungCard:hover{
    background-color: #A1D9F0;
    cursor: pointer;
}

.anwendungCard__icon {
    grid-area: icon;
    font-size: 4em;
    text-align: center;
    color: #009DD3;
}

.anwendungCard__name {
    grid-area: name;
    font-size: 18px;
    color: #009DD3;
}

.anwendungCard__description {
    grid-area: description;
}

.bereichCard__container {
    display: inline-block;
    width: 750px;
    background-color: #D4ECF8;
}

.bereichCard{
    display: grid;
    grid-template: "name"
                   "anwendungen";
}

.bereichCard__name {
    grid-area: name;
    padding-left: 10px;
    padding-top: 10px;
    margin-bottom: 10px;
    font-size: 24px;
    color: #009DD3;
}

.bereichCard__anwendungen {
    grid-area: anwendungen;
    display: flex;
    flex-flow: row wrap;
    gap: 10px 10px;
    margin: 10px;
    justify-content: flex-start;    
    width: 100%;
}

.bereichList {
    display: flex;
    gap: 10px 10px;
    margin: 10px;
    flex-flow: row wrap;
    justify-content: flex-start;
}

.appLinks
{
    margin-left: auto;
    margin-right: auto;
    width: 1530px;
}

@media (max-width: 1730px) { 
    .appLinks {
        width: 770px
    }    
}

@media (max-width: 890px) {
    .appLinks {
        width: 400px
    }

    .bereichCard__container {        
        width: 380px;
    }
}

.suchfeld {
    display: block;
    width: 240px;
    margin: 10px;
}

.settings-icon {
    color: #009dd3;
    text-shadow: -1px -1px 0 #fff,1px -1px 0 #fff,-1px 1px 0 #fff,1px 1px 0 #fff;
    font-size: 2.5em;
    margin-top: .3em;
    cursor: pointer;
}

.settings_icon_container {
    position: absolute;
    right: 300px;
    background-color: #009dd3;
    height: 48px;
    padding-left: 4px;
    padding-right: 4px;
}

.benutzerInfo_block{
    margin: 8px;
    margin-bottom: 24px;
}

.benutzerInfo_row{
    margin: 8px;
}

.benutzerInfo_label{
    width: 200px;
    display: inline-block;
}

.benutzerInfo_daten{
    width: 400px;
    display: inline-block;
}

.benutzerInfo_daten_halb{
    width: 200px;
    display: inline-block;
}

.benutzerInfo_checked{
    color: #3c763d;
}

.benutzerInfo_deactivated{
    color: #6E6E6E;
}

.benutzerInfo_unchecked{
    color: #a94442;
}

.appStoreIconGoogle {
    height: 54px;
}

.appStoreIconApple {
    height: 42px;
}

.authenticator-col {
    text-align: center;
}

.passwordRuleIcon {
    margin-left: 25px;
    width: 20px;
}

.benutzerInfo_input{
    width: 200px;
}