/* @import "popup.css";
@import "pin.css";
@import "font/NotoSansThai/NotoSansThai.css";
@import "font/NotoSansDisplay/NotoSansDisplay.css"; */

/* ====== Basic Setting ====== */

* {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
    -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
    outline: none !important;
}

html {
    -webkit-user-select: none;
}

body {
    -webkit-touch-callout: none;
    /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;
    /* prevent webkit from resizing text to fit */
    /*-webkit-user-select: none;                   prevent copy paste, to allow, change 'none' to 'text' */
    height: 100%;
    width: 100vw;
    margin: 0px;
    padding: 0px;
    font-family: -apple-system, BlinkMacSystemFont, Arial, Helvetica, sans-serif;
    position: relative;
    color: #404040;
    background-color: #F5F5F5;
}

input, section, textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* font-family: 'NotoSansDisplay', 'NotoSansThai'; */
}

.content_box {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    border-radius: inherit;
}

.content_box_flow {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    border-radius: inherit;
}

.content_box_flow_x {
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    border-radius: inherit;
}

.content_box_flow_xy {
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: auto;
    position: relative;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    border-radius: inherit;
}

.content_box_flow_xy_show {
    width: 100%;
    height: 100%;
    overflow-x: scroll;
    overflow-y: scroll;
    position: relative;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    border-radius: inherit;
}

.btn {
    cursor: pointer;
    transition: 0.2s;
}

.btn:hover {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
}

.btn:active {
    box-shadow: none;
    transform: scale(0.95);
}

.btn_ns {
    cursor: pointer;
    transition: 0.2s;
}

.btn_ns:hover {
    transform: scale(1.1);
}

.btn_ns:active {
    transform: scale(0.9);
}

.link_box {
    cursor: pointer;
    transition: 0.2s;
}

.link_box:active {
    transform: scale(0.95);
}

.txt_color_red {
    color: #DE6D68 !important;
}

.txt_color_green {
    color: #399899 !important;
}

.txt_color_yellow {
    color: #F5A949 !important;
}

.bg_color_red {
    background-color: #DE6D68 !important;
}

.bg_color_blue {
    background-color: #62BAE0 !important;
}

.bg_color_green {
    background-color: #399899 !important;
}

.bg_color_yellow {
    background-color: #F5A949 !important;
}

.bg_color_white {
    background-color: #FFFFFF !important;
}
.bg_color_gray {
    background-color: #808080 !important;
}

/* ====== For Customize the label ====== */

    /* Customize the label (the container) */
    .container {
        display: inline-block;
        position: relative;
        padding-left: 32px;
        margin-top: 10px;
        margin-bottom: 10px;
        margin-right: 20px;
        cursor: pointer;
        font-size: 16px;
        line-height: 22px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .container_br {
        display: block;
    }
    
    /* Hide the browser's default checkbox */
    .container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }
    
    /* Create a custom checkbox */
    .radio_btn .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 22px;
        width: 22px;
        border-radius: 11px;
        background-color: #fff;
        box-sizing: border-box;
        border: 2px solid #404040;
        transition: 0.2s;
    }
    
    /* On mouse-over, add a grey background color */
    .radio_btn:hover input ~ .checkmark {
        background-color: #eee;
        border-color: #62BAE0;
    }
    
    /* When the checkbox is checked, add a blue background */
    .radio_btn input:checked ~ .checkmark {
        background-color: #fff;
    }
    
    /* Create the checkmark/indicator (hidden when not checked) */
    .checkbox_btn .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    /* Create the checkmark/indicator (hidden when not checked) */
    .radio_btn .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }
    
    /* Show the checkmark when checked */
    .radio_btn input:checked ~ .checkmark:after {
        display: block;
    }

    /* Show the checkmark when checked */
    .radio_btn input:enabled ~ .checkmark:after {
        display: block;
        top: 0px;
        left: 0px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #fff;
        transition: 0.1s;
    }
  
    /* Style the checkmark/indicator */
    .checkbox_btn .checkmark:after {
        left: 9px;
        top: 5px;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    /* Style the checkmark/indicator */
    .radio_btn input:checked ~ .checkmark:after {
        top: 3px;
        left: 3px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #404040;
    }


/* ====== For Popup Coding ====== */

.popup_bg {
    width: 100vw;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 100;
}

.popup_bg2 {
    width: 100vw;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 102;
}

.popup_box {
    position: absolute;
    width: 480px;
    background-color: #FFFFFF;
    border-radius: 12px;
    z-index: 101;
    box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.15);
    left: calc(50vw - (480px / 2));
    transform: translateY(calc(50vh - 50%));
    box-sizing: border-box;
    padding: 0px 12px;
}

