.profile_page_wrpr {
    display: flex;
    padding: 30px 0;
    flex: 1;
}
.profile_left_sidebar {
    max-width: 274px;
    width: 100%;
    margin-right: 35px;
    display: flex;
    flex-direction: column;
}
.profile_left_sidebar ul {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    width: 100%;
    padding: 10px;
}
.profile_left_sidebar ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #737373;
    border-radius: 7px;
    padding: 8px 10px;
}
.profile_left_sidebar ul li+li {
    margin-top: 10px;
}
.profile_left_sidebar ul li a svg {
    color: #03A688;
}
.profile_left_sidebar ul li a.active {
    background: #03A688;
    color: #fff;
}
.profile_left_sidebar ul li a.active svg {
    color: #fff;
}
.profile_left_sidebar ul li a .icon_wrpr {
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.profile_left_sidebar ul hr {
    border: 0;
    border-top: 1px solid #E5E5E5;
}
.profile_main_content {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 0px 1px rgba(26, 32, 36, 0.32), 0px 1px 2px rgba(91, 104, 113, 0.32);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.pf_content_body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 30px;
}
.pf_content_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-top: 1px solid #E5E5E5;
}
.pf_content_footer .btn {
    min-width: 100px;
    text-align: center;
    justify-content: center;
}
.flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.w-full {
    width: 100%;
}
.flex-1 {
    flex: 1;
}
.items-center {
    align-items: center;
}
.upload_photo_box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.upload_photo_box .photo_circle {
    border: 1.5px solid #E5E5E5;
    width: 90px;
    height: 90px;
    min-width: 90px;
    min-height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}
.upload_photo_box .upload_btn input {
    display: none;
}
.upload_photo_box .upload_btn {
    cursor: pointer;
    border: 2px solid #03A688;
    border-radius: 10px;
    padding: 8px 17px;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #03A688;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-20 {
    margin-bottom: 20px;
}
textarea.input {
    min-height: 200px;
    resize: vertical;
}
.textarea_wrpr {
    position: relative;
}
.textarea_letters {
    display: block;
    pointer-events: none;
    position: absolute;
    right: 10px;
    bottom: 15px;
    z-index: 2;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #C0C0C0;
}
.project_item_right {
    display: flex;
    align-items: center;
}
.project_item_right>* {
    margin-left: 10px;
}
.btn.green_outline {
    border-color: #03A688;
    color: #03A688;
}
.project_item_right .btn.green_outline {
    padding: 6px 12px;
}
.project_item_right .select {
    padding-top: 11px;
    padding-bottom: 11px;
}
.add-project .input_wrpr {
    width: 100%;
    padding-right: 10px;
    flex: 1;
}
.add-project .input {
    padding: 12px 10px;
    height: 44px;
}
.items-start {
    align-items: flex-start;
}
.user_data {
    display: flex;
    align-items: center;
}
.user_data .user_img_wrpr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    margin-right: 13px;
    overflow: hidden;
    border-radius: 50%;
}
.user_data .user_img_wrpr img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}
.user_data .user_email {
    font-weight: normal;
    font-size: 14px;
    line-height: 14px;
    color: #737373;
    margin-top: 9px;
}
.user_data .user_img_wrpr+div {
    display: flex;
    flex-direction: column;
}
.add-project .input {
    border-radius: 10px;
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 991px) {
    .profile_page_wrpr .projects-list li {
        flex-direction: column;
        align-items: flex-start;
    }
    .profile_page_wrpr .projects-list li .project_item_right {
        margin-top: 10px;
    }
    .profile_page_wrpr .projects-list .user_data {
        margin-bottom: 10px;
    }
}
@media (max-width: 500px) {
    .profile_page_wrpr .projects-list li .project_item_right {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }
    .project_item_right .select {
        width: 100%;
    }
    .project_item_right>* {
        margin-left: 0;
        margin-top: 10px;
    }
}