div.bx-system-auth-form span.bx-auth-secure {
    background-color: #FFFAE3;
    border: 1px solid #DEDBC8;
    padding: 2px;
    display: inline-block;
    vertical-align: bottom;
    margin-top: -1px;
}

div.bx-system-auth-form div.bx-auth-secure-icon {
    background-image: url(images/sec.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 19px;
    height: 18px;
}

div.bx-system-auth-form div.bx-auth-secure-unlock {
    background-image: url(images/sec-unlocked.png);
}

.user-link svg {
    transition: .3s;
}

.user-link:hover svg {
    fill: var(--main_color);
}

.dropdown-list-wrap {
    position: absolute;
    top: 100%;
    padding-top: 12px;
    z-index: 3000;
    width: 240px;
    pointer-events: none;
}

.dropdown-list-wrap .dropdown-list-animation-wrap{
    opacity: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    background-color: #fff;
}

.dropdown-list-wrap .dropdown-list-animation{
    opacity: 0;
    width: 100%;
    border-radius: 6px;
    background-color: #fff;
    transition: 0.2s opacity ease-in;
}

.dropdown-list {
    width: 100%;
    border-radius: 6px;
    background-color: #fff;
    cursor: default;
}

.dropdown-list-wrap .dropdown-list-square {
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    background-color: #fff;
    position: absolute;
    top: 7px;
    left: 48%;
}

#auth_in:hover .dropdown-list-wrap {
    opacity: 1;
    pointer-events: auto;
}

#auth_in:hover .dropdown-list-animation-wrap {
    opacity: 1;
    pointer-events: auto;
}

#auth_in:hover .dropdown-list-animation {
    opacity: 1;
    transition: 0.2s opacity ease-in;
    pointer-events: auto;
}

.dropdown-list .username {
    padding: 14px 20px 24px 20px;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    border-bottom: 1px solid #ECECEC;
}

.dropdown-list-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    transition: 0.3s all linear;
    color:var(--main_text_black)
}

.dropdown-list-item:first-child {
    padding-top: 24px !important;
}

.dropdown-list-item:hover {
    background-color: var(--main_bg_gray);
    transition: 0.3s all linear;
}

.dropdown-list-item svg {
    margin-right: 12px;
    fill: currentColor;
}

.dropdown-list-link {
    font-weight: 400 !important;
    font-size: 14px;
    line-height: 100%;
    color: currentColor!important;
}