.popup_box .txt_des {
    font-size: 14px;
    color: #808080;
}

.popup_box .table_input_group {
    width: 100%;
    margin-top: 8px;
}

.popup_box .table_input_group .c1 {
    padding: 3px 0px;
    width: 180px;
}

.popup_box .table_input_group .c2 {
    padding: 3px 0px;
}

.popup_box .table_input_group .c2 input {
    width: 100%;
    height: 36px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    padding-left: 8px;
    font-size: 16px;
    transition: 0.2s;
}

.popup_box .table_input_group .c2 input::placeholder {
    color: #D9D9D9;
}

.popup_box .table_input_group .c2 input:hover {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
}

.popup_box .table_input_group .c2 input:focus {
    border: 2px solid #62BAE0;
    box-shadow: 0px 0px 6px #62BAE0;
    padding-left: 7px;
    transition: 0.1s;
}

.popup_box .btn_mid_action_option_section {
    width: 100%;
    margin-bottom: 18px;
    margin-top: 18px;
    text-align: center;
}

.popup_box .btn_mid_action_option_section .btn_mid_action_option {
    width: 270px;
    height: 36px;
    line-height: 36px;
    background-color: #404040;
    border-radius: 8px;
    box-sizing: border-box;
    color: #FFFFFF;
    display: inline-block;
    margin-top: 8px;
}

.popup_box .btn_mid_action_option_section .btn_mid_action_option:first-child {
    margin-top: 0px;
}

.select_option_section {
    width: 100%;
    height: 36px;
}

.status_box_section .select_option_section {
    display: inline-block;
    width: 154px;
}


.select_option_section select {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-left: 9px;
    padding-right: 27px;
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.select_option_section select:hover {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
}

.select_option_section select:focus {
    border: 2px solid #62BAE0;
    box-shadow: 0px 0px 6px #62BAE0;
    padding-left: 8px;
    padding-right: 26px;
    transition: 0.1s;
}

.select_option_section .select_option_icon {
    position: absolute;
    width: 8px;
    right: 9px;
    top: 15px;
}

.popup_box .title_bar {
    width: calc(100%);
    height: 60px;
    border-bottom: 1px solid #CBCBCB;
    box-sizing: border-box;
    line-height: 60px;
    margin-bottom: 18px;
}

.popup_box .title_bar .txt {
    font-size: 18px;
    font-weight: bold;
    margin-left: 6px;
}

.popup_box .title_bar .close_btn {
    position: absolute;
    right: 0px;
    top: 11px;
}

.popup_box .footer_bar {
    width: calc(100%);
    height: 60px;
    border-top: 1px solid #CBCBCB;
    box-sizing: border-box;
    line-height: 60px;
    text-align: center;
    margin-top: 18px;
}

.popup_box .footer_bar .btn_h36px {
    margin-top: 11px;
    display: inline-block;
}

/* ====== For Toast Coding ====== */
.toast_bg {
    width: 600px;
    height: 240px;
    position: fixed;
    z-index: 9999998;
    background-image: radial-gradient(farthest-side at 100% 100%, rgba(255,255,255,0.1), rgba(255,255,255,0));
    bottom: 0px;
    right: 0px;
}

.toast_box {
    padding: 10px 12px;
    height: 42px;
    position: fixed;
    background-color: #FFFFFF;
    z-index: 9999999;
    right: 24px;
    bottom: 24px;
    border-radius: 21px;
    box-sizing: border-box;
    border: solid 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    transition: 0.2s;
    cursor: pointer;
}

.toast_box:hover {
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.25);
}

.toast_box:active {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
    transform: scale(0.95);
}

.toast_box .txt_toast {
    font-size: 16px;
    color: #FFFFFF;
    float: left;
    margin-left: 8px;
    margin-right: 12px;
}

.toast_box .status_icon {
    height: 20px;
    float: left;
}

.toast_box .close_icon {
    height: 20px;
    float: left;
}

/* ====== For Custom Coding ====== */

.sidebar_section {
    width: 220px;
    height: 100%;
    background-color: #62BAE0;
    position: fixed;
}

.sidebar_section .logo_box {
    width: 100%;
    position: absolute;
    left: 0px;
    top: 12px;
}

