.profileBody{
    
}
.profileBody .profileImageBlock{
    width: 152px;
    float: left;
}
.profileBody .profileImage{
    transition: background-image 0.2s ease;
    width: 150px;
    height: 150px;
    border-radius: 200px;
    background-color: #F1F1F1;
    background-image: url("https://cdn-icons-png.freepik.com/512/5166/5166640.png");
    background-size: 100px;
    background-color: white;
    background-position: center center;
    background-repeat: no-repeat;
    border:1px solid #454545;
    float: left;
}
.profileBody .profileImage .profileImageSelect{
    display: none;
}
.profileBody .profileImage:hover{
    transition: background-image 0.2s ease;
    background-image: url("https://imgvisuals.com/cdn/shop/products/animated-contact-linear-ui-icon-287432.gif?v=1697532256");
    background-size: auto 100px;
    background-position: center center;
    background-color: white;
    cursor: pointer;
}
.profileBody .profileImageSaveButton{
    background-color: #c5c5c5;
    font-size: 20px;
    font-weight: 900;
    color: white;
    padding: 10px;
    float: right;
    margin: -20px 0px;
    transition: background 0.2s ease;
}
.profileBody .profileImageSaveButton:hover{
    transition: background 0.2s ease;
    background-color: black;
    cursor: pointer;
}