.loading-bar {
    width: 250px;
    background: #eee;
    padding: 2px;
    border: 1px solid rgba(131, 125, 217, 1);
    border-radius: 5px;
    /* box-shadow: 0 0 20px 0 rgba(131, 125, 217, 0.5); */
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    margin: auto;
}

.loading-bar--progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.loading-bar--progress span {
    margin: auto;
    background: linear-gradient(
        180deg,
        rgb(127, 0, 255) 0%,
        rgb(225, 0, 255) 56%,
        rgb(51, 71, 228) 100%
    );
    border-radius: 4px;
    flex-basis: 11%;
    flex-grow: 1;
    flex-shrink: 1;
    height: 23px;

    animation: FadeIn 3s ease-in-out infinite;
    animation-fill-mode: both; /* Ensure animation is visible from start */
    animation-play-state: running; /* Ensures it starts right away */
    transition: all 1s cubic-bezier(0.1, 0.67, 0.88, 0.1);
}

.loading-bar--progress span:first-of-type {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.loading-bar--progress span:last-of-type {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

@keyframes FadeIn {
    0% {
        opacity: 0;
        transform: scale(0.01);
        background: rgba(131, 125, 217, 1);
        border-radius: 4px;
    }

    85% {
        opacity: 1;
        background: linear-gradient(
        180deg,
        rgb(127, 0, 255) 0%,
        rgb(225, 0, 255) 56%,
        rgb(51, 71, 228) 100%
        );
        border-radius: 0;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    100% {
        transform: scale(1);
        background: linear-gradient(
        180deg,
        rgb(127, 0, 255) 0%,
        rgb(225, 0, 255) 56%,
        rgb(51, 71, 228) 100%
        );
        border-radius: 0;
    }
}

/* Animation delays for wave effect */
.loading-bar--progress span:nth-child(1) { animation-delay: -1s; }
.loading-bar--progress span:nth-child(2) { animation-delay: -0.9s; }
.loading-bar--progress span:nth-child(3) { animation-delay: -0.8s; }
.loading-bar--progress span:nth-child(4) { animation-delay: -0.7s; }
.loading-bar--progress span:nth-child(5) { animation-delay: -0.6s; }
.loading-bar--progress span:nth-child(6) { animation-delay: -0.5s; }
.loading-bar--progress span:nth-child(7) { animation-delay: -0.4s; }
.loading-bar--progress span:nth-child(8) { animation-delay: -0.3s; }
.loading-bar--progress span:nth-child(9) { animation-delay: -0.2s; }
.loading-bar--progress span:nth-child(10) { animation-delay: -0.1s; }
.loading-bar--progress span:nth-child(11) { animation-delay: 0s; }
.loading-bar--progress span:nth-child(12) { animation-delay: 0.1s; }

.loading-bar--progress span:nth-child(n) {
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}

/* rgba(131, 125, 217, 1) 0%,
rgba(57, 55, 131, 1) 56%,
rgba(9, 9, 121, 1) 100% */




    
    
    
    
    
.ics_ens_tb .table > :not(caption) > * > * {
    padding: 0!important;
}

tr > td, tr > th {
    padding-top: 10px;
    padding-bottom: 10px;
}

#customerModal.modal.show {
    z-index: 1060 !important;
}

.modal-backdrop.show:nth-of-type(2) {
    z-index: 1055 !important;
}
.ics_ens_display {
    width: 96.15%;
    position: fixed;
    padding-left: 8px;
    /* margin-top: 10px; */
}
.ics2_ens_card{
    max-height: auto !important;
    padding-bottom: 20px!important;
    margin-top: 10px;
    border: 1px solid #d9d9d9;
}










.listTable {
    overflow-x: auto !important;
    overflow-y: auto !important;
    position: relative;
    height: 500px;
    max-width: 100%;
}

.list_table {
    border-collapse: collapse;
    width: max-content;
    min-width: 100%;
    table-layout: fixed;
}

.list_table th,
.list_table td {
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
}
.list_table td {
    font-size: 12px;
}

/* ✅ Sticky Header */
.list_table thead th {
    position: sticky;
    top: 0;
    z-index: 30; /* Ensure it's above regular cells */
}

.list_table thead th {
    background: var(--osen-table-header-bg-color);
}


/* ✅ Sticky First 6 Columns */
.sticky-col-0 { position: sticky; z-index: 41; }
.sticky-col-1 { position: sticky; z-index: 40; }
.sticky-col-2 { position: sticky; z-index: 39; }
.sticky-col-3 { position: sticky; z-index: 38; }
.sticky-col-4 { position: sticky; z-index: 37; }
.sticky-col-5 { position: sticky; z-index: 36; }
.sticky-col-6 { position: sticky; z-index: 35; }

/* ✅ Sticky Last 2 Columns (right side) */
.sticky-col-last-2 { position: sticky; z-index: 40; }
.sticky-col-last-1 { position: sticky; z-index: 39; }

/* ✅ Header-specific sticky columns */
.list_table thead th.sticky-col-0,
.list_table thead th.sticky-col-1,
.list_table thead th.sticky-col-2,
.list_table thead th.sticky-col-3,
.list_table thead th.sticky-col-4,
.list_table thead th.sticky-col-5,
.list_table thead th.sticky-col-6,
.list_table thead th.sticky-col-last-2,
.list_table thead th.sticky-col-last-1 {
    background: #f0d4f8 !important;
    color: #1b1c1c !important;
    z-index: 60;
    padding: 5px 0px!important;
}

/* ✅ Body sticky column background */
.list_table tbody td.sticky-col-0,
.list_table tbody td.sticky-col-1,
.list_table tbody td.sticky-col-2,
.list_table tbody td.sticky-col-3,
.list_table tbody td.sticky-col-4,
.list_table tbody td.sticky-col-5,
.list_table tbody td.sticky-col-6,
.list_table tbody td.sticky-col-last-2,
.list_table tbody td.sticky-col-last-1 {
    background: #fff !important;
    color: #1b1c1c !important;
    z-index: 25;
}


/* ✅ Custom Scrollbar */
.listTable::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}
.listTable::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.listTable::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}
.listTable::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.ens_dt_check_box{
    transform: scale(1.7); 
    cursor: pointer; 
    margin-top: 7px;
}
.ens_ld_dt_btn{
    margin: 2px 0px;
}
.data_load_msg{
    background: #FCFCFC; 
    border: 1.5px solid #d9d9d9; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}




    


    
.is-invalid {
    border-color: red !important;
}
.invalid-feedback {
    display: block;
    color: red;
    font-size: 13px;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
    padding-right: calc(0em + 0rem)!important;
    background-image: none!important;
}
.form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"], .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"] {
    --osen-form-select-bg-icon: none!important;
    padding-right: 0rem!important;
}
input[readonly] {
    background-color: #f0f0f0;
}