.sidebar_section .logo_box img {
    width: 100%;
}

.sidebar_section .menubar_section {
    width: calc(100% - 8px - 8px);
    height: calc(100% - 108px - 78px);
    border-radius: 12px;
    background-color: #FFFFFF;
    position: absolute;
    left: 8px;
    top: 108px;
}

.sidebar_section .menubar_section .profile_pic {
    width: 54px;
    height: 54px;
    box-sizing: border-box;
    border-radius: calc(54px / 2);
    border: 1px solid #FFFFFF;
    position: absolute;
    left: 12px;
    top: -27px;
    background-image:    url('../img/sidebar/avatar_default.png');
    background-size:     cover;
    background-repeat:   no-repeat;
    background-position: center center; 
    cursor: pointer; 
    z-index: 999;
}

.sidebar_section .menubar_section .profile_info_box {
    width: 100%;
    height: 94px;
}

.sidebar_section .menubar_section .profile_txt_1 {
    font-size: 16px;
    font-weight: bold;
    padding-top: 30px;
    width: 100%;
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
}

.sidebar_section .menubar_section .profile_txt_2 {
    font-size: 12px;
    width: 100%;
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    margin-top: 2px;
}

.sidebar_section .menubar_section .line_divide {
    width: calc(100% - 8px - 8px);
    height: 1px;
    background-color: #D9D9D9;
    border-radius: 0.5px;
    left: 8px;
    bottom: 0px;
    position: absolute;
}

.sidebar_section .menubar_section .scroll_menu {
    width: 100%;
    height: calc(100% - 94px);
    border-radius: 0px 0px 12px 12px;
}

.sidebar_section .menubar_section .scroll_menu .menu_list {
    height: 38px;
    line-height: 38px;
    width: calc(100% - 8px - 8px);
    margin-left: 8px;
    background-color: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 4px;
    cursor: pointer;
    transition: transform 0.2s;
}

.sidebar_section .menubar_section .scroll_menu .menu_list_selected {
    background-color: #62BAE0;
}

.sidebar_section .menubar_section .scroll_menu .menu_list .icon {
    float: left;
    margin-left: 5px;
    margin-top: 5px;
    height: 28px;
}

.sidebar_section .menubar_section .scroll_menu .menu_list .txt {
    float: left;
    font-size: 14px;
    color: #404040;
    margin-left: 4px;
    letter-spacing: -0.25px;
}

.sidebar_section .menubar_section .scroll_menu .menu_list_selected .txt {
    font-weight: bold;
    color: #FFFFFF;
}

.sidebar_section .menubar_section .scroll_menu .menu_list:hover {
    background-color: #62BAE0;
}

.sidebar_section .menubar_section .scroll_menu .menu_list:hover .txt {
    color: #FFFFFF;
}

.sidebar_section .menubar_section .scroll_menu .menu_list:active {
    transform: scale(0.95);
}

.sidebar_section .menubar_section .scroll_menu .content_box_flow .menu_list:first-child {
    margin-top: 8px;
}

.sidebar_section .menubar_section .scroll_menu .content_box_flow .menu_list:last-child {
    margin-bottom: 12px;
}

