/* Add here all your CSS customizations */

/* Profile Image */
.profile-image-outer-container {
    margin-top: auto;
    margin-bottom: auto;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.profile-image-outer-container .profile-image-input {
    position: absolute;
    top: 0;
    height: 100%;
    opacity: 0;
    z-index: 3;
    cursor: pointer;
}

.profile-image-outer-container .profile-image-inner-container {
    border-radius: 50%;
    padding: 5px;
}

.profile-image-outer-container .profile-image-inner-container img {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    border: 5px solid white;
}

.profile-image-outer-container .profile-image-inner-container .profile-image-button {
    position: absolute;
    z-index: 2;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    line-height: 38px;
    transition: ease all 0.1s;
}

.profile-image-outer-container:hover .profile-image-button {
    transform: scale(1.1);
}
.clickable-row {
    cursor: pointer;
}