.desktopsignupgoogle {
    position: absolute;
    top: 4px;
    right: 85px;
    left: auto;
}

.user__profile .user__name {
    position: relative;
    display: block;
    padding: 5px 10px;
    background-color: #fff;
    border: 1px solid #dadce0;
    border-radius: 5px;
}

.user__profile .user__name .arrow-down {
    content: "";
    position: absolute;
    top: 14px;
    right: 10px;
    left: auto;
    border: solid #153a5b;
    border-width: 0 0 2px 2px;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
}

.user__profile .user__name .user_inner {
    padding-right: 20px;
    position: relative;
}

.user__profile .user__name .user_inner .user_img {
    background-color: #EC4A0A;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 5px;
    text-align: center;
}

.user__profile .user__name .user_inner .user_img h5 {
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    margin-bottom: 0;
}

.profile_dropdown {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #e0e1eb;
    min-width: 270px;
    height: auto;
    width: 100%;
    z-index: 9;
    padding: 0;
    box-shadow: 0 2px 5px rgb(0 0 0 / 20%);
    text-align: center;
}

.profile_dropdown .profile_head {
    background: #f1f7ff !important;
    padding: 15px;
}

.profile_dropdown .profile_head h5 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.profile_dropdown .profile_head p {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 0;
}

.profile_dropdown .profile_body {
    padding: 10px;
}

.profile_dropdown ul {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
}

.profile_dropdown ul li {
    width: 100%;
    padding: 5px 0 !important;
    line-height: 18px;
}

.profile_dropdown ul li a,
.profile_dropdown ul li span {
    font-size: 15px !important;
    font-weight: 500;
    padding: 0;
}

.profile_dropdown ul li span {
    line-height: 1.2;
    color: #153a5b;
    text-decoration: none !important;
    display: block;
}

.profile_dropdown ul li span:hover {
    cursor: pointer;
    color: #f5205f;
    transition: .4s;
}

@media(max-width: 767px) {
    .user__profile .user__name .user_inner {
        display: flex;
        align-items: center;
    }
    .user__profile .user__name .user_inner .user_img {
        margin-right: 10px;
    }
    .user__profile .user__name .user_inner span {
        color: #000;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
    }
    .user__profile .user__name .arrow-down {
        right: 15px;
    }
}