﻿/* profile photo section */

.user-profile-photo-section-container {
    height: 110px;
    background: rgba(12, 27, 53, 1);
    padding: 20px 20px 20px 50px;
}

.user-profile-picture {
    position: relative;
    margin-inline-end: 20px;
}

.user-profile-picture-container-circle {
    width: 70px;
    height: 70px;
    border: 8px solid rgba(54, 183, 101, 0.5);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    display: flex;
}

.user-profile-input-file {
    position: absolute;
    color: #7f7f7f;
    bottom: 0;
    border-radius: 50%;
    background: rgba(54, 183, 101, 1);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .user-profile-input-file span {
        display: flex;
        height: 22px;
        width: 22px;
    }

[dir = ltr] .user-profile-input-file {
    right: 0;
}

[dir = rtl] .user-profile-input-file {
    left: 0;
}

.user-profile-input-file input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: inherit;
}

.user-profile-input-file input[type=file]::-webkit-file-upload-button {
    cursor: pointer;
}

.user-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 18.75px;
    color: rgba(255, 255, 255, 1);
}

.user-jobTitle {
    font-size: 12px;
    font-weight: 700;
    line-height: 19.6px;
    color: rgba(255, 255, 255, 1);
}

.save-myProfile-info {
    width: 123px;
    height: 32px;
    padding: 4px 10px 4px 10px;
    border-radius: 5px;
    background: rgba(54, 183, 101, 1);
    color: #fff;
    transition: all 0.3s ease-in-out;
}

    .save-myProfile-info:hover {
        cursor: pointer;
        background: rgba(54, 183, 101, 0.7);
        color: #fff;
    }

/* personal info section */

.personal-info-component {
    height: 100px;
    border-radius: 5px;
    background: rgba(12, 27, 53, 0.27);
}

    .personal-info-component .title {
        font-size: 14px;
        font-weight: 700;
        line-height: 16.41px;
        color: rgba(202, 206, 216, 1);
    }

.name-userName-container {
    margin-inline-end: 120px;
}

    .name-userName-container .title {
        font-size: 12px;
        font-weight: 400;
        line-height: 14.06px;
        color: rgba(138, 161, 175, 1);
    }


    .name-userName-container .name {
        font-size: 12px;
        font-weight: 400;
        line-height: 14.06px;
        color: rgba(255, 255, 255, 1);
    }

/* change password section */

.input-container {
    position: relative;
}

.change-password-component {
    height: fit-content;
    border-radius: 5px;
    background: rgba(12, 27, 53, 0.27);
}

    .change-password-component .title {
        font-size: 14px;
        font-weight: 700;
        line-height: 16.41px;
        color: rgba(202, 206, 216, 1);
    }

    .change-password-component .input-container {
        margin-inline-end: 30px;
    }


    .change-password-component .input-change-password {
        width: 250px !important;
        height: 33px !important;
        border-radius: 5px !important;
        border: 1px solid rgba(154, 175, 213, 1);
        background: rgba(16, 25, 42, 1) !important;
        padding: unset !important;
    }



        .change-password-component .input-change-password input {
            color: rgba(138, 161, 175, 1);
            font-size: 12px !important;
            font-weight: 400 !important;
            line-height: 12px !important;
            height: 100% !important;
            display: flex;
            align-items: center;
            padding-inline-start: 15px;
            background-color: transparent !important;
            border: unset !important;
            width: 100% !important;
        }


.input-change-password-openIcon {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../../images/UserProfile/openedEyeIcon.svg);
    position: absolute;
    z-index: 20000;
    top: 7px;
    bottom: 0;
    inset-inline-end: 10px;
    filter: contrast(0);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
}

.input-change-password-closeIcon {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../../images/UserProfile/closedEyeIcon.svg);
    position: absolute;
    z-index: 20000;
    top: 7px;
    bottom: 0;
    inset-inline-end: 10px;
    filter: contrast(0);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
}

.input-container input:-webkit-autofill,
.input-container input:-webkit-autofill:hover,
.input-container input:-webkit-autofill:focus,
.input-container input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px rgba(16, 25, 42, 1) inset !important;
    -webkit-text-fill-color: rgba(138, 161, 175, 1) !important;
}