.vf__header {
    display: flex;
    width: 100%;
    height: 68px;
    flex-shrink: 0;
    padding: 12px;
    align-items: center;
    background: var(--bghigh-theme);
    box-shadow: var(--bghigh-shadow-theme);
    position: relative;
    z-index: 99;
}
.vf__logo {
    display: flex;
    gap: 4px;
    margin-right: auto;
}
.header-action {
    display: flex;
    align-items: center;
    gap: 12px;
}
.vf__icon-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 12px;
}

.vf__icon-link {
    text-decoration: none;
    color: #1e1e1e;
}
.vf__icon-link:hover {
    color: #4a4a4a;
}
.vf__icon-link:hover svg {
    fill: #4a4a4a;
}

.avatar__login-status {
    display: flex;
    width: 32px;
    height: 32px;
    position: relative;
}
.avatar__login-status:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
}
.avatar__login-status.logged-in:after {
    background: var(--positive-gradient);
}
.avatar__login-status.not-logged-in:after {
    background: var(--negative-gradient);
}

.avatar__login-status.not-logged-in span, .avatar__login-status img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background-color: #b0b0b0;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
}