.account_section {
    display: flex;
    min-height: 750px;
}

.account_col_left {
    width: 25%;
    flex-shrink: 0;
    margin-right: 40px;
}

.account_col_right {
    flex: 1;
}

.account_tabs {
    flex-direction: column;
}

.account_tabs .nav-item {
    margin: 0 0 20px;
    padding-bottom: 20px;
}

.account_tabs .nav-link {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    background-color: var(--bgLight);
    color: var(--secondaryText);
    font-weight: 600;
    padding: 16px 30px;
}

.account_tabs .nav-link>img {
    margin-right: 10px;
}

.account_tabs .nav-link.active>img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.account_tabs .nav-item:not(:nth-last-of-type(1)) {
    border-bottom: 1px solid var(--borderLight);
}

.account_col_right .tab-pane {
    border: 1px solid var(--bgLight);
    padding: 24px;
}

.profile_row {
    display: flex;
    justify-content: space-between;
}

.profile_row .form {
    flex-shrink: 0;
    width: 50%;
    max-width: 380px;
}

.profile_row .form_field {
    margin-bottom: 30px;
}

.profile_row .btn_lg {
    margin-top: 40px;
}

.upload_profile {
    margin: 0 40px;
}

.upload_profile h2 {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
}

.upload_profile .border_top {
    padding-top: 14px;
    color: var(--businessGray);
    margin-bottom: 40px;
    text-align: center;
    border-top: 1px solid var(--borderLight);
}

