.hdr {
    background: #fff;
    border-bottom: 1px solid #e8eaed;
    padding: 12px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .07);
}

.hdr-logo {
    font-size: 18px;
    font-weight: 800;
    color: #4caf52;
}

.hdr-sep {
    width: 1px;
    height: 20px;
    background: #e0e0e0;
}

.hdr-title {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.hdr-user {
    margin-left: auto;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}

.page-tools {
    display: flex;
    gap: 10px;
}

.page-tools__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 10px;
    background: #4caf52;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid #4caf52;
    transition: all .15s;
}

.page-tools__link:hover {
    filter: brightness(.97);
}

.page-tools__link--secondary {
    background: #fff;
    color: #1a1a2e;
    border-color: #dcdfe3;
    box-shadow: none;
}

.hdr-van {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-left: auto;
}

.hdr-reset {
    background: none;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all .15s;
    display: none;
}

.hdr-reset:hover {
    border-color: #4caf52;
    color: #4caf52;
}

@media (max-width: 800px) {
    .hdr {
        padding: 12px 14px;
        flex-wrap: wrap;
    }

    .hdr-user,
    .hdr-van {
        width: 100%;
        margin-left: 0;
    }

    .page-tools {
        width: 100%;
        justify-content: flex-end;
    }
}
