.Bar{
    width: 80%;
    position: fixed;
    top: 0px;
    z-index: 999;
}.appBar{
    position: relative;
    height: auto;
    width: 100%;
    background: #F4F4F4;
    /* background-color: aqua; */
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.appBar_option{
    position: absolute;
    width: 30px;
    height: 30px;
    left: 1%;
    top: 15%;
}
.appBar_user{
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 1.5em;
    flex-wrap: wrap;
    /* background-color: aqua; */
}
.appBar_user_photo{
    height: auto;
}
.appBar_user_det{
    margin-left: 0.3em;
    margin-right: 1.5em;
    justify-content: center;
}
.appBar_user_det_username{
    height: auto;
    /* background-color: greenyellow; */
    /* display: block; */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    /* line-height: 21px; */
/* identical to box height */


color: #65BAE7;
}
.appBar_user_det_email{
    height: auto;

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    /* line-height: 21px; */
    /* identical to box height */


    color: #666666;
}

.appBar_user_setting{
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}


@media screen and (max-width:555px) {
    .appBar_option{
        left: 5%;
    }
    .Bar{
        width: 100%;
        left: 0px;
    }
}