.profile-picture-hidden-input {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.profile-picture {
    width: 132px !important;
    height: 132px !important;
    position: relative;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.profile-picture__img {
    width: 132px !important;
    height: 132px !important;
    border: 4px solid rgba(0,0,0,.06);
    box-shadow: 0 6px 18px rgba(0,0,0,.10);
}

.profile-picture__overlay {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(0,0,0,.38);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .15s ease-in-out;
}

.profile-picture:hover .profile-picture__overlay {
    opacity: 1;
}
