@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
font-family: "Inter", sans-serif;
font-size:16px;
}
h1, h2, h3, h4, h5, ul, li,a,p,input,table,th,tr,td,button,label,form,div,ol,section,ul,li,span{
font-family: "Inter", sans-serif;
}
.h4_title {
font-size: 20px !important;
color: #575757;
font-weight: bold;
padding: 11px 0px;
}
.bg_analytics {
background-image: url(../asserts/analytics-title.png);
width: 99%;
height: 50px;
position: absolute;
background-position: bottom;
margin-bottom: -81px;
opacity: 0.6;
margin-left: 0;
border-radius: 50px;

}
.widgets_analytics .card {
border: none;
box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px !important;
}
.widgets_analytics .card-body h4 {
font-size: 14px !important;
}
#tblfilesTableBody_info {
font-size: 13px;
font-weight: bold;
}
.MPCI_title {
position: relative;
bottom: 21px;

}
.file-table .card {
border: none !important;
padding: 2px;
}   
.file-table .card-header {
background: transparent !important;
border: none;
}
#tblfilesTableBody thead th {
padding: 12px !important;
border: none; 
} 
table.dataTable.no-footer {
border-bottom: none;
}  
.table-striped > tbody > tr:nth-of-type(2n+1) > * {
border-right: 1px solid #2a354717 !important;
background: transparent !important;
--bs-table-bg-type: transparent;
border-bottom: 1px solid #2a354717 !important;
}
table.dataTable thead th, table.dataTable tbody td {
border: none;
border-right: 1px solid #2a354717 !important;
border-bottom: 1px solid #2a354717 !important;
}
.dt-buttons .dt-button {
border: none !important;
background: #008ffb !important;
color: #fff !important;
margin: 12px !important;
box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}
#tblfilesTableBody_paginate a {
font-size: 14px;
}

    :root {
        /* Professional Premium Palette */
        --primary: #2563eb;
        --primary-hover: #1d4ed8;
        --secondary: #475569;
        --success: #10b981;
        --info: #0ea5e9;
        --warning: #f59e0b;
        --danger: #ef4444;
        --light: #f8fafc;
        --dark: #0f172a;
        --green: #059669;
        --yellow: #fbbf24;
        
        --card-bg: rgba(255, 255, 255, 0.9);
        --card-border: rgba(226, 232, 240, 0.8);
        --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
        --card-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
        
        --border-radius-sm: 0.375rem;
        --border-radius-md: 0.5rem;
        --border-radius-lg: 0.75rem;
        --border-radius-xl: 1rem;
    }

    /* Global Professional Overrides */
    body {
        background-color: #f1f5f9; /* Soft, professional dashboard background */
        color: #334155;
    }

    .card {
        border-radius: var(--border-radius-lg);
        border: 1px solid var(--card-border);
        box-shadow: var(--card-shadow);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .btn {
        font-weight: 500;
        border-radius: var(--border-radius-md);
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        /* padding: 0.5rem 1.25rem; */
    }
    .btn:active {
        transform: scale(0.97);
    }
    .btn-primary {
        background-color: var(--primary);
        border-color: var(--primary);
        /* box-shadow: 0 1px 2px 0 rgba(37, 99, 235, 0.3); */
    }
    .btn-primary:hover {
        background-color: var(--primary-hover);
        border-color: var(--primary-hover);
        box-shadow: 0 4px 6px -1px #189a9aa3;
    }

    .form-control, .form-select {
        border-radius: var(--border-radius-md);
        border: 1px solid #cbd5e1;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.02);
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        /* padding: 0.6rem 1rem; */
    }
    .form-control:focus, .form-select:focus {
        border-color: var(--info);
        box-shadow: 0 0 0 0.25rem rgba(14, 165, 233, 0.15);
    }

    .badge {
        font-weight: 600;
        padding: 0.35em 0.65em;
        border-radius: 0.375rem;
        letter-spacing: 0.02em;
    }

    .dashboard-header {
        background: var(--card-bg);
        backdrop-filter: blur(6px);
        color: #000;
        padding: 15px 20px 10px 20px;
        border-radius: 0 0 18px 18px;
        border: 1px solid var(--card-border);
        box-shadow: var(--card-shadow);
        margin: 12px;
    }
    
    /* ============================================
   CLEAN MODERN KPI CARD (WHITE THEME)
============================================ */
.kpi-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 0.6rem 0.5rem;
    border: 1px solid #ececec;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

/* Hover subtle motion */
.kpi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(17, 24, 39, 0.12);
    border-color: rgba(6, 101, 171, 0.2);
}

.kpi-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(6, 101, 171, 0.12), rgba(6, 101, 171, 0.55), rgba(6, 101, 171, 0.12));
    transform: scaleX(0.35);
    transform-origin: center;
    transition: transform 260ms ease;
}

.kpi-card:hover::after {
    transform: scaleX(1);
}

/* ============================================
   KPI ICON
============================================ */
.kpi-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.kpi-card:hover .kpi-icon {
    background: #e9e9e9;
    transform: scale(1.05);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
}

/* Icon inside */
.kpi-icon i {
    font-size: 22px;
    color: #4a4a4a;
}

/* Special danger icon background */
.kpi-icon.text-danger {
    background: #d51923 !important;
}

.kpi-icon.text-danger i {
    color: #fff !important;
}

/* ============================================
   KPI VALUE + LABEL
============================================ */
.kpi-value {
    font-size: 1.9rem;
    font-weight: 700;
    color: #313131;
    margin-bottom: 0.25rem;
}

