.user_profile_drop_down.active_profile_menu{
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 99 !important;
    transform: translateY(0) !important;
}

.user_profile_btn{
    height: 25px;
    width: 25px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 99;
}


.user_profile_btn .default_pic{
    height: 25px;
    width: 25px;
    border-radius: 50%;
    object-fit: cover;
    transition: 0.4s;

}

.user_profile_btn::before{
    height: 30px;
    width: 30px;
    background-color: #222;
    position: absolute;
    border-radius: 50%;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: -99;
    transition: 0.4s;
}

.user_profile_btn:hover::before{
    background-color: #469BF6;
}

.user_profile_btn .user_profile_drop_down{
    height: fit-content;
    width: 200px;
    background-color: #fff;
    position: absolute;
    top: 50px;
    left: -190px;
    border-radius: 7px;
    box-shadow: 0 0 1px var(--shadow-color);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    z-index: -99;
    transform: translateY(20px);
    transition: 0.2s;

}

.user_profile_drop_down .divider {
    height: 1px;
    background: var(--bg);
}

.user_profile_btn .user_profile_drop_down ul li{
    padding: 2px;
}
.user_profile_btn .user_profile_drop_down ul li a{
    padding: 10px;
    margin-bottom: 2px;
    font-weight: bold;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 7px;
    transition: 0.4s;
}

.user_profile_btn .user_profile_drop_down ul li a:hover{
    background-color: var(--drop-down-hover);
    color: var(--theme-color);
}