.account_container {
    background-color: #F4F6FA;
    padding-bottom: 40px;
}

.account_header_container {
    height: 172.5px;
    background-color: #123171;
    padding-top: 18px;
}

.account_header_container_wrapper {
    max-width: 1250px;
    margin: 0 auto;
}

.account_header_text {
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
}

.account_header_profile_container_wrapper {
    max-width: 1250px;
    margin: 0 auto;
    padding-bottom: 24px;
}

.account_header_profile_container {
    height: 200px;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 10px 16px 0px 16px;
    margin-top: -80px;
}

.account_header_profile_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 13px;
}

.account_profile_image_container {
    position: relative;
}

.account_profile_image {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    object-fit: cover;
}

.account_profile_edit_icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.account_profile_header_detail_container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.account_profile_header_detail_text {
    font-weight: 700;
    font-size: 16px;
    color: #0B243F;
}

.account_profile_header_detail_subtext {
    display: flex;
    gap: 20px;
    font-weight: 400;
    font-size: 14px;
    color: #B2B2B2;
}

.account_profile_header_page_selector_container {
    display: flex;
    height: 62px;
}

.account_profile_header_page_selector_wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 105px;
    cursor: pointer;
}

.account_profile_header_page_selector_text {
    position: relative;
    font-weight: 400;
    font-size: 15px;
    color: #00000040;
    transition: color 0.3s;
}

.account_profile_header_page_selector_line {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: transparent;
    transition: background-color 0.3s;
    z-index: 0;
}

.account_profile_header_page_selector_wrapper.active .account_profile_header_page_selector_text {
    color: #0264E5;
}

.account_profile_header_page_selector_wrapper.active .account_profile_header_page_selector_line {
    background-color: #0264E5;
}

.account_profile_header_page_selector_wrapper:not(.active):hover .account_profile_header_page_selector_text {
    color: #0264E599;
}

.account_profile_header_page_selector_wrapper:not(.active):hover .account_profile_header_page_selector_line {
    background-color: #0264E599;
}

.account_profile_detail_wrapper {
    display: flex;
    gap: 32px;
    max-width: 1250px;
    margin: 0 auto;
}

.account_menu_container {
    width: 248px;
    height: 100%;
    padding: 10px;
    border-radius: 10px;
    background-color: #FFFFFF;
}

.account_menu_sub {
    display: flex;
    align-items: center;
    height: 48px;
    padding: 8px;
    border-radius: 10px;
    font-weight: 400;
    font-size: 14px;
    color: #BFBFBF;
    cursor: pointer;
    transition: background-color 0.3s;
}

.account_menu_sub_bullet {
    padding-left: 5px;
    margin-right: 8px;
}

.account_menu_sub.page_active {
    color: #0264E5;
    background-color: #F3F9FB;
    font-weight: 600;
    cursor: auto;
}

.account_menu_sub:not(.page_active):hover {
    background-color: #F3F9FBDD;
}

.account_menu_sub_page.account_submenu_active {
    background-color: #F3F9FB;
    font-weight: 600;
    color: #0264E5;
}

.account_menu_sub_page:not(.account_submenu_active):hover {
    background-color: #F3F9FBDD;
}

.account_profile_container {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.account_profile_card_container {
    border-radius: 10px;
    background-color: #FFFFFF;
    margin-bottom: 32px;
}

.account_profile_card_header {
    height: 62px;
    padding: 16px 24px;
    border-radius: 10px 10px 0px 0px;
    background-color: #E0E4EE;
}

.account_profile_card_header_text {
    font-weight: 600;
    font-size: 14px;
    color: #475569;
}

.account_profile_card_detail {
    padding: 16px;
}

.account_profile_card_input_container {
    font-weight: 400;
    font-size: 14px;
    color: #000000D9;
    display: flex;
    gap: 10px;
    padding-bottom: 10px;
}

.account_profile_card_input_wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.account_input,
.account_input[type='password'],
.account_input[type='text'] {
    width: 100%;
    height: 40px;
    border: 1px solid #9E9E9E40;
    border-radius: 10px;
    padding-left: 20px;
    font-weight: 400;
    font-size: 14px;
    color: #6A737D;
}

.account_input[type='password'],
.account_input[type='password']:focus,
.account_input[type='text'],
.account_input[type='text']:focus {
    box-shadow: none;
    padding: 0px 0px 0px 20px;
}

.account_input:disabled,
.account_input[type='password']:disabled,
.account_input[type='text']:disabled,
.account_input[readonly],
.account_input[type='password'][readonly],
.account_input[type='text'][readonly] {
    background-color: #9E9E9E20 !important;
}

.account_select {
    color: #6A737D99;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
}

.account_select:focus {
    color: #6A737D99;
    box-shadow: none;
}

.account_select_wrapper {
    position: relative;
    display: inline-block;
}

.account_select_custom_arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 5.5px;
    pointer-events: none;
    user-select: none;
}

