

.personal-figure {
    position: relative;
    width: 100px;
    height: 100px;
}

.personal-avatar {
    cursor: pointer;
    width: 80px;
    height: 80px;
    box-sizing: border-box;
    border: 1px solid rgb(222, 226, 230) !important;
    transition: all ease-in-out .3s;
    border-radius: 50%!important;
    margin: auto;
}

.personal-figcaption {
    cursor: pointer;
    position: absolute;
    top: 0px;
    width: inherit;
    height: inherit;
    opacity: 0;
    border-radius: 50%!important;
    background-color: rgba(0, 0, 0, 0);
    transition: all ease-in-out .3s;
}

.personal-figcaption:hover {
    opacity: 1;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .5);
}

.personal-figcaption>img {
    width: 25px;
    height: 25px;
}