﻿.hn-acc-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200000;
}

.hn-acc-panel {
    position: absolute;
    top: 70px;
    right: 70px;
    width: 280px;
    max-width: calc(100vw - 24px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
    border: 1px solid rgba(15,23,42,.10);
    overflow: hidden;
}

.hn-acc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    color: #000 !important;
    text-decoration: none;
    line-height: 1;
    background: #fff;
}

    .hn-acc-item i {
        width: 18px;
        text-align: center;
        opacity: .9;
    }

    .hn-acc-item:hover {
        background: #f1f5f9;
        text-decoration: none;
    }

.hn-acc-divider {
    height: 1px;
    background: rgba(15,23,42,.08);
    margin: 0;
}

.logout {
    color: red !important;
}

@media (max-width: 1025px) {
    .hn-acc-panel {
        top: 70px;
        right: 60px;
    }
}


@media (max-width: 991px) {
    .hn-acc-panel {
        top: 66px;
        right: 55px;
    }
}

@media (max-width: 770px) {

    .hn-acc-panel {
        top: 45px;
        right: 5px;
    }
}


@media (max-width: 500px) {

    .hn-acc-panel {
        top: 45px;
        right: 8px;
        width: 52vw;
        font-size: 0.74rem;
    }
}

@media (max-width: 391px) {

    .hn-acc-item {
        gap: 0
    }

}