.container-avatar {
    max-width: 115px;
}

.avatar-upload {
    position: relative;
    max-width: 200px;
    margin: 10px auto;
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: -40%;
    z-index: 1;
    top: 50%;

}

.avatar-upload .avatar-edit label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input {
    position: absolute;
    opacity: 0;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.avatar-upload .avatar-edit label:hover {
    background: #fff;
    border-color: #d6d6d6;
}

.avatar-upload .avatar-edit label:after {
    content: "\F0100";
    font-family: "Material Design Icons";
    color: #007BFF;
}

.avatar-upload .avatar-preview {
    width: 150px;
    height: 150px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #F8F8F8;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview > div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.imageFilename {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
