.avatar-upload {
    position: relative;
    max-width: 205px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.avatar-upload .avatar-edit {
    margin: 0 0 10px 0;
    display: flex;
    align-items: flex-end;
}
.avatar-upload .avatar-edit input {
    display: none;
}
.avatar-upload .avatar-edit input + label {
    display: flex;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 5px;
    background: #ffffff;
    border: 1px solid #eee;
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
    align-items: center;
    justify-content: center;
}
.avatar-upload .avatar-edit input + label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}
.avatar-upload .avatar-edit input + label:after {
    content: "+";
    font-family: "FontAwesome", sans-serif;
    color: #757575;
}
.avatar-upload .avatar-preview {
    width: 192px;
    height: 192px;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}
.avatar-upload .avatar-preview > div {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