.sidebar_section .copyright_txt {
    position: absolute;
    width: 100%;
    font-size: 10px;
    bottom: 8px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.sidebar_section .logout_btn_section {
    width: 100%;
    height: 42px;
    position: absolute;
    bottom: 28px;
    padding-left: 8px;
    padding-right: 8px;
    box-sizing: border-box;
}

.btn_h42px {
    background-color: #404040;
    height: 42px;
    width: fit-content;
    border-radius: 12px;
    padding: 11px 16px;
    box-sizing: border-box;
    color: #FFFFFF;
}

.btn_full_width {
    width: 100%;
}

.btn_width_320 {
    width: 320px;
    max-width: 100%;
}

.btn_h42px img {
    float: left;
}

.btn_h42px span {
    float: left;
    margin-left: 10px;
}

.main_display_section {
    width: calc(100vw - 220px);
    height: 100%;
    position: fixed;
    right: 0px;
    top: 0px;
}

.main_display_section .title_bar {
    width: calc(100vw - 220px);
    height: 58px;
    position: fixed;
    top: 0px;
    right: 0px;
    line-height: 58px;
}

.main_display_section .title_bar .line_divide {
    width: calc(100% - 12px - 12px);
    height: 1px;
    background-color: #D9D9D9;
    border-radius: 0.5px;
    left: 12px;
    bottom: 0px;
    position: absolute;
}

.main_display_section .title_bar .title_section {
    height: 100%;
    width: fit-content;
    float: left;
    padding-left: 18px;
}

.main_display_section .title_bar img {
    float: left;
    margin-top: 18px;
}

.main_display_section .title_bar .title_txt {
    font-size: 18px;
    margin-left: 14px;
    font-weight: bold;
    float: left;
}

.main_display_section .title_bar .title_txt:first-child {
    margin-left: 0px;
}

.main_display_section .btn_action_section {
    height: 100%;
    width: fit-content;
    float: right;
    padding-right: 12px;
}

.main_display_section .extent_class_section .btn_action_section {
    height: 100%;
    width: fit-content;
    float: right;
    padding-right: 0px;
}

.btn_h36px {
    background-color: #404040;
    height: 36px;
    line-height: 36px;
    width: fit-content;
    border-radius: 8px;
    padding: 0px 24px;
    font-size: 16px;
    font-weight: bold;
    box-sizing: border-box;
    color: #FFFFFF;
    display: inline-block;
}

.btn_action_section .btn_h36px {
    margin-top: 11px;
    margin-left: 12px;
    float: left;
}

.btn_inline {
    display: inline-block;
}

.main_display_section .btn_action_section .line_divide_vertical {
    height: calc(100% - 8px - 8px);
    width: 1px;
    background-color: #D9D9D9;
    border-radius: 0.5px;
    float: left;
    margin-left: 12px;
    margin-top: 8px;
}

.main_display_section .btn_action_section .status_box_section {
    height: 100%;
    float: left;
}

.main_display_section .btn_action_section .status_box_section .txt_des {
    font-weight: bold;
}

.main_display_section .btn_action_section .status_box_section .tag_status {
    background-color: #808080;
    box-sizing: border-box;
    padding: 4px 8px;
    width: fit-content;
    height: fit-content;
    font-weight: bold;
    color: #FFFFFF;
    border-radius: 8px;
    line-height: 18px;
}

.main_display_section .btn_action_section .status_box_section .select_option {
    height: 36px;
    box-sizing: border-box;
    padding-left: 9px;
    padding-right: 27px;
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.main_display_section .btn_action_section .status_box_section .select_option:hover {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
}

.main_display_section .btn_action_section .status_box_section .select_option:focus {
    border: 2px solid #62BAE0;
    box-shadow: 0px 0px 6px #62BAE0;
    padding-left: 8px;
    padding-right: 26px;
    transition: 0.1s;
}

.main_display_section .btn_action_section .status_box_section .select_option_icon {
    position: absolute;
    width: 8px;
    right: 9px;
    top: 9px;
}

.main_display_section .display_section {
    width: calc(100% - 12px - 12px);
    height: calc(100% - 58px - 12px - 12px);
    position: absolute;
    background-color: #FFFFFF;
    border-radius: 12px;
    left: 12px;
    bottom: 12px;
    box-sizing: border-box;
    border: 1px solid #D9D9D9;
    padding: 8px;
}

.main_display_section .display_info_section {
    width: calc(100% - 12px - 12px);
    height: calc(64px);
    position: absolute;
    left: 12px;
    top: 72px;
    box-sizing: border-box;
}

.main_display_section .display_info_section .t1 {
    position: absolute;
    top: 0px;
    left: 0px;
}

.main_display_section .display_info_section .t2 {
    position: absolute;
    top: 0px;
    right: 0px;
}

.main_display_section .display_info_section .t2 .txt_complete {

}

.main_display_section .display_info_section .t2 .txt_incomplete {
    margin-left: 18px;
}

.main_display_section .display_info_section .search_box_section {
    width: 320px;
    height: 36px;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.main_display_section .display_info_section .extent_class_section {
    width: 440px;
    height: 36px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    line-height: 36px;
}

.extent_class_section .btn_action_section .btn_h36px {
    margin-top: 0px;
}

.main_display_section .display_info_section .txt_date {
    font-weight: bold;
    margin-left: 6px;
}

.main_display_section .display_info_section .txt_bold {
    font-weight: bold;
    margin-left: 6px;
}

.main_display_section .display_info_box_section {
    width: calc(100% - 12px - 12px);
    height: calc(78px);
    position: absolute;
    left: 12px;
    top: 72px;
    box-sizing: border-box;
    border-radius: 12px;
    background-color: #FFFFFF;
    border: 1px solid #D9D9D9;
}

.main_display_section .display_info_box_section .profile_pic {
    width: 54px;
    height: 54px;
    box-sizing: border-box;
    border-radius: calc(54px / 2);
    border: 1px solid #FFFFFF;
    position: absolute;
    left: 11px;
    top: 11px;
    background-image:    url('../img/sidebar/avatar_default.png');
    background-size:     cover;
    background-repeat:   no-repeat;
    background-position: center center; 
    cursor: pointer; 
}

.main_display_section .display_info_box_section .profile_pic2 {
    width: 54px;
    height: 54px;
    box-sizing: border-box;
    border-radius: calc(54px / 2);
    border: 1px solid #FFFFFF;
    position: absolute;
    left: 11px;
    top: 11px;
    background-image:    url('../img/sidebar/avatar_default.png');
    background-size:     cover;
    background-repeat:   no-repeat;
    background-position: center center; 
    cursor: pointer; 
}

.main_display_section .display_info_box_section .status_box_section {
    height: 100%;
    position: absolute;
    line-height: 76px;
    padding-right: 11px;
    right: 0px;
    top: 0px;
}

.main_display_section .display_info_box_section .txt_des_section {
    height: 100%;
    position: absolute;
    box-sizing: border-box;
    left: 77px;
    top: 0px;
    padding: 13px 0px
}

.main_display_section .display_info_box_section .txt_des_section .t1 {
    font-size: 16px;
    font-weight: bold;
}

.main_display_section .display_info_box_section .txt_des_section .t2, .main_display_section .display_info_box_section .txt_des_section .t3 {
    font-size: 12px;
}

.main_display_section .display_info_box_section .status_box_section .txt_des {
    font-weight: bold;
}

.main_display_section .display_info_box_section .status_box_section .tag_status {
    background-color: #808080;
    box-sizing: border-box;
    padding: 4px 8px;
    width: fit-content;
    height: fit-content;
    font-weight: bold;
    color: #FFFFFF;
    border-radius: 8px;
    line-height: 18px;
}

.search_box {
    width: 100%;
    height: 100%;
}

input.search_box {
    background-color: #FFFFFF;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    border-radius: 10px;
    padding-left: 30px;
    font-size: 16px;
    transition: 0.2s;
}

input.search_box::placeholder {
    color: #8A8A8E;
}

input.search_box:hover {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
}

input.search_box:focus {
    border: 2px solid #62BAE0;
    box-shadow: 0px 0px 6px #62BAE0;
    padding-left: 29px;
    transition: 0.1s;
}

.search_box .search_searchbox_icon {
    position: absolute;
    width: 22px;
    left: 7px;
    top: calc(50% - (22px / 2));
}

.main_display_section .display_section_w_info_display {
    height: calc(100% - 58px - 12px - 64px - 12px - 12px);
}

.main_display_section .display_section_w_info_display_box {
    height: calc(100% - 58px - 12px - 78px - 12px - 12px);
}

.main_display_section .display_section .title_bar {
    width: 100%;
    height: 50px;
    position: absolute;
    top: 0px;
    box-sizing: border-box;
    border-bottom: 1px solid #CBCBCB;
    line-height: 42px;
    padding-bottom: 8px;
}

.main_display_section .display_section .title_bar .title_txt {
    font-size: 18px;
    font-weight: bold;
    width: fit-content;
}

.main_display_section .display_section .footer_bar {
    width: 100%;
    height: 48px;
    position: absolute;
    bottom: 0px;
    box-sizing: border-box;
    border-top: 1px solid #CBCBCB;
}

.main_display_section .display_section .footer_bar .btn_action_section {
    padding-right: 0px;
}

.main_display_section .footer_bar .btn_action_section .btn_h36px {
    margin-top: 8px;
    margin-left: 12px;
}

.main_display_section .footer_bar .btn_action_section .line_divide_vertical {
    height: calc(100% - 8px);
}

.display_section .content_box_flow {
    border-radius: 0px;
}

table {
    text-align: left;
    position: relative;
    border-collapse: separate;
    border-spacing: 0;
}

table.table_header {
    height: 100%;
    width: 100%;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
}

.popup_slide .table_header {
    height: 100%;
    width: unset;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
}

.table_header_box {
    width: 100%;
    height: 38px;
    background-color: #62BAE0;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

tr th {
    box-sizing: border-box;
    cursor: pointer;
}

tr th:hover {
    text-decoration: underline;
}

.no_hover tr th {
    cursor: unset;
}

.no_hover tr th:hover {
    text-decoration: none;
}

#student_progress_table .c1 {
    padding-left: 12px;
    width: 154px;
}

#student_progress_table .c1_popup_checkbox {
    width: 154px;
}

#student_progress_table .c1_7 {
    width: 160px;
}

#student_progress_table .c1_110px {
    padding-left: 12px;
    width: 110px;
}

