#edit-user-profile-container {
    background-color: #EEEEEE;
    display: flex;
}

#edit-user-profile-container .icon {
    width: 18px;
    height: 18px;
    margin: 0;
}

#edit-user-profile-container .profile-wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: white;
    border-radius: 10px;
    padding: 50px 75px;
    -webkit-box-shadow: 0px 0px 10px -1px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 10px -1px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 10px -1px rgba(0,0,0,0.4);
}

#edit-user-profile-container .profile-wrapper .title {
    font-weight: 600;
}

#edit-user-profile-container .profile-wrapper .profile-content {
    display: flex;
}

#edit-user-profile-container .profile-wrapper .profile-content .profile-form-wrapper {
    flex: 1;
}

#edit-user-profile-container .profile-wrapper .profile-content .profile-form-wrapper .notif-msg {
    padding: 20px 10px;
    font-size: 18px;
    color: #fff;
    margin-right: 40px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: none;
}

#edit-user-profile-container .profile-wrapper .profile-content .profile-form-wrapper .notif-msg.success {
    background-color: #01a585;
}

#edit-user-profile-container .profile-wrapper .profile-content .profile-form-wrapper .notif-msg.error {
    background-color: #ff3636;
}

#edit-user-profile-container .profile-wrapper .profile-content .profile-form-wrapper .upload-image-profile-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

#edit-user-profile-container .profile-wrapper .profile-content .profile-form-wrapper .upload-image-profile-wrapper .upload-btn {
    display: flex;
    align-items: center;
    margin-left: 20px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    height: 32px;
    width: auto;
}

#edit-user-profile-container .profile-wrapper .profile-content .profile-form-wrapper .upload-image-profile-wrapper .upload-btn .fileInput {
    cursor: pointer;
    height: 100%;
    position:absolute;
    top: 0;
    right: 0;
    z-index: 99;
    /*This makes the button huge. If you want a bigger button, increase the font size*/
    font-size:50px;
    /*Opacity settings for all browsers*/
    opacity: 0;
    -moz-opacity: 0;
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0)
}

#edit-user-profile-container .profile-wrapper .profile-content .profile-form-wrapper .upload-image-profile-wrapper .upload-image.icon {
    width: 25px;
    height: 25px;
}

#edit-user-profile-container .profile-wrapper .profile-content .profile-form-wrapper .upload-image-profile-wrapper h2 {
    font-size: 22px;
    font-weight: 500;
    color: #01A585;
    margin-bottom: 0;
    margin-left: 20px;
}

#edit-user-profile-container .profile-wrapper .profile-content .profile-form-wrapper .upload-image-profile-wrapper .avatar {
    border-radius: 50%;
    border: 2px solid #01A585;
    height: 115px;
    width: 115px;
    margin-left: 50px;
}

#edit-user-profile-container .profile-wrapper .profile-content .profile-form-wrapper .input-wrapper {
    margin-bottom: 20px;
}

#edit-user-profile-container .profile-wrapper .profile-content .profile-form-wrapper .input-wrapper label {
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
    color: #1A3340;
}

#edit-user-profile-container .profile-wrapper .profile-content .profile-form-wrapper .input-wrapper input {
    padding: 20px 25px;
    border-radius: 50px;
    border: 1px solid #979797;
    font-size: 16px;
    min-width: 500px;
}

#edit-user-profile-container .profile-wrapper .link-action-wrapper .link-container {
    padding: 20px 75px 35px 35px;
    border-left: 1px solid rgba(93, 93, 93, 0.26);
}

#edit-user-profile-container .profile-wrapper .link-action-wrapper .link-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
}

#edit-user-profile-container .profile-wrapper .link-action-wrapper .link-wrapper .reset-password.icon {
    width: 15px;
    height: 19px;
}

#edit-user-profile-container .profile-wrapper .link-action-wrapper .link-wrapper .label {
    font-size: 16px;
    color: #5D5D5D;
    margin-left: 5px;
    line-height: 20px;
}

#edit-user-profile-container .profile-wrapper .link-action-wrapper .link-wrapper .label.active {
    color: #01A585;
}

#edit-user-profile-container .profile-wrapper .save-btn-wrapper {
    display: flex;
    width: 100%;
}

#edit-user-profile-container .profile-wrapper .save-btn-wrapper .save-btn {
    width: 250px;
    margin-left: auto;
}

.form-disclaimer a {
    color: #01A585;
}

/* #change-password-modal{
    display: none!important;
}

#change-password-modal .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#change-password-modal .modal-body p {
    font-size: 16px;
    padding: 50px;
    line-height: 25px;
} */

.line-breaker {
    display: none;
}

@media screen and (max-width: 768px) {
    .line-breaker {
        display: block;
    }
    #edit-user-profile-container .profile-wrapper {
        padding: 20px;
    }

    #edit-user-profile-container .profile-wrapper h1.title {
        font-size: 20px;
    }

    #edit-user-profile-container .profile-form-wrapper {
        width: 100%;
    }

    #edit-user-profile-container .profile-form-wrapper .upload-image-profile-wrapper {
        flex-direction: column-reverse;
        width: 100%;
    }

    #edit-user-profile-container .profile-wrapper .profile-content .profile-form-wrapper .upload-image-profile-wrapper .upload-btn {
        margin: 0;
        margin-top: 10px;
        margin-right: auto;
    }

    #edit-user-profile-container .profile-wrapper .profile-content .profile-form-wrapper .upload-image-profile-wrapper .upload-image.icon {
        width: 20px;
        height: 20px;
    }

    #edit-user-profile-container .profile-wrapper .profile-content .profile-form-wrapper .upload-image-profile-wrapper h2 {
        font-size: 18px;
        margin-left: 10px;
    }

    #edit-user-profile-container .profile-form-wrapper .upload-image-profile-wrapper #user-avatar {
        margin: auto;
        width: 100px;
        height: 100px;
    }

    #edit-user-profile-container .profile-wrapper .profile-content .profile-form-wrapper .input-wrapper label {
        margin-bottom: 15px;
    }

    #edit-user-profile-container .profile-wrapper .profile-content .profile-form-wrapper .input-wrapper input {
        min-width: 100%;
        font-size: 14px;
        padding: 15px 20px;
    }

    #edit-user-profile-container .link-action-wrapper {
        display: none;
    }
}

#edit-user-profile-container .link-action-wrapper {
    display: none;
}