.account_select_tom .ts-control {
    height: 40px !important;
    border: 1px solid #9E9E9E40 !important;
    border-radius: 10px !important;
    padding-left: 20px !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    color: #6A737D !important;
    box-shadow: none !important;
}

.account_select_tom.disabled .ts-control {
    background-color: #9E9E9E20 !important;
    opacity: 1 !important;
}

.account_date_input {
    height: 40px !important;
    border: 1px solid #9E9E9E40 !important;
    border-radius: 10px !important;
    padding-left: 20px !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    color: #6A737D !important;
    box-shadow: none !important;
}

.account_checkbox_container {
    display: flex;
    align-items: center;
    height: 40px;
}

.account_checkbox_wrapper {
    display: flex;
    align-items: center;
    width: 50%;
    font-weight: 400;
    font-size: 14px;
    color: #2E2E2ED9;
}

.account_checkbox_wrapper input[type='checkbox'] {
    width: 16px;
    height: 16px;
}

.account_checkbox_address_option_wrapper {
    width: 33%;
}

.account_summit_button_wrapper {
    display: flex;
    justify-content: end;
}

.account_summit_button {
    height: 40px;
    background-color: #123171;
    border-radius: 6px;
    margin: 0px;
    font-weight: 700;
    font-size: 15px;
    color: #FFFFFF;
}

.account_profile_forget_password_instruction {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 10px;
}

.account_profile_forget_password_instruction_wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 400;
    font-size: 12px;
    color: #00000040;
}

.account_profile_forget_password_check_icon { 
    font-size: 14px;
    transition: color .2s ease; 
}

.account_profile_forget_password_check_icon.pass {
    color: green;
}

.account_profile_forget_password_check_icon.fail {
    color: red;
}

.field-icon {
    position: absolute;
    right: 12px;
    top: 73%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #666;
}

.field-icon:hover { 
    color: #111; 
}

.account_profile_close_account_container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.account_profile_close_account_wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border-radius: 10px;
    font-weight: 400;
    font-size: 12px;
}

.notification-container {
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.notification-item {
    padding: 16px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #fff;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.notification-success {
    background-color: #52c41a;
}

.notification-info {
    background-color: #1890ff;
}

.notification-error {
    background-color: #ff4d4f;
}

.account_menu_sub_chevron {
    width: 10px;
    transition: transform 0.2s ease;
}

.account_menu_sub_chevron.rotate {
    transform: rotate(180deg);
}

.account_course_history_filter_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account_input_wrapper {
    position: relative;
    display: inline-block;
}

.account_search_icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    pointer-events: none;
}

.account_course_history_filter_button_container {
    display: flex;
    justify-content: end;
    gap: 10px;
}

.account_course_history_filter_button_search {
    background-color: #C8332E;
    font-weight: 700;
    font-size: 12px;
    color: #FFFFFF;
    border-radius: 5px;
    height: 34px;
    width: 100px;
    margin: 0;
}

.account_course_history_filter_button_reset {
    background-color: #FFFFFF;
    border: 1px solid #C8332E;
    font-weight: 700;
    font-size: 12px;
    color: #C8332E;
    border-radius: 5px;
    height: 34px;
    margin: 0;
}

.account_course_history_table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    overflow: hidden;
    border-radius: 0px 0px 20px 20px;
    margin-bottom: 0px;
    border-left: 1px solid #CBD5E1;
    border-right: 1px solid #CBD5E1;
}

.account_course_history_table th {
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    color: #1E293B;
    text-align: center;
}