.border_bottom_dot{
    border-bottom: 1px dotted #ddd!important;
}

.dot_border{
    border-bottom: 1px dotted #baa3f1!important;
}

.width_auto{
    width: auto!important;
}
.width_20{
    width: 20px;
}
.width_25{
    width: 25px;
}
.width_30{
    width: 30px;
}
.width_50{
    width: 50px;
}
.width_55{
    width: 55px;
}
.width_57{
    width: 57px;
}
.width_60{
    width: 60px;
}
.width_65{
    width: 65px;
}
.width_78{
    width: 78px;
}
.width_82{
    width: 82px;
}
.width_95{
    width: 95px;
}
.width_100{
    width: 100px;
}
.width_108{
    width: 108px;
}

.width_130{
    width: 130px;
}
.font_width_550{
    font-weight: 550;
}

.pos_txt_aln{
    position: relative; 
    text-align: center;
}

.df_sb_ai_h_ws {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}
.df_sb_ai_h {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.df_sb_ai {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sp_cln_mg {
    margin: 0 2px;
}
.mt2_mb1 {
    margin-top: 2px;
    margin-bottom: 1px;
}
.mt1_mb1 {
    margin-top: 1px;
    margin-bottom: 1px;
}
.mt1_mb2 {
    margin-top: 1px;
    margin-bottom: 1px;
}
.mr2 {
    margin-right: 2px;
}
.ml4 {
    margin-left: 4px;
}

.font_size15 {
    font-size: 15px;
}
.color_red {
    color: red;
}
.pos_rel {
    position: relative;
}
.flx_pos_rel {
    flex: 1;
    position: relative;
}

.cnt_add_btn{
    padding: 0px;
    border-radius: 0; 
    margin: 2px;
}
.cnt_add_btn i{
    font-size: 12px; 
    margin: 5px;
}
.display_none {
    display: none;
}
#copy_notify {
    margin: 5px 8.7px 2px 7px;
    transform: scale(2.05);
    cursor: pointer;
}