#student_progress_table .c1_5 {
    padding-left: 12px;
    width: 270px;
}

#student_progress_table .c1_230px {
    padding-left: 12px;
    width: 230px;
}

#student_progress_table .c1_5_none_width{
    width: unset;
}

#student_progress_table .c2 {
    width: 240px;
}

#student_progress_table .c2_3 {
    width: 170px;
}

#student_progress_table .c2_first {
    width: 300px;
    padding-left: 12px;
}

#student_progress_table .c1_230 {
    width: 230px;
    padding-left: 12px;
}

#student_progress_table .c2_200 {
    width: 200px;
    padding-left: 12px;
}

#student_progress_table .c2_330px_first {
    width: 330px;
    padding-left: 12px;
}

#student_progress_table .c2_500px_first {
    width: 500px;
    padding-left: 12px;
}

#student_progress_table .c2_5 {
    width: 300px;
}

#student_progress_table .c2_330px {
    width: 330px;
}

#student_progress_table .c2_120px {
    width: 120px;
}
#student_progress_table .c2_110px {
    width: 110px;
}
#student_progress_table .c2_170px {
    width: 170px;
}
#student_progress_table .c3 {
    width: 120px;
}

#student_progress_table .c3_65px {
    width: 65px;
    text-align: center;
}

#student_progress_table .c3_5 {
    width: 180px;
}
#student_progress_table .c4 {
    width: 270px;
}
.student_progress_table_id .c4_width_140 {
    width: 140px;
}
#student_progress_table .c_btn_export {
    width: 120px;
}
#student_progress_table .c4_width_140 {
    width: 140px;
}
#student_progress_table .c4_width_110 {
    width: 110px;
}
.section_th_first_long .c_more{
    width: 21px;
}
.table_header_th_first_long .c_more{
    width: 21px;
}
.section_th_first_long .table_list  .c1{
    width: unset;
}
.table_header_th_first_long #student_progress_table .c1{
    width: 110px;
}
.table_header_th_first_long #student_progress_table .c1_110px{
    width: auto;
}
.section_th_first_long .table_list  .c1_110px{
    width: unset;
}

