
.client-global-header{
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid rgba(37,83,69,.10);
    background:rgba(249,247,239,.95);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
}
.client-global-header-inner{
    min-height:72px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
}
.client-global-brand{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#285d50;
    text-decoration:none;
    font-size:1.38rem;
    font-weight:950;
    letter-spacing:-.04em;
}
.client-brand-logo{
    width:34px;
    height:34px;
    display:block;
    flex:0 0 34px;
    border-radius:10px;
    object-fit:cover;
}
.client-global-nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:8px;
}
.client-global-nav a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 12px;
    border-radius:11px;
    color:#5f6b65;
    text-decoration:none;
    font-size:.86rem;
    font-weight:760;
}
.client-global-nav a:hover{
    background:rgba(40,93,80,.07);
    color:#285d50;
}
.client-global-nav a.active{
    background:#285d50;
    color:#fff;
}
.client-global-nav .client-nav-login,
.client-global-nav .client-nav-logout{
    margin-left:4px;
    border:1px solid rgba(40,93,80,.14);
}
.client-global-nav .client-nav-login{
    background:#285d50;
    color:#fff;
    font-weight:900;
}
.client-global-nav .client-nav-logout{
    background:#fff;
    color:#285d50;
}
.client-install-app{
    margin-left:4px;
    border-color:rgba(40,93,80,.38);
    color:#285d50;
    background:#eef3ed;
}
.client-install-app:hover{
    background:#285d50;
    border-color:#285d50;
    color:#fff;
}
.client-menu-toggle{
    display:none;
    width:44px;
    height:44px;
    padding:10px;
    border:1px solid rgba(40,93,80,.12);
    border-radius:12px;
    background:#fff;
    cursor:pointer;
}
.client-menu-toggle span{
    display:block;
    width:100%;
    height:2px;
    margin:4px 0;
    border-radius:999px;
    background:#285d50;
}

.install-app-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 13px;
    border:1px solid currentColor;
    border-radius:11px;
    background:transparent;
    font:inherit;
    font-size:.84rem;
    font-weight:850;
    cursor:pointer;
    white-space:nowrap;
}
.install-app-button[hidden]{display:none!important}
.install-app-button:disabled{opacity:.55;cursor:wait}

.install-modal-open{overflow:hidden}

.install-app-overlay[hidden]{display:none}
.install-app-overlay{
    position:fixed;
    inset:0;
    z-index:99999;
    display:grid;
    place-items:center;
    padding:20px;
    background:rgba(15,18,16,.48);
    backdrop-filter:blur(4px);
    -webkit-backdrop-filter:blur(4px);
}
.install-app-dialog{
    position:relative;
    width:min(100%,470px);
    padding:26px;
    border-radius:22px;
    background:#fff;
    color:#20231f;
    box-shadow:0 30px 90px rgba(0,0,0,.24);
}
.install-app-close{
    position:absolute;
    top:12px;
    right:12px;
    width:38px;
    height:38px;
    border:0;
    border-radius:50%;
    background:#f0f1ed;
    color:#323632;
    font-size:24px;
    line-height:1;
    cursor:pointer;
}
.install-app-kicker{
    display:block;
    margin-bottom:7px;
    font-size:.75rem;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    opacity:.55;
}
.install-app-dialog h2{
    margin:0 42px 18px 0;
    font-size:1.42rem;
    line-height:1.15;
}
.install-app-copy{
    margin:0 0 20px;
    line-height:1.55;
    color:#626760;
}
.install-app-steps{
    display:grid;
    gap:12px;
    margin:0 0 20px;
}
.install-app-steps > div{
    display:grid;
    grid-template-columns:34px 1fr;
    align-items:center;
    gap:11px;
    padding:12px;
    border-radius:13px;
    background:#f5f5f1;
}
.install-app-steps p{margin:0;line-height:1.42}
.install-step-number{
    width:32px;
    height:32px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#20231f;
    color:#fff;
    font-size:.8rem;
    font-weight:900;
}
.install-app-ok{
    width:100%;
    min-height:46px;
    border:0;
    border-radius:12px;
    background:#20231f;
    color:#fff;
    font:inherit;
    font-weight:900;
    cursor:pointer;
}

@media (max-width:900px){
    .client-menu-toggle{display:block}
    .client-global-header-inner{position:relative}
    .client-global-nav{
        position:absolute;
        top:calc(100% + 8px);
        left:0;
        right:0;
        display:none;
        align-items:stretch;
        flex-direction:column;
        gap:5px;
        padding:10px;
        border:1px solid rgba(40,93,80,.10);
        border-radius:17px;
        background:#fff;
        box-shadow:0 20px 55px rgba(30,55,45,.13);
    }
    .client-global-nav.open{display:flex}
    .client-global-nav a,
    .client-install-app{
        width:100%;
        min-height:46px;
        justify-content:flex-start;
        margin:0;
        padding:0 14px;
    }
}
