.pageHeader:global(.ant-layout-header) {
    height: 54px;
    background: white;
    padding: 0;
    border-bottom: 2px solid #ccc;
    line-height: inherit;
}

.pageHeader.withHorizontalMenu {
    border-bottom: 0;
    height: 84px;
}

.rowTitle {
    display: flex;
    padding: 0 12px;
    justify-content: space-between;
    align-items: center;
}

.controlsContainer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 24px;
}

.controlsContainer > * {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 24px;
}

.controlsContainer > * > *:not(:first-child) {
    flex-shrink: 0;
    margin-left: 5px;
}

.buttonsContainer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.buttonsContainer > *:not(:first-child) {
    margin-left: 5px;
}

.titleBlock {
    display: flex;
    align-items: center;
    line-height: normal;
    overflow: hidden;
}

.iconContainer {
    margin: 10px 10px 10px 0;
    background-color: #E3E3E3;
    border-radius: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.groupTitle {
    font-family: 'Open Sans', serif;
    font-size: 12px;
    /*text-transform: uppercase;*/
    color: #999;
    margin-bottom: -2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.titleContainer {
    flex: auto;
    overflow: hidden;
}

.sectionContainer {
    font-family: 'Open Sans Semibold', serif;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.primaryTitle,
.secondaryTitle,
.sectionSubTitle {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.primaryTitle {
    text-transform: uppercase;
}
.secondaryTitle {
    font-family: 'Open Sans', serif;
}

.horizontalContainer {
    padding-left: 8px;
    border-bottom: 2px solid #ccc;
}

.sectionSubTitle {
    color: #999;
    margin-left: 5px;
}

.afterTitleContentContainer {
    display: flex;
    align-items: center;
    margin-right: 10px;
    overflow: hidden;
}
.afterTitleContentContainer>* {
    margin-left: 10px;
}

@media screen and (max-width: 768px) {
    .secondaryTitle {
        max-width: 60px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
    .secondaryTitle {
        max-width: 348px;
    }
}

@media screen and (min-width: 1201px) {
    .secondaryTitle {
        max-width: 676px;
    }
}