.kpi-label {
    color: #555;
    font-size: 14px;
    letter-spacing: .3px;
    white-space: nowrap;
}

    .chart-container {
        background: white;
        border-radius: 10px;
        padding: 1.5rem;
        box-shadow: rgba(50, 50, 93, 0.09) 0px 50px 100px -20px, rgba(0, 0, 0, 0.13) 0px 30px 60px -30px;
        margin-bottom: 1.5rem;
        transition: transform 240ms ease, box-shadow 240ms ease;
    }

    .chart-container:hover {
        transform: translateY(-3px);
        box-shadow: rgba(50, 50, 93, 0.12) 0px 40px 80px -24px, rgba(0, 0, 0, 0.18) 0px 24px 40px -26px;
    }
    
    .chart-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--dark);
    }
    
    .file-table {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);*/
        box-shadow: rgba(193, 193, 200, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.17) 0px 30px 60px -30px;
    }
    
    .status-badge {
        /* padding: 0.25rem 0.75rem; */
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .status-API_NOT_CONNECTED {
        background-color: #fff3cd;
        color: #856404;
    }
    
    .status-PS {
        background-color: #cce7ff;
        color: #004085;
    }
    #awaitingcusres, .kpi-label.text-info {
        color: #4360ed !important;   
       }
       
       .Awaiting .kpi-icon {
         background: #4360ed;  
       }
       div#technicalerror {
        color: #4a4a4a !important;
    }
    .status-ACT {
        background-color: #d4edda;
        color: #155724;
    }
    #awaitingcurescharts, .kpi-label.text-info {
        color: #4a4a4a !important;
    }
    .status-mode {
        background-color: #d4edda;
        color: #69d181;
    }
    .status-mode-NEW {
    background-color: #3eb65e;
    color: #fff;
    border-color: #3eb65e;
    font-size: 11px;
    }
    .view-details {
     background-color: #0665AB;
     color: #fff;
     font-size: 13px;
     border: #0665AB;
    }
    a.paginate_button.current {
    border: 1px solid #fafafa !important;
    background: #75757547 !important;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px !important;
    font-size: 12px;
    padding: 6px 14px !important;
    }
    .status-mode-CHG {
        background-color: #97a041 !important;
        color: var(--yellow) !important;
    }

    .status-mode-RIR {
        background-color: #e6757d;
        color: var(--danger);
    }
    
    .status-RFI {
        background-color: #fff3cd;
        color: #856404;
    }
    
    .status-TE {
        background-color: #f8d7da;
        color: #721c24;
    }
    
    .file-details-panel {
        position: fixed;
        top: 0;
        right: -730px;
        width: 730px;
        background: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .file-details-panel.active {
    right: 0;
    }
    body.blurred {
    filter: blur(5px);
    transition: filter 0.3s ease;
    }

    .panel-header {
    top: 0;
    position: sticky;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    }


    table.dataTable tbody tr:hover {
        background-color: #f1f1f1;
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button {
        padding: 0.2rem 0.6rem;
        margin-left: 2px;
    }
    .dataTables_wrapper .dataTables_filter input {
        width: 300px;
    }
    
    table.dataTable thead th,
    table.dataTable tbody td {
        padding: 0.3rem 0.5rem !important;
        font-size: 0.875rem !important;
    }
    .panel-content {
        padding: 0.3rem;
    }
    
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }
    
    .overlay.active {
        display: block;
    }

    .search-container {
        /* background: rgba(255, 255, 255, 1); */
        border-radius: 16px;
        /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
        backdrop-filter: blur(19.9px);
        -webkit-backdrop-filter: blur(19.9px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        /* background: white; */
        /* border-radius: 10px; */
        padding: 1rem;
        /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); */
        margin-bottom: 0.3rem;
    }

    @media (prefers-reduced-motion: reduce) {
        .kpi-card,
        .kpi-card::after,
        .kpi-icon,
        .chart-container {
            transition: none !important;
        }

        .kpi-card:hover,
        .chart-container:hover,
        .kpi-card:hover .kpi-icon {
            transform: none !important;
            box-shadow: inherit !important;
        }
    }

    #fileDetailsPanel.active{
      z-index: 999999;
    }
    
    .nav-tabs .nav-link.active {
        background-color: var(--primary);
        color: white;
        border-color: var(--primary);
    }
    
    .progress {
        height: 8px;
        margin-top: 5px;
    }
    
    .filter-buttons .btn {
        margin-right: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .hide {
    display: none;
    }

    @media (max-width: 768px) {
        .file-details-panel {
            width: 100%;
            right: -100%;
        }
    }

    iframe[title="Full Page Iframe"] {
    width: 100%;
    height: 80vh !important;
    border: none;
    display: block;
    }
    .Schedule_Status .card {
    background: #0080001c;
    }
   .Last_Run .card {
    background: #238bfd38;
    }
    .Data_Flow .card {
    background: #fcc70529;
    }
    .No_Time_Schedule .card {
    background: #16a1b71c;
    }
    .disnone {
    display: none;
    }
    .total_file .kpi-icon {
    background: #40a1ff;
    }
    .total_file .kpi-icon i,.Accepted .kpi-icon i,.Request .kpi-icon i,.Awaiting .kpi-icon i, .Pending .kpi-icon i{
        color: #fff;
    }
    .Accepted .kpi-icon {
    background: #198754;
    }
    .Request .kpi-icon {
    background: #f5a600;
    }
    .Awaiting .kpi-icon {
    background: #4360ed;
    }
    .Pending .kpi-icon {
    background: #e76886;
    }
    .header-slider-container {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header-slide {
display: flex;
align-items: center;
padding: 20px 40px;
height: 180px;
}
.slide-icon {
width: 80px;
height: auto;
margin-right: 20px;
}
.slide-content h2 {
margin: 0;
font-size: 1.5rem;
color: #333;
}
.slide-content p {
margin: 5px 0 0;
color: #555;
}



.timeline-card {
background: #fff;
border-radius: 16px;
box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
overflow: hidden;
padding: 0.5rem;
}

.timeline-header {
padding-bottom: 0.45rem; 
display: flex;
align-items: center;
justify-content: space-between;
}

.timeline-header h5 {
  margin: 0;
  font-weight: 600;
  color: #189a9a !important;
  font-size: 15px;
}

/* .timeline {
display: flex;
justify-content: start;
align-items: center;
position: relative;
overflow-x: auto;
scrollbar-width: thin;
gap: 2rem;
padding: 0.5rem 0;
}

.timeline::-webkit-scrollbar {
height: 8px;
}
.timeline::-webkit-scrollbar-thumb {
background: #adb5bd;
border-radius: 4px;
}

.timeline-item {
text-align: center;
position: relative;
flex: 0 0 auto;
}

.timeline-item::before {
content: '';
position: absolute;
top: 50%;
left: -1rem;
width: 2rem;
height: 3px;
background-color: #dee2e6;
transform: translateY(-50%);
z-index: 0;
}

.timeline-item:first-child::before {
display: none;
}

.timeline-point {
width: 24px;
height: 24px;
border-radius: 50%;
margin: 0 auto;
z-index: 1;
border: 3px solid #fff;
box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
} */

#eventTimeline .status-FPS { background-color: #0d6efd; }
/* #eventTimeline .status-TV { background-color: #6f42c1; } */
#eventTimeline .status-CDP { background-color: #fff;border: 5px solid #f08f58; }
#eventTimeline .status-ACT { background-color: #198754; }

.timeline-label {
margin-top: 0.5rem;
font-weight: 600;
color: #495057;
font-size: 0.9rem;
}

.timeline-time {
font-size: 0.8rem;
color: #6c757d;
}

/* #downloadPDF{
margin-left: 351px;
} */

#pdfLoader {
display: none;
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(255,255,255,0.8);
z-index: 9999;
text-align: center;
font-size: 18px;
color: #007bff;
}

#overlay,#unauth,#div_setup_dts {
display: none;
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%; 
z-index: 9999;
text-align: center;
background: rgba(0, 0, 0, 0.5);
font-size: 20px;
color: #f3f3f3;
}
#pdfLoader .spinner,#overlay .spinner,#unauth .spinner,#div_setup_dts .spinner {
border: 4px solid #f3f3f3;
border-top: 4px solid #007bff;
border-radius: 50%;
width: 50px;
height: 50px;
margin: 200px auto 20px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

