.top-search-panel-wrapp {
    position: absolute;
    display: none;
    width: 100%;
    border: 1px solid #000;
    height: 100vh;
    padding: 0;
    z-index: 20;
    opacity: 1;
    top: 0;
    left: 0;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.3);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
    .search-panel__inner {
        width: 100%;
        background: var(--white);
        z-index: 2000;
        position: absolute;
    }
        .top-search-panel {
            padding: 20px 0;
            margin: 10px auto;
            max-width: 808px;
            
            /*border: 1px solid #000; */
        }
        .search-toppanel-form { padding: 0 20px;}
            .search-toppanel-input {}
            .search-toppanel-button-submit {}
            .search-toppanel-button-close {}

/*header personal popup menu*/
.header .personal-menu__popup {
    background: var(--color-header-bg-auth-popup);
    position: absolute;
    right: -90px;
    top: 40px;
    width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 10;
    border-radius: 5px;
}
.header .personal-menu__popup::after {
    content: '';
    width: 0;
    height: 0;
    display: block;
    position: absolute;
    z-index: 10;
    border: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    margin-left: -10px;
    left: 60%;
    border-bottom: 10px solid var(--color-header-bg-auth-popup);
    top: -10px;
}
.header .personal-menu__username {
    text-align: center;
    padding: 8px 0;
    color: var(--white);
    font-weight: 600;
    border-bottom: 1px solid var(--muted);
}
.header .personal-menu__username a { color: var(--white); text-decoration: none; }
.header .personal-menu__list { margin: 0; padding: 0; list-style: none; }
.header .personal-menu__list li { list-style: none; margin: 0; padding: 0 3px; }
.header .personal-menu__list li a { 
    display: block;
    color: var(--white);
    white-space: nowrap;
    padding: 8px 15px 8px 10px;
    position: relative;
    text-decoration: none;
}
.header .personal-menu__list li a:hover { background: #626c80; }
.header .personal-menu__list .personal-menu__link i {display: block; width: 25px;}
.header .personal-menu__list .personal-menu__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.header .personal-menu__list .personal-menu__link svg { fill: var(--white); }

/*header basket*/
.header .topbasket .basket__popup {
    background: var(--color-header-bg-basket-popup);
    position: absolute;
    right: -20px;
    top: 40px;
    width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100;
    border-radius: 5px;
    padding: 20px 10px;
}
.header .topbasket .basket__popup::after {
    content: '';
    width: 0;
    height: 0;
    display: block;
    position: absolute;
    z-index: 10;
    border: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    margin-left: -10px;
    left: 80%;
    border-bottom: 10px solid #525c70;
    top: -10px;
}
.header .topbasket .basket__count {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}
.header .topbasket .basket__count_block {
 
}
.header .topbasket .basket__count_b {
    position: absolute;
    font-size: 12px;
    line-height: 12px;
    background: var(--color-link);
    color: var(--white);
    padding: 5px 8px;
    top: -10px;
    left: 16px;
    border-radius: 50%;
}
.header .topbasket .link-to-basket { margin-bottom: 15px; text-align: center; } 