.profile_image {
    position: relative;
    width: 160px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.profile_image>img {
    border-radius: 50%;
    width: 160px;
    height: 160px;
    object-fit: cover;
    object-position: top center;
}

.edit_profile {
    background-color: var(--white);
    width: 45px;
    height: 45px;
    border: 0;
    position: absolute;
    border-radius: 50%;
    bottom: 0;
    right: 0;
    filter: drop-shadow(0px 5.554px 5.554px rgba(0, 0, 0, 0.06));
}

.file_input {
    background-color: var(--white);
    width: 45px;
    height: 45px;
    border: 0;
    position: absolute;
    border-radius: 50%;
    bottom: 0;
    right: 0;
    opacity: 0;
    cursor: pointer;
    filter: drop-shadow(0px 5.554px 5.554px rgba(0, 0, 0, 0.06));
}

.password_requirements {
    font-size: 14px;
    margin-left: 30px;
}

.password_requirements h2 {
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 10px;
}

.password_requirements ul {
    padding-left: 20px;
}

.password_requirements ul li {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    list-style: disc;
    margin-bottom: 5px;
}

@media screen and (max-width: 1366px) {
    .upload_profile {
        margin: 0 0 0 30px;
    }
}

@media screen and (max-width: 1200px) {
    .account_col_left {
        margin-right: 20px;
    }

    .account_col_left .heading-view-all .heading-text {
        font-size: 20px;
    }

    .upload_profile h2 {
        font-size: 16px;
    }

    .profile_image>img {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 992px) {
    .profile_image>img {
        width: 120px;
        height: 120px;
    }

    .edit_profile {
        width: 35px;
        height: 35px;
        right: 15px;
    }

    .edit_profile>img {
        max-width: 16px;
    }

    .account_tabs .nav-link {
        padding: 12px 20px;
    }

    .upload_profile h2 {
        font-size: 14px;
    }

    .upload_profile .border_top {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .account_col_right .tab-pane {
        padding: 20px;
    }

    .profile_row .form_field {
        margin-bottom: 24px;
    }

    .profile_row .btn_lg {
        margin-top: 30px;
    }

    .password_requirements h2 {
        font-size: 14px;
        line-height: normal;
    }
}

@media screen and (max-width: 850px) {
    .profile_image>img {
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 767px) {
    .account_section {
        min-height: auto;
        flex-direction: column;
    }

    .account_col_left {
        margin: 0;
        width: 100%;
    }

    .account_col_left .heading-view-all .heading-text {
        font-size: 16px;
    }

    .account_tabs {
        flex-direction: row;
        margin-bottom: 25px;
    }

    .account_tabs .nav-item {
        padding-bottom: 0;
        margin-bottom: 0;
        flex: 1;
    }

    .account_tabs .nav-item+.nav-item {
        margin-left: 20px;
    }

    .account_tabs .nav-item:not(:nth-last-of-type(1)) {
        border-bottom: 0;
    }

    .account_tabs .nav-link {
        text-align: center;
        justify-content: center;
    }

    .profile_row {
        flex-direction: column-reverse;
    }

    .profile_row.change_password {
        flex-direction: column;
    }

    .upload_profile {
        width: 100%;
        margin: 0 0 25px;
    }

    .upload_profile h2 {
        font-size: 16px;
    }

    .password_requirements {
        margin: 25px 0 0;
    }

    .profile_row .form {
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .upload_profile .border_top {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .account_tabs .nav-item+.nav-item {
        margin-left: 10px;
    }

    .account_tabs .nav-link>img {
        max-width: 14px;
        margin-right: 4px;
    }
}

@media screen and (max-width: 360px) {
    .account_tabs .nav-link {
        padding: 10px;
        font-size: 13px;
    }
}

.account_section {
    display: flex;
    min-height: 750px;
}

.account_col_left {
    width: 25%;
    flex-shrink: 0;
    margin-right: 40px;
}

.account_col_right {
    flex: 1;
}

.account_tabs {
    flex-direction: column;
}

.account_tabs .nav-item {
    margin: 0 0 20px;
    padding-bottom: 20px;
}

.account_tabs .nav-link {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    background-color: var(--bgLight);
    color: var(--secondaryText);
    font-weight: 600;
    padding: 16px 30px;
}

.account_tabs .nav-link>img {
    margin-right: 10px;
}

.account_tabs .nav-link.active>img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.account_tabs .nav-item:not(:nth-last-of-type(1)) {
    border-bottom: 1px solid var(--borderLight);
}

.account_col_right .tab-pane {
    border: 1px solid var(--bgLight);
    padding: 24px;
}

.profile_row {
    display: flex;
    justify-content: space-between;
}

.profile_row .form {
    flex-shrink: 0;
    width: 50%;
    max-width: 380px;
}

.profile_row .form_field {
    margin-bottom: 30px;
}

.profile_row .btn_lg {
    margin-top: 40px;
}

.upload_profile {
    margin: 0 40px;
}

.upload_profile h2 {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
}

.upload_profile .border_top {
    padding-top: 14px;
    color: var(--businessGray);
    margin-bottom: 40px;
    text-align: center;
    border-top: 1px solid var(--borderLight);
}

.profile_image {
    position: relative;
    width: 160px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.profile_image>img {
    border-radius: 50%;
    width: 160px;
    height: 160px;
    object-fit: cover;
    object-position: top center;
}

.edit_profile {
    background-color: var(--white);
    width: 45px;
    height: 45px;
    border: 0;
    position: absolute;
    border-radius: 50%;
    bottom: 0;
    right: 0;
    filter: drop-shadow(0px 5.554px 5.554px rgba(0, 0, 0, 0.06));
}

.file_input {
    background-color: var(--white);
    width: 45px;
    height: 45px;
    border: 0;
    position: absolute;
    border-radius: 50%;
    bottom: 0;
    right: 0;
    opacity: 0;
    cursor: pointer;
    filter: drop-shadow(0px 5.554px 5.554px rgba(0, 0, 0, 0.06));
}

.password_requirements {
    font-size: 14px;
    margin-left: 30px;
}

.password_requirements h2 {
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 10px;
}

.password_requirements ul {
    padding-left: 20px;
}

.password_requirements ul li {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    list-style: disc;
    margin-bottom: 5px;
}

@media screen and (max-width: 1366px) {
    .upload_profile {
        margin: 0 0 0 30px;
    }
}

@media screen and (max-width: 1200px) {
    .account_col_left {
        margin-right: 20px;
    }

    .account_col_left .heading-view-all .heading-text {
        font-size: 20px;
    }

    .upload_profile h2 {
        font-size: 16px;
    }

    .profile_image>img {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 992px) {
    .profile_image>img {
        width: 120px;
        height: 120px;
    }

    .edit_profile {
        width: 35px;
        height: 35px;
        right: 15px;
    }

    .edit_profile>img {
        max-width: 16px;
    }

    .account_tabs .nav-link {
        padding: 12px 20px;
    }

    .upload_profile h2 {
        font-size: 14px;
    }

    .upload_profile .border_top {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .account_col_right .tab-pane {
        padding: 20px;
    }

    .profile_row .form_field {
        margin-bottom: 24px;
    }

    .profile_row .btn_lg {
        margin-top: 30px;
    }

    .password_requirements h2 {
        font-size: 14px;
        line-height: normal;
    }
}

@media screen and (max-width: 850px) {
    .profile_image>img {
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 767px) {
    .account_section {
        min-height: auto;
        flex-direction: column;
    }

    .account_col_left {
        margin: 0;
        width: 100%;
    }

    .account_col_left .heading-view-all .heading-text {
        font-size: 16px;
    }

    .account_tabs {
        flex-direction: row;
        margin-bottom: 25px;
    }

    .account_tabs .nav-item {
        padding-bottom: 0;
        margin-bottom: 0;
        flex: 1;
    }

    .account_tabs .nav-item+.nav-item {
        margin-left: 20px;
    }

    .account_tabs .nav-item:not(:nth-last-of-type(1)) {
        border-bottom: 0;
    }

    .account_tabs .nav-link {
        text-align: center;
        justify-content: center;
    }

    .profile_row {
        flex-direction: column-reverse;
    }

    .profile_row.change_password {
        flex-direction: column;
    }

    .upload_profile {
        width: 100%;
        margin: 0 0 25px;
    }

    .upload_profile h2 {
        font-size: 16px;
    }

    .password_requirements {
        margin: 25px 0 0;
    }

    .profile_row .form {
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .upload_profile .border_top {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .account_tabs .nav-item+.nav-item {
        margin-left: 10px;
    }

    .account_tabs .nav-link>img {
        max-width: 14px;
        margin-right: 4px;
    }
}

@media screen and (max-width: 360px) {
    .account_tabs .nav-link {
        padding: 10px;
        font-size: 13px;
    }
}

.account_section {
    display: flex;
    min-height: 750px;
}

.account_col_left {
    width: 25%;
    flex-shrink: 0;
    margin-right: 40px;
}

.account_col_right {
    flex: 1;
}

.account_tabs {
    flex-direction: column;
}

.account_tabs .nav-item {
    margin: 0 0 20px;
    padding-bottom: 20px;
}

.account_tabs .nav-link {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    background-color: var(--bgLight);
    color: var(--secondaryText);
    font-weight: 600;
    padding: 16px 30px;
}

.account_tabs .nav-link>img {
    margin-right: 10px;
}

.account_tabs .nav-link.active>img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.account_tabs .nav-item:not(:nth-last-of-type(1)) {
    border-bottom: 1px solid var(--borderLight);
}

.account_col_right .tab-pane {
    border: 1px solid var(--bgLight);
    padding: 24px;
}

.profile_row {
    display: flex;
    justify-content: space-between;
}

.profile_row .form {
    flex-shrink: 0;
    width: 50%;
    max-width: 380px;
}

.profile_row .form_field {
    margin-bottom: 30px;
}

.profile_row .btn_lg {
    margin-top: 40px;
}

.upload_profile {
    margin: 0 40px;
}

.upload_profile h2 {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
}

.upload_profile .border_top {
    padding-top: 14px;
    color: var(--businessGray);
    margin-bottom: 40px;
    text-align: center;
    border-top: 1px solid var(--borderLight);
}

.profile_image {
    position: relative;
    width: 160px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.profile_image>img {
    border-radius: 50%;
    width: 160px;
    height: 160px;
    object-fit: cover;
    object-position: top center;
}

.edit_profile {
    background-color: var(--white);
    width: 45px;
    height: 45px;
    border: 0;
    position: absolute;
    border-radius: 50%;
    bottom: 0;
    right: 0;
    filter: drop-shadow(0px 5.554px 5.554px rgba(0, 0, 0, 0.06));
}

.file_input {
    background-color: var(--white);
    width: 45px;
    height: 45px;
    border: 0;
    position: absolute;
    border-radius: 50%;
    bottom: 0;
    right: 0;
    opacity: 0;
    cursor: pointer;
    filter: drop-shadow(0px 5.554px 5.554px rgba(0, 0, 0, 0.06));
}

.password_requirements {
    font-size: 14px;
    margin-left: 30px;
}

.password_requirements h2 {
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 10px;
}

.password_requirements ul {
    padding-left: 20px;
}

.password_requirements ul li {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    list-style: disc;
    margin-bottom: 5px;
}

@media screen and (max-width: 1366px) {
    .upload_profile {
        margin: 0 0 0 30px;
    }
}

@media screen and (max-width: 1200px) {
    .account_col_left {
        margin-right: 20px;
    }

    .account_col_left .heading-view-all .heading-text {
        font-size: 20px;
    }

    .upload_profile h2 {
        font-size: 16px;
    }

    .profile_image>img {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 992px) {
    .profile_image>img {
        width: 120px;
        height: 120px;
    }

    .edit_profile {
        width: 35px;
        height: 35px;
        right: 15px;
    }

    .edit_profile>img {
        max-width: 16px;
    }

    .account_tabs .nav-link {
        padding: 12px 20px;
    }

    .upload_profile h2 {
        font-size: 14px;
    }

    .upload_profile .border_top {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .account_col_right .tab-pane {
        padding: 20px;
    }

    .profile_row .form_field {
        margin-bottom: 24px;
    }

    .profile_row .btn_lg {
        margin-top: 30px;
    }

    .password_requirements h2 {
        font-size: 14px;
        line-height: normal;
    }
}

@media screen and (max-width: 850px) {
    .profile_image>img {
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 767px) {
    .account_section {
        min-height: auto;
        flex-direction: column;
    }

    .account_col_left {
        margin: 0;
        width: 100%;
    }

    .account_col_left .heading-view-all .heading-text {
        font-size: 16px;
    }

    .account_tabs {
        flex-direction: row;
        margin-bottom: 25px;
    }

    .account_tabs .nav-item {
        padding-bottom: 0;
        margin-bottom: 0;
        flex: 1;
    }

    .account_tabs .nav-item+.nav-item {
        margin-left: 20px;
    }

    .account_tabs .nav-item:not(:nth-last-of-type(1)) {
        border-bottom: 0;
    }

    .account_tabs .nav-link {
        text-align: center;
        justify-content: center;
    }

    .profile_row {
        flex-direction: column-reverse;
    }

    .profile_row.change_password {
        flex-direction: column;
    }

    .upload_profile {
        width: 100%;
        margin: 0 0 25px;
    }

    .upload_profile h2 {
        font-size: 16px;
    }

    .password_requirements {
        margin: 25px 0 0;
    }

    .profile_row .form {
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .upload_profile .border_top {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .account_tabs .nav-item+.nav-item {
        margin-left: 10px;
    }

    .account_tabs .nav-link>img {
        max-width: 14px;
        margin-right: 4px;
    }
}

@media screen and (max-width: 360px) {
    .account_tabs .nav-link {
        padding: 10px;
        font-size: 13px;
    }
}