﻿.brand-topnav {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 16px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.brand-topnav {
    --nav-size: 64px;
}

.icons {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    
}

    .icons::-webkit-scrollbar {
        display: none;
    }

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 0;
    cursor: pointer;
    min-width: 72px;
    color: #8B8B8B
}

    .icon-item .material-symbols-rounded {
        font-size: calc(var(--nav-size) * .52);
        line-height: 1;
        border-radius: 50%;
        padding: .55em;
        background-color: @GetIconBackgroundColor();        
    }

    .icon-item .label {
        font-size: .8rem;
        color: #8B8B8B;
    }

    .icon-item:hover .label {
        color: #2b2b2b;
    }

    .icon-item.active .label {
        font-weight: 600;
        color: #575656;
    }

.actions {
    display: flex;
    gap: 12px;
}

    .actions .icon-item {
        min-width: auto;
    }