.section_th_first_long .c4{
    width: 270px;
}
#student_progress_table .c_more {
    width: 21px;
}

#student_progress_table .c6 {
    padding-left: 12px;
    width: 85px;
}

#student_progress_table .c6_no_padding {
    width: 85px;
}

#student_progress_table .c3_7 {
    width: 100px;
}

.table_list td.c6 {
    width: 85px;
}

#table_list .c3_7 {
    width: 100px;
}

.table_list .c_btn_export {
    width: 120px;
}
.table_list .c4_width_140 {
    width: 140px;
}
.table_header_box .sorting_symbol {
    margin-left: 4px;
}

.table_list td.c2_3 {
    width: 170px;
}

.display_list_section {
    width: 100%;
    height: calc(100% - 38px - 8px);
    position: absolute;
    bottom: 0px;
}

.display_list_section_w_footer {
    height: calc(100% - 38px - 8px - 48px - 8px);
    bottom: calc(48px + 8px);
}

.display_normal_section {
    width: 100%;
    height: calc(100% - 50px - 8px);
    position: absolute;
    bottom: 0px;
}

.display_normal_section_w_footer {
    height: calc(100% - 50px - 8px - 48px - 8px);
    bottom: calc(48px + 8px);
}

.main_display_section .display_normal_section_w_footer_2 {
    height: calc(100% - 50px);
    bottom: calc(48px + 8px);
}

.display_normal_section_no_titile_text {
    height: calc(100% - 50px);
    bottom: calc(48px + 8px);
}

.display_list_more_section {
    width: 100%;
    height: 100%;
    background-color: red;
}

.display_normal_section .content_box_flow {
    box-sizing: border-box;
    padding-top: 8px;
    padding-bottom: 8px;
}

.display_normal_section .txt_des {
    font-size: 14px;
    color: #808080;
}

