.my-account {
    width: 48px;
    height: 48px;
    position: absolute;
    right: 100px;
    top: 20px;
    border: 3px solid #049600;
    border-radius: 100%;
    overflow: hidden;
    z-index: 2;
    opacity: 0;
    color: white;
}
/*
.my-account > div:not('.profile-pic') {
    display:none
}
*/

.my-account > div:not(.profile-pic) {
    display:none
}
.my-account .profile-pic img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    cursor: pointer;
    display:block;
}

.my-account:hover {
    border-radius: 0;
    border-top: none;
    top: 0;
    width: 230px;
    height: auto;
    background: #01230cb5;
    box-shadow: 0 0 10px rgba(0,0,0,.5);
    padding: 25px;
}


.my-account:hover > div {
    display:block;
}



.my-account:hover > .profile-title {
    font-size: 25px;
}

.my-account:hover > .profile-subtitle {
    font-size: 18px;
}




.my-account:hover > .profile-pic img {
    width: 80%;
    height: auto;
    display:block;
    margin: 20px auto 10px auto;
    object-fit: cover;
    cursor: default;
    border: 1px solid black;
}


.my-account:hover > .profile-edit a {
    font-weight: bold;
    color: #049600;
    font-size: 18px;
    display: table;
    margin: auto;
}

.my-account:hover > .profile-logout {
    margin-top: 20px;
}

.my-account:hover > .profile-logout a {
    font-weight: bold;
    color: white;
    font-size: 18px;
    display: table;
    margin: auto;
    background: #ff000090;
    border: 2px solid #ff0000cc;
    text-decoration: none;
    border-radius: 5px;
    padding: 5px 10px;
}
