* {
    margin: 0;
    font-family: "Inter", sans-serif;
}

.d_none {
    display: none !important;
}

.z99 {
    z-index: 99;
}

.submenu_closed {
    display: none;
}

.submenu_open {
    display: block;
}

.user_logo {
    height: 32px;
    width: 32px;
    background-color: white;
    color: rgb(37, 172, 226);
    border: 4px solid rgb(42, 54, 71);
    border-radius: 100%;
    padding: 10px 10px;
    font-size: 22px;
    font-weight: bold;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user_logo:hover {
    cursor: pointer;
    background-color: rgb(227, 228, 229);
}

.div_submenu {
    position: absolute;
    top: 99px;
    right: 20px;
    transition: all 250ms ease-in-out;
    z-index: 1050;
}

.submenu {
    justify-content: space-evenly;
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 158px;
    width: 148px;
    background-color: rgba(42, 54, 71);
    border-radius: 20px 0 20px 20px;

}

.submenu a:hover{
    background-color: rgba(6, 94, 209, 0.445);
    width: 140px;
}

.submenu a {
    color: rgb(168, 168, 168);
    text-decoration: none;
    width: 148px;
    height: 36px;
    align-items: center;
    display: flex;
    justify-content: center;
}

@media (max-width: 1000px) {
    .submenu{
        height: 200px;
    }

}