.header {
    display: grid;
}
.header__content {
    grid-column-gap: 8px;
    align-items: center;
    /* background-color: #001e28; */
    box-sizing: border-box;
    display: grid;
    grid-area: content;
    grid-auto-columns: auto;
    grid-auto-flow: column;
    grid-template-columns: 1fr;
    padding: 24px 0 20px;
    position: relative;
}
.header__logoWrapper {
    display: flex;
    margin-right: auto;
    position: relative;
}
.header__logo {
    background-position: 23px 50%;
    background-repeat: no-repeat;
    background-size: auto 20px;
    display: flex;
    flex: 1;
}
.header__logo {
    height: 72px;
}
.header__block--menu {
    width: 40px;
    height: 40px;
}
.header__button {
    align-items: center;
    border-radius: 8px;
    box-sizing: border-box;
    cursor: pointer;
    height: 100%;
    width: 100%;
    text-align: center;
    display: grid;
}
.header__icon {
    flex-shrink: 0;
    height: 20px;
    justify-self: center;
    width: 20px;
}
.menuTop {
    align-items: center;
    border-radius: 8px 8px 0 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}
.menuTop__content {
    position: relative;
    align-items: center;
    display: flex;
    overflow-x: auto;
    padding-bottom: 16px;
    width: 100%;
    padding-left: 0;
    list-style: none;
}
.menuTop__content li {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 28px;
    margin-right: 8px;
    padding: 0 12px;
}
.menuTop__icon {
    grid-area: icon;
    height: 20px;
    margin-right: 8px;
    width: 20px;
    filter: invert(1);
}
.menuTop__text {
    text-transform: uppercase;
    white-space: nowrap;
    align-items: center;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Ysabeau Infant';
}

.menuTop__item i {
    font-size: 19px;
}
.contextMenu--active.show {
    display: grid;
}
.contextMenu {
    border-radius: 12px;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,.25);
    display: none;
    font-weight: 700;
    position: absolute;
    right: 0;
    top: calc(100% + 16px);
    user-select: none;
    z-index: 99;
}
.contextMenu__content {
    align-content: start;
    display: grid;
    grid-auto-flow: row;
    padding: 8px;
    border-radius: 8px;
}
.contextMenu__row {
    align-items: center;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    font-family: inherit;
    margin: 0;
    padding: 0;
}
.contextMenu__icon {
    grid-area: icon;
    height: 20px;
    place-self: center;
    width: 20px;
}
.contextMenu__text {
    font-size: 17px;
    font-weight: 700;
    grid-area: text;
    justify-self: flex-start;
    margin-right: 10px;
    text-transform: capitalize;
}
.contextMenu__toggle {
    grid-area: action;
    place-self: center;
}
.toggle {
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
    height: 20px;
    position: relative;
    transition: background-color .25s;
    width: 32px;
}
.toggle:after {
    border-radius: 6px;
    content: "";
    display: flex;
    height: 12px;
    left: 4px;
    position: absolute;
    top: calc(50% - 6px);
    transition: left .25s,background-color .25s;
    width: 12px;
}
.menuTop__item:focus .menuTop__icon {
    outline: none !important;
}