.status-mode-CXL {
background-color: #f8d7da !important; 
color: #721c24 !important;            
}

/*New design and dev for file process edited on 17-10-25 */

.file-section {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.event-item {
  border-left: 3px solid #0d6efd;
  padding-left: 1rem;
  margin-bottom: 1rem;
  position: relative;
}
.event-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 8px;
  width: 10px;
  height: 10px;
  background: #0d6efd;
  border-radius: 50%;
}
.event-type {
  font-weight: 600;
  color: #0d6efd;
}
.event-time {
  font-size: 0.9rem;
  color: #6c757d;
}


#file_processing_details {
padding: 20px;
background: #fff;
margin: 16px 0px;
border: none;
border-radius: 14px;
}
#file_processing_details h3 {
font-size: 20px;
}
#file_processing_details .card {
  /* padding: 20px;
  border: none;
  line-height: 27px;
  height: 612px;
  overflow: auto; */
  font-size: 13px;
        margin: 0px !important;
}
div#fileList {
    height: 612PX;
     overflow: AUTO;
   }
#fileList .badge.bg-secondary {
  background: #80808021 !important;
  color: #000;
  padding: 10px;
}
.event-item .badge.bg-info.me-2 {
background-color: rgba(26, 64, 216, 0.35) !important;
color: #17034e !important;
padding: 7px 10px;
}
.event-item .bg-warning {
background: rgba(253, 191, 5, 0.32) !important;
padding: 7px 12px;
}
.event-item .badge.bg-success.me-2 {
background: rgba(24, 132, 82, 0.52) !important;
padding: 6px 12px;
color: #073004;
}
.file-section {
font-size: 15px;
}

#frm_Company_validation_wizard .actions{
    margin-top:-170px
}

 #div_tbl_File_Processing_Details_New {
      width: 100%;
      height: 400px !important;
    }
    #div_mpci_summary_reports_overall_tbl{
        width: 100%;
        height: 800px;
    }

.chart-card-modern {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
    transition: 0.25s ease;
    overflow: hidden;
}

/* Hover */
.chart-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}


.chart-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f1f1;
    background: #fafafa;
}

.chart-header-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-header-icon i {
    font-size: 18px;
    color: #555;
}

.chart-header-title {
    font-size: 1rem;
    font-weight: 600;
    color: #444;
}


.chart-card-body {
    /* padding: 20px; */
    min-height: 260px;
    background: #fff;
    border-radius: 0 0 14px 14px;
}



.kpi-modern {
    background: #ffffff;
    border-radius: 14px;
    padding: 1rem 1.2rem;
    border: 1px solid #e8e8e8;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

/* Top section */
.kpi-modern-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kpi-modern-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.kpi-modern-label {
    font-size: 14px;
    color: #777;
    margin-top: -3px;
}

.kpi-modern-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #eef6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 20px;
}

/* Progress bar */
.modern-progress {
    height: 6px;
    border-radius: 10px;
    margin-top: 12px;
    background: #e9ecef;
    overflow: hidden;
}

.modern-progress .progress-bar {
    transition: width 0.6s ease;
}

.modern-file-table {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e7e7e7;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
    padding: 0;
    overflow: hidden;
    transition: 0.25s ease;
}

.modern-file-table:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


.modern-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f1f1;
    background: #fafafa;
}

.btn-download {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s ease;
}

.btn-download i {
    font-size: 14px;
}

.btn-download:hover {
    background: #1e64da;
}


.ag-theme-alpine {
    height: 400px; /* Adjust as needed */
    border-radius: 0 0 14px 14px !important;
    border: none !important;
    background: #ffffff !important;
}

.ag-theme-alpine .ag-header {
    background: #fafafa !important;
    border-bottom: 1px solid #e7e7e7 !important;
}

.ag-theme-alpine .ag-header-cell-label {
    font-weight: 600;
    color: #444;
}

.ag-theme-alpine .ag-row {
    border-bottom: 1px solid #f1f1f1 !important;
}

.ag-theme-alpine .ag-row-hover {
    background: #f7faff !important;
}

.ag-theme-alpine .ag-row-selected {
    background: #e9f1ff !important;
}

