.header {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
}

.header-elbrus {
    width: 5rem;
    height: 1.5em;
    display: flex;
    align-items: flex-end;
}

.header-logo__wrapper {
    position: relative;
    top: -1.2rem;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
}

.header-logo {
    width: 20rem;
}

.header-line {
    box-sizing: border-box;
    border-bottom: 1px solid black;
    width: 100%;
    height: 1.5em;
}

.header-col-logo {
    display: flex;
    flex: 1;
}

.header-col-nav {
    display: flex;
    flex: 2;
}


.navbar-element {
    flex: 1;
    text-align: center;
    z-index: 990;
    /*margin-bottom: -1px;*/
    border-bottom: 1px solid black;
    height: 1.5em;
    background: rgba(242, 242, 242, 0.7);
}

.navbar-active {
    border-top: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
}

.navbar-element .link {
    text-decoration: none;
    color: black;
    font-weight: 100;
    font-size: 16px;
    transition: all 300ms;
}

.navbar-element.link:hover {
	color: rgb(150, 150, 150);
}

.navbar-element.in-progress {
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.05) 2px,
        rgba(0,0,0,0.05) 4px
    );
}

.navbar-element.in-progress .title::after {
    content: "🛠";
    font-size: 0.8em;
    margin-left: 5px;
    opacity: 0.7;
}

.navbar-element.in-progress .link {
    color: rgba(0,0,0,0.35);
    text-shadow: 0 1px 1px white;
    pointer-events: none;
}
