body {
    padding: 0px;
    overflow-x: hidden;
    margin: 0px;
    width: 100%;
}

.button_button {
    border: 2px solid #3f6EB5;
    color: #000;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 6px;
    background: linear-gradient(to right, #3f6EB5 0%, #3f6EB5 10px, white 10px, white 100%);
    display: inline-flex;
    align-items: center;
    width: auto;
    transition: all 0.25s ease;
    cursor: pointer;
    gap: 5px;
    justify-content: center;
}

.button_button_red {
    background: linear-gradient(to right, #e63946 0%, #e63946 10px, white 10px);
    color: #000;
    border: 2px solid #e95e68;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    width: auto;
    gap: 5px;
    justify-content: center;
}

.button_button_blue {
    background: linear-gradient(to right, #007bff 0%, #007bff 10px, white 10px);
    border: 2px solid #0074d9;
    color: #000;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 6px;
    width: auto;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.25s  ease;
    display: inline-flex;
    z-index: 0;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.button_button_orange {
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    padding: 3px 10px;
    background: linear-gradient(to right, #FFA500 0%, #FFA500 10px, white 10px);
    border: 2px solid  #ffa500a3;
    color: #000;
    transition: all 0.25s  ease;
    cursor: pointer;
    align-items: center;
    display: inline-flex;
    width: auto;
    gap: 5px;
    justify-content: center;
}

.button_button_gray {
    font-size: 12px;
    padding: 5px 10px;
    font-weight: 500;
    border-radius: 6px;
    background: linear-gradient(to right, #6c757d 0%, #6c757d 10px, white 10px);
    border: 2px solid #6c757dc9;
    color: #000;
    align-items: center;
    transition: all 0.25s  ease;
    display: inline-flex;
    width: auto;
    cursor: pointer;
    justify-content: center;
}

.button_button_green {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border: 2px solid #50c878;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(to right, #50c878 0%, #50c878 10px, white 10px, white 100%);
    color: #000;
    width: auto;
    transition: all 0.25s ease;
    cursor: pointer;
    gap: 5px;
    justify-content: center;
}

.button_button_green:hover {
    box-shadow: 0px 0px 6px 1px #50c8789e;
    color: #000 !important;
}

.button_button_blue:hover {
    box-shadow: 0px 0px 6px 1px #007bff61;
    color: #000 !important;
}

.button_button_red:hover {
    box-shadow: 0px 0px 6px 0px rgb(230 57 70 / 60%);
    color: #000 !important;
}

.button_button_orange:hover {
    box-shadow: 0px 0px 6px 0px rgb(247 127 0 / 60%);
    color: #000 !important;
}

.button_button_action_icon {
    background-color: red;
}

.button_button:hover {
    box-shadow: 0px 0px 6px 1px #3f6eb56b;
    color: #000 !important;
}

.button_button_gray:hover {
    color: #000 !important;
    box-shadow: 0px 0px 6px 1px #a0a0a0c2;
}

.color_blue {
    color: #0000FF;
}

.color_lightblue {
    color: #ADD8E6;
}

.color_royalblue {
    color: #4169E1;
}

.color_red {
    color: #FF0000;
}

.color_green {
    color: #008000;
}

.color_maroon {
    color: #800000;
}

.color_white {
    color: #FFFFFF;
}

.color_black {
    color: 000000;
}

.color_orange {
    color: #FFA500;
}

.color_yellow {
    color: #FFFF00;
}

.color_bg_blue {
    background-color: #007BFF;
}

.color_bg_lightblue {
    background-color: #87CEFA;
}

.color_bg_royalblue {
    background-color: #4169E1;
}

.color_bg_black {
    background-color: #212529;
}

.color_bg_brown {
    background-color: #8B4513;
}

.color_bg_maroon {
    background-color: #800000;
}

.color_bg_green {
    background-color: #28A745;
}

.custom_width250 {
    width: 250px !important;
}

.custom_class_config_box {
    border: 1px solid #e4e4e4;
    box-shadow: 0px 1px 6px 0px #dfdede;
    border-radius: 10px !important;
    margin: 20px 0px;
    padding: 10px;
}

.custom_class_preview_sec {
    margin: 10px 0px;
    padding: 10px;
    border: 1px solid #e4e4e4;
    background: #f5f5f5;
    border-radius: 10px !important;
    box-shadow: 1px 0px 4px 0px #e4e2e2;
}

.custom_border_solid {
    border: 2px solid #000;
}

.custom_border_dotted {
    border: 2px dotted #000;
}

.custom_border_solid_red {
    border: 2px solid #FF0000;
}

.custom_border_solid_blue {
    border: 2px solid #0000FF;
}

.custom_border_solid_green {
    border: 2px solid #008000;
}

.custom_border_solid_yellow {
    border: 2px solid #FFFF00;
}

.custom_border_dotted_red {
    border: 2px dotted #FF0000;
}

.custom_border_dotted_blue {
    border: 2px dotted #0000FF;
}

.custom_border_dotted_green {
    border: 2px dotted #008000;
}

.custom_border_dotted_yellow {
    border: 2px dotted #FFFF00;
}

.custom_section_border {
    height: 500px;
    overflow-y: scroll;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    box-shadow: 0px 1px 5px 0px #e7e2e2;
    padding: 1px;
    background-color: #f9f9f9;
}

.custom_modal_sm {
    width: 300px !important;
    margin: 0 auto;
}

.custom_modal_lg {
    width: 800px !important;
    margin: 0 auto;
}

.custom_modal_xl {
    width: 1140px !important;
    margin: 0 auto;
}

.custom_modal_md {
    width: 500px !important;
    margin: 0 auto;
}

.custom_section_height {
    height: 50vh;
}

.custom_my4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.custom_section_height60 {
    height: 60vh;
}

.custom_section_height45 {
    height: 45vh;
}

.custom_section_height35 {
    height: 35vh;
}

.custom_section_height135 {
    height: 70vh;
}

.custom_mx4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}

.custom_section_height50 {
    height: 50vh;
}

.custom_section_height40 {
    height: 40vh;
}

.custom_rms_ticket_section {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgb(102 126 234 / 18%);
    padding: 10px 20px;
    transition: all 0.3s  ease;
}

.custom_ticket_info_sec {
    background-color: #f7fafc;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e5e4e4;
    margin: 10px 0px;
    display: flex;
    justify-content: space-between;
}

.custom_rms_ticket_section_bottom {
    border-top: 0px !important;
    border-radius: 0px 0px 20px 20px !important;
    box-shadow: 0 25px 30px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    border: 1px solid rgb(102 126 234 / 18%);
    padding: 2rem;
    transition: all 0.3s  ease;
    padding-top: 0px !important;
}

.custom_rms_ticket_section_top {
    border-radius: 20px 20px 0px 0px;
    border-bottom: 0px !important;
    box-shadow: box-shadow;
    background-color: #fff;
    border: 1px solid rgb(102 126 234 / 18%);
    padding: 2rem;
    transition: all 0.3s  ease;
    padding-bottom: 0px !important;
}

.custom_margin_bottom0 {
    margin-bottom: 0px !important;
}

.custom_ticket_info_box {
    background: linear-gradient(135deg, #edf6ff 0%, #eaf0f7 100%);
}

.custom_invoice_header {
    font-size: 16px;
    color: #23375b;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.custom_invoice_text_table {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin: 0px 10px;
}

.custom_invoice_label_red {
    color: #FF0000;
    font-size: 20px;
}

.custom_invoice_label_green {
    font-size: 20px;
    color: #26c35a;
    margin: 4px;
}

.custom_invoice_yellow_label {
    color: #f59e0b;
    margin: 4px;
    font-size: 20px;
}

.custom_invoice_blue_label {
    color: #3b82f6;
    font-size: 20px;
    margin: 4px;
}

.custom_invoice_textbox {
    font-size: 16px !important;
    width: 100%;
    padding: 2px 10px !important;
    background-color: #f9fafb !Important;
    height: auto;
    border-radius: 7px !important;
    border: 1px solid #dde3eb !important;
    color: #23375b;
}

.custom_margin_top20 {
    margin-top: 20px !important;
}

.custom_display_none {
    display: none !important;
}

.custom_margin_top0 {
    margin-top: 0px !important;
}

.custom_button_footer_section {
    background-color: #3f6eb50d;
    border-top: 1px solid #3f6eb51f;
    border-radius: 0px 0px 10px 10px !important;
    box-shadow: 1px 0px 4px 0px #e4e2e2;
    margin: 10px 0px;
    padding: 10px;
}

.custom_margin_bottom20 {
    margin-bottom: 20px !important;
}

.custom_padding_top5 {
    padding: 15px 20px !important;
    margin-bottom: 20px;
}

.custom_box_height90 {
    height: 0.9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom_data_list_bg {
    background-color: #3f6eb512;
    text-align: justify;
    padding: 7px 15px;
    border-radius: 5px;
    border: 1px solid #e7e7e7;
    color: #23375b;
    font-size: 16px;
    font-weight: 600;
}

.custom_border_right {
    border-right: 1px solid #e3e3e3 !important;
}

.custom_section_align_center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom_height_px_100 {
    height: 100px;
}

.custom_section_padding_all_20 {
    padding: 15px 20px;
}

.custom_py2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.custom_padding_top_bottom20 {
    padding-top: 10px !important;
    padding-bottom: 20px !important;
}

.custom_margin_top30 {
    margin-top: 30px !important;
}

.custom_margin_right_left20 {
    margin-left: 20px !important;
    margin-right: 20px !Important;
}

.custom_width120 {
    width: 120px !Important;
}

.custom_margin_top70 {
    margin-top: 70px !important;
}

.custom_margin_top_n40 {
    margin-top: -40px !important;
}

.custom_margin_bottom_n30 {
    margin-bottom: -30px !important;
}

.custom_border_bottom {
    border-bottom: 1px solid #eaeaea;
}

.custom_bot_section {
    background-color: #f6f8fc;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 1px 0px 6px 0px #e1e1e1;
}

.custom_section_header {
    padding: 4px 15px !important;
}

.custom_section_box {
    margin: 5px auto;
}

.custom_margin_top5 {
    margin-top: 1rem !important;
}

.custom_margin_top10 {
    margin-top: 10px !important;
}

.custom_margin_top15 {
    margin-top: 15px !important;
}

.custom_flex_wrap {
    flex-wrap: wrap;
    display: flex;
}

.custom_dispaly_none {
    display: none !important;
}

.custom_width135 {
    width: 135px !important;
}

.custom_width450 {
    width: 450px !important;
}

.custom_width500 {
    width: 500px !important;
}

.custom_button {
    background-color: #e9e7e7;
    width: auto;
    padding: 8px;
    color: #000;
    border-radius: 5px;
}

.custom_nav_top_header {
    background-color: #ffff;
    width: 98%;
    margin: 0px auto 1px auto;
    box-shadow: 0px 0px 4px 1px #c5c5c5;
    border-radius: 0px 0px 5px 5px;
    position: fixed;
}

.custom_nav_top {
    background-color: #ffff;
    box-shadow: 0px 0px 4px 1px #c5c5c5;
}

.custom_footer {
    background-color: #ffffff;
    box-shadow: 0px 0px 4px 1px #e2dddd;
    width: 100%;
    border-radius: 5px 5px 0px 0px;
}

.custom_img4 {
    filter: drop-shadow(5px 0px 10px #ffffff);
}

.custom_date_picker {
    font-size: 16px;
    background-color: transparent;
    border: 1px solid #d2d2d2;
    border-radius: 5px !important;
    color: #272433;
    padding: 5px 10px;
}

.custom_box5 {
    background-color: #e9f1fe;
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ffffff;
}

.custom_card_top_section {
    background-color: #e9f1fe;
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ffffff;
}

.custom_form_program_card {
    box-shadow: 0px 1px 6px 1px rgb(228 231 236);
    width: auto;
    text-align: center;
    border-radius: 15px;
    border: 1px solid #3f6eb526;
    background-color: #ffffff;
    padding: 15px 15px;
}

.custom_icon_right_top {
    font-size: 16px;
    border-radius: 50px !important;
    border: 1px solid #b4d3ff;
    padding: 5px 10px;
    color: #3f6eb5;
}

.custom_box3 {
    padding: 20px;
    background-color: #ffff;
    border: 1px solid #e9f1fe;
    border-radius: 20px;
    width: 13%;
    box-shadow: 1px 2px 7px 0px #edf0f5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.custom_modal_content {
    background-color: #ffff;
}

.custom_float_left {
    float: left;
}

.custom_float_right {
    float: right;
}

.custom_left_menu {
    width: 250px;
    background-color: #fdfdfd;
    box-shadow: 0px 0px 7px 3px #dedede;
    border-right: 1px solid #eeeff0 !important;
    border-radius: 5px 0px 0px 5px !important;
}

.custom_left_menu_li {
    border: 1px solid #f0f0f073;
    background-color: #f9f9f9;
}

.custom_section3 {
    border: 1px solid #dee0e4;
    border-radius: 0px 0px 5px 5px;
}

.custom_section4 {
    margin: 20px 0px 0px 0px;
    padding: 10px 10px 10px 10px;
    border: 1px solid #dee0e4;
    border-bottom: 0px !important;
    border-radius: 5px 5px 0px 0px;
}

.custom_app_card {
    background-color: #3f6eb50a;
    border-radius: 6px;
    border: 1px solid #3f6eb517;
    padding: 7px;
    margin-bottom: 15px !important;
    width: 98%;
    margin: 0 auto;
}

.custom_app_group_section {
    border: 1px solid #eceeef;
    box-shadow: 0px 0px 7px 0px #e2e2e2;
    width: 22.777777% !important;
    margin: 20px 15px;
    height: 40vh;
    overflow-y: scroll;
    border-radius: 14px;
}

.custom_.custom_app_card:hover {
    background-color: red !important;
}

.custom_box1 {
    background-color: #ffffff;
    width: 98%;
    margin: 90px 35px !important;
    box-shadow: 0px 0px 4px 1px #c5c5c5;
    padding: 33px;
    margin-bottom: 25px !important;
}

.custom_box2 {
    background-color: #f1fbff;
    margin: 0 auto;
    border-radius: 4px;
    border: 1px solid #dae9ff;
    display: flex;
    align-items: center;
}

.custom_box4 {
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    width: 18%;
}

.custom_img1 {
    width: 80px;
    height: 40px;
    object-fit: contain;
    display: block;
    margin: 0px auto;
}

.custom_img2 {
    height: 25px;
    width: 25px;
}

.custom_img3 {
    width: 100%;
}

.custom_left {
    text-align: left;
}

.custom_center {
    text-align: center;
}

.custom_right {
    text-align: right;
}

.custom_width50 {
    width: 50px;
}

.custom_width80 {
    width: 80px;
}

.custom_width100 {
    width: 100px;
}

.custom_width150 {
    width: 150px;
}

.custom_width200 {
    width: 200px;
}

.custom_width300 {
    width: 300px;
}

.custom_width400 {
    width: 400px;
}

.custom_modal_content_box {
    background-color: #ffff;
}

.custom_modal_box {
    width: 99%;
}

.dropdown_dropdown {
    background-color: #f8f9fa !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 5px !important;
    height: 40px;
    width: 100% !important;
}

.dropdown_custom {
    width: 100%;
    padding: 2px 14px;
    height: auto;
    font-size: 17px;
    color: #1a1a1a !important;
    background-color: #f9f9f9;
    border: 1.5px solid #ccc;
    border-radius: 5px !important;
    transition: all 0.2s ease-in-out;
}

.font_style_bold {
    font-weight: bold;
}

.font_style_italic {
    font-style: italic;
}

.font_style_underline {
    text-decoration: underline;
}

.font_weight_400 {
    font-weight: 400;
}

.font_weight_500 {
    font-weight: 500;
}

.font_weight_700 {
    font-weight: 700;
}

.font_weight_800 {
    font-weight: 800;
}

.font_weight_lighter {
    font-weight: lighter;
}

.font_size_9 {
    font-size: 9px !important;
}

.font_size_12 {
    font-size: 12px !important;
}

.font_size_14 {
    font-size: 14px !important;
}

.font_size_16 {
    font-size: 16px !important;
}

.font_size_18 {
    font-size: 18px !important;
}

.font_size_20 {
    font-size: 20px !important;
}

.font_size_24 {
    font-size: 24px !important;
}

.font_size_28 {
    font-size: 28px !important;
}

.font_size_32 {
    font-size: 32px !important;
}

.font_size_48 {
    font-size: 48px !important;
}

.header1_header1 {
    font-size: 34px;
    color: #23375b;
    font-weight: 500;
}

.header2_header2 {
    color: #23375b;
    font-size: 32px;
    font-weight: 500;
}

.header3_header3 {
    font-size: 26px;
    color: #23375b;
    font-weight: 500;
}

.header4_header4 {
    font-size: 22px;
    color: #23375b;
    font-weight: 500;
}

.header5_header5 {
    color: #23375b;
    font-size: 18px;
    font-weight: 500;
}

.header6_header6 {
    color: #23375b;
    font-size: 14px;
    font-weight: 500;
}

.label1_label1 {
    color: #8d8d8d;
    font-size: 16px;
    font-weight: 500;
}

.label2_label2 {
    color: #8d8d8d;
    font-size: 14px;
    font-weight: 500;
}

.panel1_panel1 {
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    margin: 60px 30px !important;;
    background-color: #FFF;
    width: 97.5%;
    box-shadow: 0px 0px 4px 1px #c5c5c5;
    padding: 15px;
    display: block;
    align-items: unset;
    justify-content: unset;
}

.panel2_panel2 {
    border: 1px solid #eef5fb;
    box-shadow: 0px 0px 7px 0px #e8ecf0;
    border-radius: 10px !important;
    padding: 0px;
    margin: 0px;
}

.para1_para1 {
    margin: 5px 0px !important;
    color: #737373;
    font-size: 16px;
    font-weight: 500;
}

.para2_para2 {
    color: #7e7e7e;
    font-size: 14px;
    font-weight: 400;
}

.para3_para3 {
    color: #7e7e7e;
    font-size: 12px;
    font-weight: 400;
}

.section1_section1 {
    border: 1px solid #ededed;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 1px 0px 6px 2px #ebebeb !important;
    margin-bottom: 2rem;
}

.section2_section2 {
    background-color: #e9f1fe;
    padding: 15px;
    border: 1px solid #f7f7f7;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.table_table_summary {
    width: 100%;
}

.table_table>thead>tr>th {
    color: #f1f4f8;
    background-color: #3F6EB5;
    border-bottom: 4px solid #23375B;
    border-right: 1px solid #23375B;
    font-size: 14px;
    font-weight: 700;
    padding-right: 20px;
    padding: 7px;
}

.table_table>tfoot>tr>td {
    background-color: #3F6EB5;
    color: #f1f4f8;
    border-bottom: 4px solid #23375B;
    border-right: 1px solid #23375B;
    font-size: 14px;
    font-weight: 700;
    padding-right: 20px;
}

.table_.table>tbody>tr>td {
    background-color: #FFFFFF;
    padding: 5px;
    font-size: 16px;
    border-right: 1px solid #EEEEEE;
}

.text_transform_uppercase {
    text-transform: uppercase;
}

.text_transform_lowercase {
    text-transform: lowercase;
}

.text_transform_capitalize {
    text-transform: capitalize;
}

.text_decoration_underline_red_2 {
    text-decoration: underline;
    text-decoration-color: red;
    text-decoration-thickness: 2px;
}

.text_decoration_underline_red_5 {
    text-decoration: underline;
    text-decoration-color: red;
    text-decoration-thickness: 5px;
}

.textarea_textarea {
    border: 1px solid #d2d2d2;
    font-size: 14px;
    border-radius: 5px;
    padding: 8px 12px;
    font-weight: 500;
    color: #272433;
    width: 100%;
}

.textbox_textbox {
    margin-top: 5px !important;
    background-color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #d2d2d2;
    color: #272433;
}

.textbox_inputbox {
    width: 100%;
    padding: 8px 14px;
    height: 40px;
    font-size: 17px;
    color: #1a1a1a;
    background: #f9f9f9;
    border: 1px solid #ccc !important;
    border-radius: 5px !important;
    transition: all 0.2s ease-in-out;
}

.textbox_inputbox:focus {
    border: 2px solid #23375bcc;
    outline: none;
}

.textbox_inputbox_label {
    position: absolute;
    top: 8px;
    Left: 1rem;
    color: #ccc;
    font-size: 1rem;
    background: transparent;
    padding: 0 0.25rem;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
}

.textbox_custom {
    position: relative;
}