.ag-theme-alpine .ag-cell {
    font-size: 14px;
    color: #333;
}
div#timelineChart {
    min-height: 0px !important;
}
html.k-webkit.k-webkit142 {
    overflow: hidden;
    float: left;
    width: 100%;
    height: 100%;
}

i.fas.fa-bug {
    color: #000;
}
#modularModalTitle i.fas.fa-bug {
    color: #fff;
}
#div_mpci_registion_form .modal-header .btn-close {
    /* filter: invert(1) !important; */
    opacity: 1 !important;
}
.platform_user_mpci_registeration_form 
#div_mpci_registion_form .modal-header .btn-close {
    filter: invert(1) !important;
    opacity: 1 !important;
}
.mpci-menu-item {
  display: flex;
  align-items: center;
}

.mpci-top-links {
  display: flex;
  gap: 14px;
}

/* Base link style */
.mpci-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}

/* Hover for Apply */
.mpci-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* PRIMARY CTA — Register Now */
.mpci-link--primary {
  background: linear-gradient(135deg, #1e88ff, #0d6efd);
  border: none;
  box-shadow: 0 6px 18px rgba(30, 136, 255, 0.35);
}

.mpci-link--primary:hover {
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  transform: translateY(-1px);
}

/* Icon sizing */
.mpci-link svg {
  width: 18px;
  height: 18px;
}

.mpci-link {
  position: relative;
}

.mpci-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #4da3ff;
  transition: width 0.25s ease;
}

.mpci-link:hover::after {
  width: 100%;
}

.form_section .mpci-link {
  background: #2e4b64;
  transition: width 0.25s ease;
  padding: 6px 19px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(223, 223, 223, 0.35);
  font-size: 14px;
}

 
#mpciForm h1 {
  font-size: 26px !important;
}
.div_mpci_reg_form_company_Dtls .control-label.text-danger {
  white-space: nowrap !important;
  color: #e10a0a !important;
}


.text-gradient {
    background: linear-gradient(135deg, #07847f 0%, #29b1a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-soft {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

/* .feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
  font-weight: 700;
  flex-shrink: 0;
} */
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: .75rem;
    background: linear-gradient(135deg, #40a1ff 0%, #70b2f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 6px 16px rgba(24, 125, 183, .35);
}
.ai-badge {
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
}

.btn-teal-outline {
  border: 1px solid #0d9488;
  color: #0d9488;
  background: transparent;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
}

.btn-teal-outline:hover {
  background: #0d9488;
  color: #fff;
}
.step-dot.completed {
    background: linear-gradient(135deg, #07847f 0%, #29b1a3 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(24, 183, 177, .35);
}
.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e6f7f6;
    color: #07847f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
button.btn.btn-teal,a.btn.btn-teal {
    color: rgb(255, 255, 255);
    box-shadow: rgba(24, 183, 177, 0.35) 0px 6px 18px;
    background: linear-gradient(135deg, rgb(7, 132, 127) 0%, rgb(41, 177, 163) 100%);
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 0.75rem;
    padding: 0.4rem 1.1rem;
}
.step-line {
    width: 4px;
    flex: 1;
    background: linear-gradient(to bottom, #e5e7eb, transparent);
    margin: .5rem auto;
}
.required {
    color: #dc3545; 
    font-weight: 600;
}
.required-label::after {
    content: " *";
    color: #dc3545;
    font-weight: 600;
}
.bg-dark-modern {
    background: #232931 !important;
    border-radius: 12px;
}

.step-badge {
    width: 32px;
    height: 32px;
    background: #13deb9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-badge-outline {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.industrial-label {
    font-size: 10px;
    font-weight: 800;
    color: #7c8fac;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.premium-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.premium-input:focus {
    border-color: #5d87ff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: none;
}

#mpci-error {
    letter-spacing: 0.5px;
    font-size: 10px !important;
}

.border-success { border-color: #13deb9 !important; }
.border-danger { border-color: #fa896b !important; }


.file-table .control-label {
  font-size: 13px;
}
#fileList .text-primary {
  color: #189a9a !important;
}
#fileList .btn.btn-sm.btn-outline-primary {
    border-color: #189a9a !important;
}
#fileList .fas.fa-download {
 color: #189a9a;
}
#fileList .btn.btn-sm.btn-outline-primary:hover {
  background: #189a9a !important;
}
#fileList .btn.btn-sm.btn-outline-primary:hover #fileList .fas.fa-download {
  color: #fff !important;
}
#fileList .fas.fa-download:hover {
  color: #fff !important;
}
#div_mpci_control .btn-primary, .file-table  .btn-primary {
     background: #189a9a !important;
     border-color:#189a9a !important;
}

#div_tbl_File_Processing_Details_New .status-mode-NEW {
background-color: rgba(62, 184, 95, 0.1) !important;
color: #3ab15a !important;
border-color: rgba(62, 185, 95, 0.1);
}
#div_tbl_File_Processing_Details_New  .status-TE {
    background-color: rgba(231, 75, 43, 0.1) !important;
    border-color: rgba(231, 75, 43, 0.1);
    color: #e14828 !important;
}
.total_file .kpi-icon {
  background: #d2e7fb;
  /* border: 1px solid #1d8ffe; */
}
.total_file .kpi-icon i {
    color: #0d6efd;
}
.Accepted  .kpi-icon {
  background-color: rgba(48, 142, 135, 0.1) !important;
  /* border: 1px solid #308a84; */
}
.Accepted .kpi-icon i {
    color: #198754;
}
.Request  .kpi-icon {
  background: rgba(234, 146, 0, 0.1) !important;
  border: rgba(234, 146, 0, 0.1) !important
}
.Request  .kpi-icon i {
  color: #f09601 !important;
}
.DND .kpi-icon {
    background: rgba(231, 75, 43, 0.1) !important;
}
.DND .kpi-icon i{
color: #e14828 !important;
}
.Awaiting .kpi-icon {
  background: #4360ed3b;
  /* border: 1px solid #4360ed4f; */
}
.Awaiting .kpi-icon i{
    color: #4360ed;
}