.account_course_history_table td {
    font-weight: 400;
    font-size: 12px;
    color: #475569;
    text-align: center;
}

.account_course_history_table th, .account_course_history_table td {
    padding: 14px 24px !important;
    position: relative;
    border-bottom: 1px solid #CBD5E1;
}

.account_course_history_table thead{
    background-color: #F8FAFC;
}

.account_course_history_table thead tr {
    height: 64px;
    background-color: #F8FAFC;
}

.account_course_history_table tbody td {
    height: 72px;
    background-color: #FFFFFF;
}

.account_course_history_table tbody tr:last-child {
    border-bottom: none;
}

.account_course_history_table th:nth-child(1),
.account_course_history_table td:nth-child(1) {
    width: 8%;
}

.account_course_history_table th:nth-child(2),
.account_course_history_table td:nth-child(2) {
    width: 25%;
    text-align: left;
}

.account_course_history_table th:nth-child(3),
.account_course_history_table td:nth-child(3) {
    width: 17%;
    text-align: left;
}

.account_course_history_table th:nth-child(4),
.account_course_history_table td:nth-child(4) {
    width: 15%;
    text-align: left;
}

.account_course_history_table th:nth-child(5),
.account_course_history_table td:nth-child(5) {
    width: 15%;
    text-align: left;
}

.account_course_history_table th:nth-child(6),
.account_course_history_table td:nth-child(6) {
    width: 20%;
    text-align: left;
}

.account_table_ellipsis {
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.account_activity_history_table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    overflow: hidden;
    border-radius: 0px 0px 20px 20px;
    margin-bottom: 0px;
    border-left: 1px solid #CBD5E1;
    border-right: 1px solid #CBD5E1;
}

.account_activity_history_table th {
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    color: #1E293B;
    text-align: center;
}

.account_activity_history_table td {
    font-weight: 400;
    font-size: 12px;
    color: #475569;
    text-align: center;
}

.account_activity_history_table th, .account_activity_history_table td {
    padding: 14px 24px !important;
    position: relative;
    border-bottom: 1px solid #CBD5E1;
}

.account_activity_history_table thead{
    background-color: #F8FAFC;
}

.account_activity_history_table thead tr {
    height: 64px;
    background-color: #F8FAFC;
}

.account_activity_history_table tbody td {
    height: 72px;
    background-color: #FFFFFF;
}

.account_activity_history_table tbody tr:last-child {
    border-bottom: none;
}

.account_activity_history_table th:nth-child(1),
.account_activity_history_table td:nth-child(1) {
    width: 8%;
}

.account_activity_history_table th:nth-child(2),
.account_activity_history_table td:nth-child(2) {
    width: 22%;
    text-align: left;
}

.account_activity_history_table th:nth-child(3),
.account_activity_history_table td:nth-child(3) {
    width: 22%;
    text-align: left;
}

.account_activity_history_table th:nth-child(4),
.account_activity_history_table td:nth-child(4) {
    width: 16%;
    text-align: left;
}

.account_activity_history_table th:nth-child(5),
.account_activity_history_table td:nth-child(5) {
    width: 19%;
    text-align: left;
}

.account_activity_history_table th:nth-child(6),
.account_activity_history_table td:nth-child(6) {
    width: 12%;
    text-align: left;
}

.account_profile_card_header_table {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #CBD5E1;
}

.account_add_button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #C8332E;
    border-radius: 10px;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    margin: 0;
}

.account_icon_row{
    font-size: 16px !important;
    color: #000 !important;
    text-align: center;
}

.account_plus_icon {
    width: 10px;
    height: 10px;
}

@media (max-width: 1280px){
    .account_header_container_wrapper {
        margin: 0 25px;
    }
    
    .account_header_profile_container_wrapper {
        margin: 0 25px;
        margin-top: -80px;
    }

    .account_profile_detail_wrapper {
        margin: 0 25px;
    }
}

@media (max-width: 900px){
    .account_profile_card_input_container {
        flex-direction: column;
    }
    
    .account_checkbox_address_option {
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }

    .account_checkbox_address_option_wrapper {
        width: 100%;
    }
}

@media (max-width: 820px){

}

@media (max-width: 680px){
    .account_menu_container {
        width: auto;
    }
}

@media (max-width: 480px){

}

@media (max-width: 380px){

}