.topBar {
    background-color: #ecf0f1;
    height: 36px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* position: sticky;
    top: 0; */
    z-index: 1;
}

.topBar h1 {
    line-height: 36px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 11pt;
    white-space: nowrap;
    margin: 0;
    overflow: hidden;
}

.topBar span.mdi {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
    line-height: 36px;
    display: inline-block;
    padding: 0 10px 0 10px;
}

/* Медиа запросы в самом низу потому что они переопределяют уже имеющееся */

/* Настольная версия */
@media (min-width: 576px) {
    .topBar span:hover {
        color: white;
        background-color: var(--hover-color);
    }

}