.wave {
    display: inline-block;
    animation: wave-animation 1.8s infinite;
    transform-origin: 70% 70%;
}

@keyframes wave-animation {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}
#fileDetailsPanel .panel-header {
  background: #189a9a;
  padding: 7px 20px;
}
#fileDetailsPanel h5 {
  font-size: 16px;
}
#fileDetailsPanel #downloadPDF,#fileDetailsPanel #closePanel {
  background: transparent;
  border: transparent;
  color: #fff;
  font-size: 18px;
  text-align: right;
}
 
#fileDetailsContent span {
  font-size: 13px;
}
#fileDetailsContent td {
  font-size: 12px;
}
#fileDetailsContent .nav-link.active {
  background: transparent;
  color: #189a9a !important;
  border-bottom: 1px solid #189a9a;
  border-top: none;
  border-right: none;
  border-left: none;
}
#fileDetailsContent .nav-item .nav-link {
  color: #2a3547;
  font-size: 15px;
}
#fileDetailsPanel .panel-content {
    height: 700px;
    overflow-y: scroll;
}
.vertical-timeline {
    position: relative;
    margin: 20px 0;
    padding-left: 45px;
}

.vertical-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    border-left: 1px dashed #a9a19e;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-dot {
    position: absolute;
    left: -1px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ccc;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #dee2e6;
}

.timeline-dot.completed {
    background: #28a745;
    box-shadow: 0 0 0 2px rgba(40,167,69,0.2);
}

.timeline-dot.processing {
    background: #6f42c1;
    box-shadow: 0 0 0 2px rgba(111,66,193,0.2);
}

.timeline-dot.failed {
    background: #dc3545;
    box-shadow: 0 0 0 2px rgba(220,53,69,0.2);
}

.timeline-content {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.timeline-time {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 4px;
}
.mpci-timeline {
    position: relative;
    margin-top: 20px;
    padding-left: 60px;
}

.mpci-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #d9d9d9;
}

.mpci-step {
    position: relative;
    margin-bottom: 55px;
}

.mpci-dot {
    position: absolute;
    left: -2px;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f1f1;
    border: 3px solid #d9d9d9;
}

.mpci-dot.active {
    background: #6f42c1;
    border-color: #e4d9fb;
}

.mpci-dot.completed {
    background: #ffffff;
    border-color: #cfcfcf;
}

.mpci-dot.failed {
    background: #f8d7da;
    border-color: #f5c2c7;
}

.mpci-content {
    text-align: center;
}

.mpci-title {
    font-weight: 600;
    color: #2c3e50;
}

.mpci-time {
    font-size: 14px;
    color: #6c757d;
    margin-top: 4px;
}

#timelineTabPane .form-control {
  border: none;

}
.timeline-point {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  min-height: 20px;
  min-width: 20px;
  background-color: #fcfafa;
  border: 5px solid #318e87;
  position: absolute;
  z-index: 1;
  outline: unset;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.03);
  left: -34px;
}
#fileDetailsPanel .panel-content {
   height: calc(100vh - 70px);
  overflow-y: scroll;
  overflow-x: hidden;
}
#fileDeatilsAccordion, .accordion-button:not(.collapsed) {
    background: #189a9a1f !important;
}
.manifest-data .field{
display:flex;
align-items:center;
gap:5px;
padding:4px 0;
}

.manifest-data label{
font-weight:600;
margin:0;
white-space:nowrap;
}

.manifest-data span{
color:#444;
}
.field{
display:flex;
align-items:center;
gap:6px;
padding:4px 0;
}

.field label{
font-weight:600;
margin:0;
white-space:nowrap;
}

.field span{
color:#444;
}
.container-box{
border:1px solid #e5e7eb;
border-radius:6px;
padding:12px;
background:#fafafa;
}

.container-title{
font-weight:600;
color:#333;
margin-bottom:8px;
border-bottom:1px solid #e5e7eb;
padding-bottom:4px;
}

.field{
display:flex;
gap:6px;
padding:4px 0;
}

.field label{
font-weight:600;
margin:0;
white-space:nowrap;
}

.field span{
color:#444;
}
.container_details{
  border: #e9dddd52 1px solid;
    padding: 17px;
}
  #fileDetailsAccordion .mb-4.form-control {
    padding-left: 17px;
}


#fileDeatilsAccordion, .accordion-button:not(.collapsed) {
    background: rgb(24 154 154 / 61%) !important;
    color: white;
    padding: 15px !important;
}

button.accordion-button {
    color: #189a9a;
}
.accordion-button:not(.collapsed)::after {
    background-image: white;
    transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button:focus{
        border-color: white;
box-shadow: none;
}
.custom-accordion .timeline-card{
    border-radius:8px;
    margin-bottom:10px;
    padding:10px 14px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#fff;
    border-left:5px solid transparent; /* base */
}

.timeline-success{
    border-left-color:#28a745 !important;
    background:#eaf7ee;
}

.timeline-processing{
    border-left-color:#0d6efd !important;
    background:#eef4ff;
}

/* PENDING */
.timeline-pending{
    border-left-color:#f39c12 !important;
    background:#fff6e6;
}

/* ERROR */
.timeline-error{
    border-left-color:#dc3545 !important;
    background:#fdeaea;
}
.timeline-legend{
display:flex;
gap:12px;
margin-bottom:8px;
font-size:12px;
align-items:center;
}

.legend-item{
display:flex;
align-items:center;
gap:5px;
}

.legend-color{
width:10px;
height:10px;
border-radius:2px;
display:inline-block;
}

/* colors */

.legend-color.processing{
background:#0d6efd;
}

.legend-color.pending{
background:#f39c12;
}

.legend-color.success{
background:#28a745;
}

.legend-color.error{
background:#dc3545;
}

  body{
background:#f4f6fa;
transition:.3s;
font-family:Segoe UI;
}

.dark{
background:#0f172a;
color:white;
}

/* cards */

.card{
border-radius:12px;
}

.chart-card{
padding:20px;
border-radius:12px;
transition:0.25s;
}

.chart-card:hover{
transform:translateY(-3px);
}

.chart-card canvas{
max-height:220px;
}

/* metric cards */

.monitor-card{
background:white;
padding:18px;
border-radius:12px;
text-align:center;
transition:0.3s;
position:relative;
}

.monitor-card:hover{
transform:translateY(-2px);
}

.dark .monitor-card{
background:#1e293b;
}

.metric{
font-size:22px;
font-weight:600;
margin-top:6px;
color:#111827;
}

.title{
font-size:14px;
color:#6b7280;
}


.cpu-card{
border-left:4px solid #6366f1;
}

.mem-card{
border-left:4px solid #06b6d4;
}

.uptime-card{
border-left:4px solid #22c55e;
}

.server-card{
border-left:4px solid #f59e0b;
}

/* server status */

.server-status-card{
border-left:4px solid #3b82f6;
}

.server-box{
background:#f8fafc;
border-radius:8px;
padding:10px 14px;
display:flex;
justify-content:space-between;
align-items:center;
}


.status-dot{
width:10px;
height:10px;
border-radius:50%;
display:inline-block;
margin-right:6px;
}

.up{
background:#22c55e;
animation:pulse 2s infinite;
}

.down{
background:#ef4444;
}

@keyframes pulse{
0%{box-shadow:0 0 0 0 rgba(34,197,94,.6)}
70%{box-shadow:0 0 0 10px rgba(34,197,94,0)}
100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}
}