.display_normal_section .table_input_group {
    width: 100%;
    margin-top: 8px;
}

.display_normal_section .table_input_group .c1 {
    padding: 3px 0px;
    width: 180px;
}

.display_normal_section .table_input_group .c1_txt_top {
    vertical-align: top;
    padding-top: 14px;
}

.display_normal_section .table_input_group .c2 {
    padding: 3px 0px;
}

.display_normal_section .table_input_group .c2_none_bottom {
    padding-bottom: 0px;
}

.display_normal_section .table_input_group .c2 .txt_input {
    width: 280px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    padding-left: 8px;
    font-size: 16px;
    transition: 0.2s;
}

.display_normal_section .table_input_group .c2 .txt_input::placeholder {
    color: #D9D9D9;
}

.display_normal_section .table_input_group .c2 .txt_input:hover {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
}

.display_normal_section .table_input_group .c2 .txt_input:focus {
    border: 2px solid #62BAE0;
    box-shadow: 0px 0px 6px #62BAE0;
    padding-left: 7px;
    transition: 0.1s;
}

.tab_expand_list {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: #F2F2F2;
    cursor: pointer;
    margin-top: 8px;
    transition: transform 0.2s;
}

.tab_expand_list:hover {
    background-color: #E6E6E6;
}

.tab_expand_list:active {
    transform: scaleX(0.99) scaleY(0.95);
}

.tab_expand_list:first-child {
    margin-top: 0px;
}

.tab_expand_list .t1 {
    font-size: 16px;
    font-weight: bold;
    color: #404040;
    height: 42px;
    width: fit-content;
    line-height: 42px;
    box-sizing: border-box;
    left: 12px;
    position: absolute;
}

.tab_expand_list .t2 {
    font-size: 16px;
    color: #404040;
    height: 42px;
    width: fit-content;
    line-height: 42px;
    box-sizing: border-box;
    position: absolute;
    right: 46px;
}

.tab_expand_list .icon1 {
    height: 26px;
    position: absolute;
    right: 8px;
    top: 8px;
}

.table_list {
    width: 100%;
    
}
.popup_box .table_list{
    table-layout: fixed;
}

