@mixin  adf-header-layout-theme($theme) {
    $primary: map-get($theme, primary);
    $accent: map-get($theme, accent);
    $background: map-get($theme, background);

    adf-layout-header .mat-toolbar-single-row {

        color: mat-color($primary, default-contrast) !important;
        position: relative;
        padding: 0 24px;

        .adf-menu-icon {
            position: relative;
            margin-left: -11px;
            margin-right: 0;

            .mat-icon {
                font-size: 29px;
                padding: 0 5px 0 0;
            }
        }

        .adf-app-logo {
            position: relative;
            height: 28px;
            width: 28px;
            vertical-align: middle;
            margin-left: 6px;
            margin-top: -3px;
        }

        .adf-app-title {
            cursor: pointer;
            outline: none;
            margin-left: 6px;
            letter-spacing: -0.3px;
            font-weight: 100;
        }

        .adf-toolbar-divider {
            margin: 0 5px;

            & > div {
                background-color: mat-color($background, card, 1);
            }
        }

        .adf-header-delimiter {
            height: 24px;
            width: 2px;
            background-color: mat-color($primary, default-contrast);
            margin-right: 16px;
        }

        .adf-app-layout-user-profile {
            margin-right: 16px;
        }

        .adf-userinfo-container {
            flex-direction: row;
            padding: 0;
        }

        .adf-userinfo-name {
            padding-right: 8px;
        }

        @media screen and ($mat-xsmall) {
            .adf-app-logo,
            .adf-app-title {
                display: none;
            }
        }
    }
}