.job-monitor-card{
border-radius:12px;
}

.job-table-head{
background:#f8fafc;
font-size:13px;
color:#475569;
}

.table td,
.table th{
padding:10px 14px;
vertical-align:middle;
}


.progress{
height:8px;
border-radius:6px;
background:#e5e7eb;
}

.progress-bar{
background: rgb(24, 154, 154) !important;
}


.timeline-row{
display:flex;
align-items:center;
background:#f8fafc;
padding:10px 14px;
border-radius:8px;
margin-bottom:10px;
border-left:4px solid #3b82f6;
gap:15px;
}

.timeline-text{
font-weight:600;
min-width:250px;
}

.timeline-meta{
flex:1;
font-size:12px;
color:#6b7280;
}

.timeline-time{
min-width:80px;
text-align:right;
font-size:12px;
color:#6b7280;
}
.sb-body{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:8px;
}

.sb-card{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px;
  border-radius:14px;
  background:#fff;
  border:1px solid #e6f0ef;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
  transition:all .25s ease;
}

.sb-card:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  border-color:#bfe7e2;
}

.sb-active{
  border:1px solid #189a9a;
  background:#eefafa;
  box-shadow:0 4px 14px rgba(24,154,154,0.15);
}

.sb-avatar{
  position:relative;
  width:42px;
  height:42px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eef6f5;
}

.sb-avatar.active{
  background:#ffffff;
  box-shadow:0 0 0 2px rgba(24,154,154,0.3);
}

.company-icon{
  width:22px;
  height:22px;
  opacity:0.6;
  transition:0.2s;
}

.sb-avatar.active .company-icon{
  opacity:1;
  filter: invert(42%) sepia(63%) saturate(430%) 
          hue-rotate(140deg) brightness(92%) contrast(92%);
}

.company-initial{
  position:absolute;
  bottom:-4px;
  right:-4px;
  background:#189a9a;
  color:#fff;
  font-size:9px;
  font-weight:600;
  padding:2px 5px;
  border-radius:6px;
  box-shadow:0 2px 6px rgba(0,0,0,0.15);
}

.sb-info{
  flex:1;
}

.sb-name{
  font-size:13px;
  font-weight:600;
  color:#111827;
}

.sb-role{
  font-size:11px;
  color:#9ca3af;
}

.sb-btn{
  font-size:11px;
  font-weight:600;
  padding:6px 12px;
  border-radius:8px;
  border:none;
  background:#189a9a;
  color:#fff;
  cursor:pointer;
}

.sb-btn:hover{
  background:#157f7f;
}

.sb-dot{
  width:8px;
  height:8px;
  border-radius:50%;
}

.sb-dot.on{
  background:#189a9a;
}

.sb-dot.off{
  background:#d1d5db;
}

.premium-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  background:linear-gradient(135deg, #189a9a, #1fb5b5) !important;
  color:#fff;
}

.header-left{
  display:flex;
  align-items:center;
  gap:12px;
}

.header-icon{
  width:36px;
  height:36px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#ffffff20;
  color:#fff;
}

.header-sub{
  font-size:11px;
  opacity:0.9;
}

.company-search-input{
  border-radius:8px;
  font-size:13px;
}