.table_list td {
    height: 44px;
    border-bottom: 1px solid #CBCBCB;
    box-sizing: border-box;
    font-size: 16px;
    cursor: pointer;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.table_list td{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.table_list tr:hover td {
    background-color: #E5F7FF;
}

.table_list td.c01 {
    padding-left: 12px;
    width: 18px;
}

.table_list td.c01 img {
    width: 6px;
}

.table_list td.c02 {
    padding-left: 12px;
    width: 44px;
}

.table_list td.c02 img {
    width: 32px;
}

.table_list td.c03 {
    padding-left: 6px;
}

.table_list td.c04 {
    padding-left: 12px;
}

.table_list td.c04m {
    padding-left: 12px;
}

.table_list td.c04l {
    padding-left: 12px;
}
.table_list{
    table-layout: fixed;
}
.table_list td.c1 {
    padding-left: 12px;
    width: 154px;
}

.table_list td.c2_first {
    padding-left: 12px;
    width: 300px;
}

.table_list td.c1_230 {
    padding-left: 12px;
    width: 230px;
}

.table_list td.c2_200 {
    padding-left: 12px;
    width: 200px;
}

.table_list td.c2_330px_first {
    width: 330px;
    padding-left: 12px;
}

.table_list td.c2_500px_first {
    width: 500px;
    padding-left: 12px;
}

.table_list td.c1_5 {
    padding-left: 12px;
    width: 270px;
}

.table_list td.c1_7{
    width: 160px;
}

.table_list td.c1_5_none_width{
    width: unset;
}

.table_list td.c2 {
    width: 240px;
}

.table_list td.c2_5 {
    width: 300px;
}

.table_list td.c2_330px {
    width: 330px;
}

.table_list td.c2_110px {
    width: 110px;
}

.table_list td.c2_170px {
    width: 170px;
}

.table_list td.c3 {
    width: 120px;
}

.table_list td.c3_5 {
    width: 180px;
}
.table_list td.c_more {
    width: 21px;
}
.table_input_group td.long_text{
    line-height: 20px;
}


.table_list td.c4 .tag_status {
    background-color: #808080;
    box-sizing: border-box;
    padding: 4px 8px;
    width: fit-content;
    font-weight: bold;
    color: #FFFFFF;
    border-radius: 8px;
}

.table_list td.c4_width_140 .tag_status {
    background-color: #808080;
    box-sizing: border-box;
    padding: 4px 8px;
    width: fit-content;
    font-weight: bold;
    color: #FFFFFF;
    border-radius: 8px;
}

.table_list td .more_page_icon {
    height: 12px;
    float: right;
    margin-right: 12px;
}

.table_list td .delete_icon {
    height: 18px;
    float: right;
    margin-right: 12px;
}

.table_list td .more_page_icon_1 {
    height: 12px;
    float: right;
    margin-right: 12px;
}

.tab_expand_list_move_icon .t1{
    left: 26px;
}
.tab_expand_list_move_icon .t0{
    left: 12px;
    position: absolute;
    height: 42px;
    width: fit-content;
    line-height: 42px;
    cursor: pointer;
}
.tab_expand_list_move_icon .t0 img {
    width: 6px;
}
.tab_expand_list_move_icon .t1 .text{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tab_expand_list .form_section_header_width{
    width: calc(100% - 260px);
}
.search_box_group_full {
    width: 100% !important;
    left: 0px !important;
}

.box_table_select_student_2 {
    left: 170px;
    position: absolute;
}

.txt_s16_bold_2 {
    margin-left: 170px;
}

/* warning */
.bg_warning{
    background-image: url('../img/element/bg_warning.svg');
    width: 100%;
    height: 100%;
    background-size: cover;
    position: fixed;
    z-index: 102;
}
.body_section{
    height: 100vh;
    width: 100%;
}
.center_obj{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.center_obj .copyright_warning{
    position: absolute;
    bottom: 24px;
    font-size: 10px;
    color: #ffffff4b;
}
.center_obj .contact_center{
    position: absolute;
    bottom: 54px;
    font-size: 14px;
    color: #ffffff6e;
    text-align: center;
}
.center_obj .desc_text_warning{
    margin-top: 18px;
    font-size: 24px;
    color: #ffffff6e;
    width: 300px;
    text-align: center;
    line-height: 28px;
}
.bg_warning{
    display: none;
}

.option_box_disabled{
    opacity: 0.5;
}

.scroll_menu .content_box_flow::-webkit-scrollbar{
    display: none;
}
.scroll_menu .content_box_flow{
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

.icon_form_img_1 {
    width: 100px;
    position: absolute;
    top: 12px;
    margin-top: unset !important;
    left: calc(50% - (100px / 2));
}

.txt_s14_img_txt {
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    position: absolute;
    bottom: 12px;
    width: calc(100% - (12px * 2));
    left: 12px;
}

.txt_s14_menu_list_img_txt {
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    position: absolute;
    bottom: 12px;
    width: calc(100% - (4px * 2));
    left: 4px;
}

.student_box_select_container_x2 {
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    background-color: #FFFFFF;
    height: 154px;
    width: 128px;
    margin-right: 12px;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
}
.note_char_count_bar {
    width: 100%;
    height: 18px;
    background-color: #FFFFFF;
    color: #8A8A8E;
    font-size: 14px;
    box-sizing: border-box;
    text-align: right;
}

.note_char_count_bar .count_num {
    color: #62BAE0;
}
.note_char_count_bar .count_num_over {
    color: #FF1100;
}

@media (max-width: 1000px){
    .bg_warning{
        display: block;
    }
}

/* ====== For Responsive Coding ====== */

/* iPad */

@media (max-width: 1300px) {
    #student_progress_table .c_more, #student_progress_list .c_more {
        width: 21px;
    }
    .table_list td.c_more {
        width: 21px;
    }
}

/* iPhone4 */

@media (width: 320px) and (height: 480px) {}

/* iPhone 5 */

@media (width: 320px) {}

/* s8 */

@media (min-width: 320px) and (min-height: 740px) {}

/* iPhone X */

@media (min-width: 375px) and (min-height: 812px) {}

/* iPhone XS Max */

@media (min-width: 414px) and (min-height: 896px) {}

/* s8+ */

@media (min-width: 480px) and (min-height: 960px) {}

/* iPad */

@media (min-width: 768px) and (min-height: 1024px) {
    .data_view .box_data_info .qr_code {
        width: 414px;
        margin-left: calc(50% - (414px / 2));
    }
}

/* iPad Land */

@media (min-width: 1024px) and (min-height: 1366px) {}

/* iOS Dark */

@media (prefers-color-scheme: dark) {}