﻿.cs-app-bar {
            height: 64px;
            background-color: #006ccc;
            width: 100%;
            position: relative;
            display: flex;
            justify-content: space-between;
        }

        .cs-app-bar__inhalt {
            display: flex;
            position: relative;
            box-sizing: border-box;
            width: 100%;
        }

        .cs-app-bar__section {
            display: inline-flex;
            -ms-flex: 1 1 auto;
            flex: 1 1 auto;
            -ms-flex-align: center;
            align-items: center;
            min-width: 0;
            padding: 8px 12px;
            z-index: 1;
        }

        .cs-app-bar__section--start {
            justify-content: flex-start;
            order: -1;
        }

        .cs-app-bar__section--ende {
            justify-content: flex-end;
            order: 1;
        }

        .cs-app-bar__titel {
            margin-left: 16px;
            font-size: 14px;
            font-weight: bold;
            color: #fff;
        }

.cs-icon-button {
    border: none;
    background: transparent;
    border-radius: 35px;
    padding: 6px;
    margin: 0;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

        .cs-icon-button--text {
            font-size: 12px;
            color: #fff;
        }


        .mdc-icon-button {
            display: inline-block;
            position: relative;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            border: none;
            outline: none;
            background-color: transparent;
            fill: currentColor;
            color: inherit;
            font-size: 24px;
            text-decoration: none;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            width: 48px;
            height: 48px;
            padding: 12px;
        }

        .cs-app-bar.cs-app-bar--klein{
            width: 64px;
        }

        .cs-app-bar--klein .cs-app-bar__titel{
            display: none;
        }
        .cs-app-bar--klein .cs-app-bar__section--ende {
            display: none;
        }