#drop2{
    color:#189a9a   !important
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}
.mpcifm-action-set .btn-outline-success {
     color: #189a9a;
    border-color: #189a9a;
}
.mpcifm-action-set .btn-outline-success:hover {
     color: #fff;
     background-color:#189a9a ;
    border-color: #189a9a;
}
button#blApprovalRefresh {
    background: #189a9a;
    border: #18999a;
}
.file_details {
    font-size: 13px;
}
button#historyRefresh,#blApprovalRefresh {
    background: #189a9a;
    border: #189a9a;
}
button#historyRefresh:hover,#blApprovalRefresh:hover {
    background: white;
    color: #189a9a;
}
button#historyExcel,#blApprovalExcel{
     background: white;
    color: #189a9a;
    --bs-btn-border-color: #189a9a;
}
button#historyExcel:hover,#blApprovalExcel:hover{
     background: #189a9a;
    color: #fff;
}
.btn-primary{
         background: #189a9a !important;
          border-color: #189a9a;

}
.btn-primary:hover{
    background-color: white !important;
    color: #189a9a !important;
      border-color: #189a9a !important;
      
}
.modal-header {
    background-image: url(../../assets/images/shapes/iootpbg.jpg) !important;
    background-position: center;
    background-size: cover;
    color: #fff !important;
    background-color: unset !important;
}
button#fileVerificationRefresh {
    background: #189a9a;
    border: #18999a;
}
button#rejectionRefresh {
    background: #189a9a;
    border: #189a9a;
}
button#rejectionRefresh:hover{
    background: white;
    border: #189a9a;
    color: #189a9a;
}
button#rejectionExcel {
      background: white;
    --bs-btn-border-color: #189a9a;
    color: #189a9a;
}
button#rejectionExcel:hover {
      background: #189a9a;
    border: #189a9a;
    color: #fff;
}
button#auditRefreshButton {
    background: #189a9a;
    border: #189a9a;
}
button#auditRefreshButton:hover {
    background: white;
    color: #189a9a;
}
button.btn.btn-success.js-mailnotify-download {
    background: #189a9a;
    border: #189a9a;
}
.mailnotify-detail-hero__actions, button.btn.btn-outline-success {
    background: white;
    color: #189a9a;
    border-color: #189a9a !important;
}
button#referenceRefreshBtn {
    background: #189a9a;
    border-color: #189a9a;
}
button#referenceRetryBtn {
    background: #189a9a;
    border-color: #189a9a;
}
button#referenceAddDomainOpenBtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: #eef5f1;
    color: #285447;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid #ddebe4;
}
.btn_setting_model_dts {
    margin: auto;
}
.total_file::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(6, 101, 171, 0.12), rgba(6, 101, 171, 0.55), rgba(6, 101, 171, 0.12));
    transform: scaleX(0.35);
    transform-origin: center;
    transition: transform 260ms ease;
}
.kpi-card-green::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(6, 101, 171, 0.12), rgb(25 135 84), rgba(6, 101, 171, 0.12));
    transform: scaleX(0.35);
    transform-origin: center;
    transition: transform 260ms ease;
}
.kpi-card-yellow::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(6, 101, 171, 0.12), rgb(255 202 42), rgba(6, 101, 171, 0.12));
    transform: scaleX(0.35);
    transform-origin: center;
    transition: transform 260ms ease;
}
.kpi-card-danger::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(6, 101, 171, 0.12), rgb(220 58 74), rgba(6, 101, 171, 0.12));
    transform: scaleX(0.35);
    transform-origin: center;
    transition: transform 260ms ease;
}
.kpi-card-info::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(6, 101, 171, 0.12), rgb(67 96 237), rgba(6, 101, 171, 0.12));
    transform: scaleX(0.35);
    transform-origin: center;
    transition: transform 260ms ease;
}
.kpi-card-techical::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(6, 101, 171, 0.12), rgb(74 74 74), rgba(6, 101, 171, 0.12));
    transform: scaleX(0.35);
    transform-origin: center;
    transition: transform 260ms ease;
}
#applyFilter:hover {
    color: #189a9a !important;
    background: white !important;
}
/* .btn-close {
    filter: invert(1);
} */
div#mpciNotificationManagerList {
    top: 0;
    position: sticky !important;
}
.kpi-icon.text-info i.fas.fa-bug {
    color: #000000;
}
.summary-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.icon-blue {
    background: #e8f1ff;
    color: #2d63a2;
}

.icon-green {
    background: #eaf8f2;
    color: #0c7a5b;
}

.icon-orange {
    background: #fff6e8;
    color: #b96d12;
}

