
#my-account-menu .user-profile {
  display: grid;
  align-items: center;
  justify-content: center;
}

#my-account-menu .user-info {
  display: grid;
  align-items: center;
  justify-content: center;
}

#my-account-menu .user-profile .username {
    text-align: center;
    margin-bottom: 10px;
}

#my-account-menu .user-profile .user-info .logout a{
    font-size: 14px;
		text-align: center;
    text-transform: uppercase;
		margin: 0 auto
}
.wcmp-myaccount-template .user-image {
		height:160px;
		width:160px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 50%;
}
.wcmp-myaccount-template .user-image img {
		height:160px;
		width:160px;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 50%;
}
#load-avatar1 {
		height:160px;
		width:160px;
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    text-align: center;
    background: rgba( 0, 0, 0, 0.5 );
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    border-radius: 50%;
    cursor: pointer;
}
#load-avatar1:before {
    content: '';
    width: 0;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}
#load-avatar1 i {
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
}
.wcmp-myaccount-template .user-image:hover #load-avatar1 {
		height:160px;
		width:160px;
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}