.icon-red {
    background: #fdecec;
    color: #d92d20;
}
.mail-template-summary-card:hover .summary-icon-box {
    transform: scale(1.08);
    box-shadow: 0 10px 22px rgba(45, 99, 162, 0.25);
}
.summary-icon-box {
    width: 48px;
    height: 48px;
    font-size: 14px;
}
button.btn.btn-sm.btn-light-primary.a_mail_template_mapping_options_Edit {
    background: #189a9a;
    color: white;
}
button.btn.btn-sm.btn-light-danger.a_mail_template_mapping_options_Delete {
    background: #fa896bc7;
    color: white;
}
.filedetails{
    font-size: 14px;
}
.timeline-simple-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    background: #f7f9fb;
    padding: 6px 10px;
    border-radius: 6px;
}
.audit-sort-btn {
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.sort-icon {
  margin-left: 6px;
  font-size: 12px;
  color: #888;
}

.audit-sort-btn:hover .sort-icon {
  color: #000;
}
button#mpciFileVisibleRefresh {
    background: #189a9a;
    border-color: #189a9a;
}
#mpciFileVisibleDetailPanel i.fa.fa-file-text
 {
    color: #189a9a;
}
.mpci_supscription_list{
     white-space: normal;
  word-break: break-word;
}
button#btn_div_mpci_summary_reports_frm_PROCESS:hover {
    color: #189a9a !important;
    background: white;
    /* border: #189a9a !important; */
}
button#mpciFileVisibleRefresh:hover {
    background: white;
    border-color: #189a9a;
    color: #189a9a;
}
div#auditUserDetailsBody {
    height: calc(100vh - 100px);
    overflow-x: auto;
}
button#referenceSaveDomainBtn {
    background: #189a9a;
    border-color: #189a9a;
}
.reg-form-customer-dtls .row.mt-2 {
    display: block;
}
.platform_user_mpci_registeration_form h5.fw-bold.text-primary {
    color: #189a9a !important;
}
.platform_user_mpci_registeration_form .wizard-content .wizard>.steps>ul>li.current .step {
    border-color: #189a9a !important;
    background-color: #fff;
    color: #189a9a !important;
}
.platform_user_mpci_registeration_form .wizard-content .wizard.wizard-circle>.steps>ul>li:after {
    top: 45px;
    width: 50%;
    height: 3px;
    background-color: #189a9a;
}
.platform_user_mpci_registeration_form .wizard-content .wizard.wizard-circle>.steps>ul>li:before {
    top: 45px;
    width: 50%;
    height: 3px;
    background-color: #189a9a;
}
.platform_user_mpci_registeration_form .wizard-content .wizard>.steps>ul>li.done .step
 {
    background-color: #189a9a;
    border-color: #189a9a;
    color: #fff;
}
.mpci-file-visible-empty i.fa.fa-folder-open-o {
    color: #189a9a;
}
button#btn_upload_logo {
    background: #189a9a;
    border-color: #189a9a;
}
#offcanvasRight .simplebar-content {
    position: relative;
    top: 12%;
    left: 1% !important;
}
button#referenceOpenAddCodeBtn {
    background: #189a9a;
    border-color: #189a9a;
}
.platform_user_mpci_registeration_form .wizard-content .wizard>.actions>ul>li>a {
    background: #189a9a !important;
    color: #fff !important;
    display: block;
    padding: 7px 12px;
    border-radius: 4px;
    border: 1px solid transparent;
}
.client-res-btn.btn-outline-primary {
    color: #189a9a;
    border-color: #189a9a;
}
.client-res-btn.btn-outline-primary:hover {
    color: #ffffff;
    border-color: #189a9a;
    background: #007f84;
}
button#div_role_add {
    background: #189a9a;
    border-color: #189a9a;
}
.refsetup-actions [data-ref-toggle] {
    width: 28%;
}
.wizard-content .wizard>.steps>ul>li.current .step {
    border-color: #189a9a;
    background-color: #fff;
    color: #189a9a;
}
/* .text-primary {
    --bs-text-opacity: 1;
    color:  #189a9a !important;
} */
.wizard-content .wizard .actions ul li a {
    background: #189a9a;
}
.wizard-content .wizard.wizard-circle>.steps>ul>li:after {
    top: 45px;
    width: 50%;
    height: 3px;
    background-color: #189a9a;
}
.wizard-content .wizard>.steps>ul>li.done .step {
    background-color: #189a9a;
    border-color: #189a9a;
    color: #fff;
}
.wizard-content .wizard.wizard-circle>.steps>ul>li:before {
    top: 45px;
    width: 50%;
    height: 3px;
    background-color: #189a9a;
}
.wizard-content .wizard>.actions>ul>li>a[href="#previous"] {
    background-color: #fff;
    /* color: #ffffff; */
    border: 1px solid #d9d9d9;
}
.wizard-content .wizard.wizard-circle>.steps>ul>li.current:after {
    background-color: #f6f9fc;
}
.wizard-content .wizard>.steps>ul>li.disabled a {
    color: #5a6a85;
    cursor: default;
}
.wizard-content .wizard>.steps>ul>li.current>a {
    color: #5a6a85;
    cursor: default;
}
.wizard-content .wizard .actions ul li a:hover {
    background: #189a9a;
    color: #fff;
}
button#btn_view_new_upload {
    background: #189a9a;
    border-color: #189a9a;
}
.btn-view-details {
    background: #189a9a;
    border-color: #189a9a;
}
.div_mpci_cmvi_file_visible_collection_list button.btn.btn-outline-success:active {
    background: #189a9a;
    border-color: #189a9a;
}
button#mpciValidationSubmit {
    background: #189a9a;
    border-color: #189a9a;
}
button#referenceSaveCodeBtn {
    background: #189a9a;
    border-color: #189a9a;
}
.referenceFooterMeta, .btn.btn-sm.btn-success {
    background: rgb(24, 154, 154);
    border-color: rgb(24, 154, 154);
}
.mpci-file-visible-actions button.btn.btn-sm.btn-outline-success:active {
    background: #189a9a;
}
.btn-close.btn-close-white {
    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
    font-size: 14px;
}

.btn-group:has(button:not([style*="display: none"])) {
    background: #189a9a !important;
    padding: 5px 13px !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px !important;
    border-radius: 25px !important; 
}
.landing .btn {
    background: none !important;
    padding: none !important;
    box-shadow: none !important;
}
.highlight-badge {
    font-weight: 600;
    background: rgb(24 154 154 / 12%);
    padding: 2px 6px;
    border-radius: 6px;
    color: rgb(24, 154, 154) !important;
}
.btn_verify_address_mpci_code.btn-success {
    background: white !important;
}
.mpci-notify-detail-actions a.btn.btn-success.btn-sm {
    color: #fff;
}
div#div_edi_setup_frmgrp_unique_id .btn-group {
    background: none !important;
    box-shadow: none !important;
}
.div_create_mpci_Registration_Address .div_mpci_registration_frmgrp  {
    display: block !important;
    width: 100% !important;
    /* padding: .375rem .75rem !important; */
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 30px !important;
    color: var(--bs-body-color) !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-color: var(--bs-body-bg) !important;
    background-clip: padding-box !important;
    border: #0c4d4d;
    border-radius: 39px !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
    /* margin: 8px 0px; */
}
#div_mpci_mpci_registration_frm_NAME{
      display: block !important;
    width: 100% !important;
    /* padding: .375rem .75rem !important; */
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 30px !important;
    color: var(--bs-body-color) !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-color: var(--bs-body-bg) !important;
    background-clip: padding-box !important;
    border: #0c4d4d;
    border-radius: 39px !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
    /* margin: 8px 0px; */
}
#div_mpci_mpci_registration_frmgrp_MPCI_CODE{
      display: block !important;
    width: 100% !important;
    /* padding: .375rem .75rem !important; */
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 30px !important;
    color: var(--bs-body-color) !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-color: var(--bs-body-bg) !important;
    background-clip: padding-box !important;
    border: #0c4d4d;
    border-radius: 39px !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
    /* margin: 8px 0px; */
}
#div_mpci_mpci_registration_frm_CONTENT_PERSON_NAME{
      display: block !important;
    width: 100% !important;
    /* padding: .375rem .75rem !important; */
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 30px !important;
    color: var(--bs-body-color) !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-color: var(--bs-body-bg) !important;
    background-clip: padding-box !important;
    border: #0c4d4d;
    border-radius: 39px !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
    /* margin: 8px 0px; */
}
input#div_mpci_mpci_registration_frm_MPCI_CODE {
    margin-left: 0 !important;
    border-top-left-radius: 22px !important;
    border-bottom-left-radius: 22px !important;
}
.div_create_mpci_Registration_Address .iti--separate-dial-code .iti__selected-flag{
    margin-left: 0 !important;
    border-top-left-radius: 22px !important;
    border-bottom-left-radius: 22px !important;
}