﻿.nobg {
    background: white;
    border: none;
}



.table th {
    display: table-cell;
    line-height: 20px;
    padding: 8px;
    vertical-align: top;
    border-top: 1px solid #ddd;
    text-align: left;
    background-color: #3C93B6;
    font-weight: bold;
    color: White;
    border-top: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
}

    .table th a {
        color: White;
        text-decoration: none;
    }


.pointer {
    cursor: pointer;
}
a, a:hover, a:focus {
    text-decoration: none;
    outline: none;
}
a {
    text-decoration: none;
}


.table td a {
    color: rgb(51, 122, 183);
}

.table tr {
    /*background-color:rgba(117, 189, 209, 0.16);*/
    vertical-align: inherit;
    border-color: inherit;
}



.table .alt {
    background: White;
}

.table1 th {
    display: table-cell;
    line-height: 20px;
    padding: 2px;
    vertical-align: top;
    border-top: 1px solid #ddd;
    text-align: left;
    background-color: #7c3f00;
    font-weight: bold;
    color: White;
    border-top: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
}

    .table1 th a {
        color: White;
        text-decoration: none;
    }

.table1 td a {
    color: #000;
}

.table1 tr {
    /*background-color:rgba(117, 189, 209, 0.16);*/
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}

.table1 .alt {
    background: White;
}


.table2 th {
    display: table-cell;
    line-height: 20px;
    padding: 2px;
    vertical-align: top;
    border-top: 1px solid #ddd;
    text-align: left;
    background-color: #969696;
    font-weight: bold;
    color: White;
    border-top: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
}

    .table2 th a {
        color: White;
        text-decoration: none;
    }

.table2 td a {
    color: #000;
}

.table2 tr {
    /*background-color:rgba(117, 189, 209, 0.16);*/
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}

.table2 .alt {
    background: White;
}



/* --------------------------------------------------------------------------------  */

/* ========== ORANGE-THEMED TABLE STYLES ========== */
.table {
    border: 1px solid #003B66; /* Orange border */
    border-collapse: collapse;
    width: 100%;
    min-width: 100%;
}

.jsongrid {
    width: max-content !important;
}

.table tr th {
    border: 1px solid #D35400; /* Dark orange border */
    border-collapse: collapse;
    display: table-cell;
    line-height: 20px;
    padding: 5px 5px;
    vertical-align: top;
    text-align: left;
    background-color: #003B66; /* Primary orange header */
    font-weight: bold;
    color: white;
}

.table tr td {
    border: 1px solid #F39C12; /* Bright orange border */
    border-collapse: collapse;
    display: table-cell;
    padding: 2px 5px;
    text-align: left;
    font-family: "Arial", Century Gothic, Monospace;
    color: #5D4037; /* Brown-orange text */
}

/* Zebra Striping */
.table tr:nth-child(2n+1) td { 
    background-color: #FFFFFF; /* Light orange */
}

.table tr:nth-child(2n) td { 
    background-color: #FFFFFF; /* Slightly darker light orange */ 
}

/* ========== STATUS INDICATORS (ORANGE-THEME FRIENDLY) ========== */
/* Red -> Dark Orange-Red */
td:has(div.red),
td:has(.red) {
    background-color: #C0392B !important;
    color: white !important;
}

/* Green -> Earthy Green (Maintained for status) */
td:has(div.green),
td:has(.green) {
    background-color: #27AE60 !important;
    color: white !important;
}

/* Pink -> Coral Orange */
td:has(div.pink),
td:has(.pink) {
    background-color: #FF7F50 !important;
    color: white !important;
}

/* White -> Kept */
td:has(div.white),
td:has(.white) {
    background-color: white !important;
}

/* Light Blue -> Peach */
td:has(div.lightblue),
td:has(.lightblue) {
    background-color: #FFCC80 !important;
    color: black !important;
}

/* Violet -> Spiced Plum */
td:has(div.voilet),
td:has(.voilet) {
    background-color: #6D214F !important;
    color: white !important;
}

/* Maroon -> Burnt Sienna */
td:has(.maroon) {
    background-color: #A84300 !important;
    color: white !important;
}

/* ========== HOVER STATES ========== */
.table tr:hover td {
    background-color: #e4faff !important; /* Light orange highlight */
}


.mainmenu > li > a {
    padding: 8px 10px;
    line-height: 15px;
    text-decoration: none;
    color: #894000;
    display: block;
}

.sub-menu > li > a {
    padding: 1px 10px;
    line-height: 20px;
    color: #00559F;
    text-decoration: none;
    display: block;
}






/* Core Layout */
body {
  font-family: 'Open Sans', sans-serif;
  color: #5D4037; /* Brown-Orange text */
  background: #e4faff; /* Light orange background */
}

/* Header */
.header {
  background-color: #FFF;
  border-bottom: 1px solid #003B66; /* Primary orange */
}

/* Sidebar */
.sidebar {
  background: #e4faff; /* Primary orange */
}
.sidebar-profile {
  background: #D35400; /* Dark orange */
  color: white;
}

/* Buttons */
.btn, .btnNew {
  background-color: #003B66;
  color: white;
  border: 1px solid #D35400;
}
.btn:hover {
  background-color: #D35400;
}

.btn-danger {
  background-color: #C0392B; /* Dark red-orange */
}
.btn-warning {
  background-color: #F39C12; /* Bright orange */
}
.btn-success {
  background-color: #27AE60; /* Kept green for success */
}

/* Tables */
.table th {
  background-color: #D35400;
  color: white;
  border: 1px solid #003B66;
}
.table td {
  border: 1px solid #F39C12;
  background-color: #FFFFFF; /* Very light orange */
}


/* Notifications */
.badge-danger {
  background-color: #E74C3C; /* Red-orange */
}
.badge-warning {
  background-color: #F39C12;
}
.badge-success {
  background-color: #27AE60; /* Kept green */
}

/* Hover States */
.mainmenu > li > a:hover {
  background: #D35400;
  color: white;
}

/* Accordions */
.accordionHeader {
  background: #003B66;
  color: white;
}

/* Alerts */
.alert {
background: linear-gradient(to bottom, #FF8C00, #003B66);
  color: white;
}

/* ========== COMPONENT-SPECIFIC OVERRIDES ========== */

/* Login Form */
.LoginTextbox {
  border: 1px solid #003B66;
  background: #FFFFFF;
}

/* Progress Bars */
.progressheader {
  background: #D35400;
}

/* Calendar */
.calendar .event {
  background: #003B66;
}

/* Badges */
.badge-pink {
  background-color: #003B66; /* Light orange-pink */
}
.badge-lightblue {
  background-color: #FFCC80; /* Peach */
}

/* ========== UTILITY CLASSES ========== */

/* Backgrounds */
.bg1 { background: #003B66;} /* Dark orange */
.bg2 { background: #003B66; } /* Primary orange */
.bg3 { background: #e4faff; } /* Bright orange */
.bg4 { background: #e4faff; } /* Light orange */
.bg5 { background: #FFF; }    /* White */

/* Text */
.cl1 { color: white; }
.cl2 { color: #003B66; }      /* Brown-orange */
.cl3 { color: white; }
.cl4 { color: #5D4037; }
.cl5 { color: #F39C12; }      /* Bright orange */
.cl6 { color: #003B66; }

/* ========== MEDIA QUERIES (UNCHANGED) ========== */
@media (max-width: 900px) {
  /* ... existing media queries ... */
}





.btnNew {
    text-align: center;
    min-width: 10%;
    display: inline-block;
    line-height: 1.5em;
    vertical-align: middle;
    font-size: 1.3em;
    border: none;
    margin-bottom: 0px;
    background-color: #3C93B6;
    border-radius: 5px;
    color: #ffffff;
    padding: 7px;
    text-decoration: none;
}

.btnNew1 {
    text-align: center;
    min-width: 10%;
    display: inline-block;
    line-height: 1.5em;
    vertical-align: middle;
    font-size: 1.3em;
    border: none;
    margin-bottom: 0px;
    background-color: #24fc03;
    border-radius: 5px;
    color: #ffffff;
    padding: 7px;
    text-decoration: none;
}

.btnNew:hover {
    font-size: 1.5em;
    color: White !important;
    font: 2em;
    box-shadow: 2px 2px 10px grey;
}

.btnNew1:hover {
    font-size: 1.5em;
    color: White !important;
    font: 2em;
    box-shadow: 2px 2px 10px grey;
}

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th { padding: 8px; line-height: 1.42857; vertical-align: top; border: 1px solid rgb(221, 221, 221); }
.table-bordered { border: 1px solid rgb(221, 221, 221); }

/*for Grid start_________________________*/
.table {
    border-spacing: 0;
    display: table;
    border-color: #e2e7eb;
    position: relative;
    overflow-x: scroll
}

    .table td {
        display: table-cell;
        padding: 2px;
        text-align: left;
        border-top: 1px solid black;
        border-left: 1px solid black;
        border-right: 1px solid black;
        border-bottom: 1px solid black;
        font-family: "Arial", Century Gothic, Monospace;
    }



    .table tbody {
        display: table-row-group;
        vertical-align: middle;
        border-color: inherit;
        color: #000;
    }

    .table .pgr {
        background: #3C93B6
    }

        .table .pgr table {
            margin: 3px 0;
        }

        .table .pgr tr {
            background: #3C93B6
        }

        .table .pgr td {
            border-width: 0;
            padding: 0 6px;
            font-weight: bold;
            color: #000;
            line-height: 20px;
        }

        .table .pgr a {
            color: White;
            text-decoration: none;
        }

            .table .pgr a:hover {
                color: #000;
                text-decoration: none;
            }


.table1 {
    border-spacing: 0;
    width: 100%;
    height: 100%;
    display: table;
    border-color: #e2e7eb;
    position: relative;
}

    .table1 td {
        display: table-cell;
        padding: 2px;
        text-align: left;
        border-top: 1px solid black;
        border-left: 1px solid black;
        border-right: 1px solid black;
        border-bottom: 1px solid black;
        font-family: "Arial", Century Gothic, Monospace;
    }



    .table1 tbody {
        display: table-row-group;
        vertical-align: middle;
        border-color: inherit;
        color: #000;
    }

    .table1 .pgr {
        background: #3C93B6
    }

        .table1 .pgr table1 {
            margin: 3px 0;
        }

        .table1 .pgr tr {
            background: #3C93B6
        }

        .table1 .pgr td {
            border-width: 0;
            padding: 0 6px;
            font-weight: bold;
            color: #000;
            line-height: 20px;
        }

        .table1 .pgr a {
            color: White;
            text-decoration: none;
        }

            .table1 .pgr a:hover {
                color: #000;
                text-decoration: none;
            }


.table2 {
    border-spacing: 0;
    width: 100%;
    height: 100%;
    display: table;
    border-color: #e2e7eb;
    position: relative;
}

    .table2 td {
        display: table-cell;
        padding: 2px;
        text-align: left;
        border-top: 1px solid black;
        border-left: 1px solid black;
        border-right: 1px solid black;
        border-bottom: 1px solid black;
        font-family: "Arial", Century Gothic, Monospace;
    }



    .table2 tbody {
        display: table-row-group;
        vertical-align: middle;
        border-color: inherit;
        color: #000;
    }

    .table2 .pgr {
        background: #3C93B6
    }

        .table2 .pgr table2 {
            margin: 3px 0;
        }

        .table2 .pgr tr {
            background: #3C93B6
        }

        .table2 .pgr td {
            border-width: 0;
            padding: 0 6px;
            font-weight: bold;
            color: #000;
            line-height: 20px;
        }

        .table2 .pgr a {
            color: White;
            text-decoration: none;
        }

            .table2 .pgr a:hover {
                color: #000;
                text-decoration: none;
            }

/*for Grid end_________________________*/


/* Glaphicon start_________________________ */
@font-face {
    font-family: 'Glyphicons Halflings';
    src: url(../fonts/glyphicons-halflings-regular.eot);
    src: url(../fonts/glyphicons-halflings-regulard41d.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');
}
/*------------------Glyphicon for rollright grid start-----------------------*/
.glyphiconGridHeader {
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 200;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.6em;
    color: White;
}

    .glyphiconGridHeader .tooltiptext {
        visibility: hidden;
        color: Black;
        position: absolute;
        z-index: 1;
        font-size: 0.7em;
    }

    .glyphiconGridHeader:hover .tooltiptext {
        visibility: visible;
    }

.glyphicon-View:before {
    content: "\e105";
}

.glyphicon-Add:before {
    content: "\2b";
}

.glyphicon-Edit:before {
    content: "\270f"
}

.glyphicon-Del:before {
    content: "\2b";
}

.glyphicon-Approve:before {
    content: "\e067"
}

.glyphicon-Email:before {
    content: "\2709"
}

.glyphicon-Exp:before {
    content: "\e164";
}

.glyphicon-GridPrint:before {
    content: "\e009";
}

.glyphicon-E2:before {
    content: "\e063";
}

.glyphicon-DownloadR:before {
    content: "\e026";
}

.glyphicon-UploadR:before {
    content: "\e027";
}

/*------------------Glyphicon for rollright grid end-----------------------*/
.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-wrench:before {
    content: "\e137  Proccess";
}

.glyphicon-eye-open:before {
    content: "\e105  View";
}

.glyphicon-refresh:before {
    content: "\e031  Refresh";
}

.glyphicon-step-backward:before {
    content: "\e071  Back";
}

.glyphicon-transfer:before {
    content: "\e178";
}

.glyphicon-plus:before {
    content: "\2b  Add";
}

.glyphicon-directplus:before {
    content: "\2b  DirectAdd";
}

.glyphicon-export:before {
    content: "\e164  Export";
}

.glyphicon-minus:before {
    content: "\e020  Delete";
}

.glyphicon-minusDetail:before {
    content: "\e020  DetDelete";
}

.glyphicon-minusGrid:before {
    content: "\e020";
}

.glyphicon-cancelgrid:before
{
    content:"\e174";
}

.glyphicon-floppy-remove:before {
    content: "\e174  Cancel";
}

.glyphicon-floppy-disk:before {
    content: "\e172  Save";
}

.glyphicon-paperclip:before {
    content: "\e142  Attach";
}

.glyphicon-eye-openGrid:before {
    content: "\e105";
}

.glyphicon-paperclipGrid:before {
    content: "\e142";
}

.glyphicon-print:before {
    content: "\e045  Print"
}

.glyphicon-print3:before {
    content: "\e045  HalfPrint"
}
.glyphicon-print4:before {
    content: "\e045  LRPrint"
}
.glyphicon-print5:before {
    content: "\e045  JobcardPrint"
}
.glyphicon-print6:before {
    content: "\e045  BillPrint"
}

.glyphicon-printGrid:before {
    content: "\e045"
}

.glyphicon-sendGrid:before {
    content: "\e171";
	margin-right: 10px;
}

.glyphicon-Masters:before {
    content: "\e012";
    margin-right: 10px;
}  

.glyphicon-Transactions:before {
    content: "\e065";
    margin-right: 10px;
}

.glyphicon-Administration:before {
    content: "\e008";
    margin-right: 10px;
}

.glyphicon-logout:before {
    content: "\e163";
    margin-right: 10px;
}

.glyphicon-Reports:before {
    content: "\e185";
    margin-right: 10px;
}

.glyphicon-resize-full:before {
    content: "\e096";
}

.glyphicon-share-alt:before {
    content: "\e095";
}

.glyphicon-submenu:before {
    content: "\e080";
    margin-right: 5px;
    margin-left: 5px;
}

.glyphicon-hand-right:before {
    content: "\e127";
    margin-right: 5px;
    margin-left: 5px;
}

.glyphicon-file:before {
    content: "\e022";
    margin-right: 5px;
    margin-left: 5px;
}

.glyphicon-cog:before {
    content: "\e019";
    margin-right: 5px;
    margin-left: 5px;
}

.glyphicon-record:before {
    content: "\e165";
    margin-right: 5px;
    margin-left: 5px;
}

.glyphicon-import:before {
    content: "\e169";
    margin-right: 5px;
    margin-left: 5px;
}

.glyphicon-off:before {
    content: "\e017";
    margin-right: 5px;
    margin-left: 5px;
    font-size: 1em;
}

.glyphicon-restore:before {
    content: "\e115"
}

.glyphicon-remove:before {
    content: "\e014";
}

.arrowD:after {
    content: "\e252";
}

.arrowD {
    margin-right: 0px;
    float: right;
}

.glyphicon-resize-small:before {
    content: "\e097";
    line-height: 15px;
}

.glyphicon-Help:before {
    content: "\e085";
    line-height: 17px;
}

.gFont {
    font-size: 0.9em;
}

.glyphicon-share-alt1:before {
    content: "\2b";
    line-height: 15px;
}

.glyphicon-refresh:before {
    content: "\e031";
    line-height: 17px;
}




.glyphicon-mini:before {
    content: "\2212";
    line-height: 15px;
}

.glyphicon-share-back1:before {
    content: "\e069";
    line-height: 15px;
}

.glyphicon-copy:before {
    content: "\e205";
    line-height: 15px;
}

.glyphicon-earphone:before {
    content: "\e182";
    line-height: 15px;
}

.glyphicon-triangle-right:before {
    content: "\e059";
    line-height: 15px;
}

.glyphicon-paste:before {
    content: "\e206";
    line-height: 15px;
}

.glyphicon-remove:before {
    content: "\e014";
    line-height: 15px;
}

.glyphicon-arrow-left:before {
    content: "\e091"
}

.btnback1 {
    display: block;
    height: 40px;
    width: 150px;
    background: background-image :url(../images/back.jpg);
}



.glyphicon-download:before {
    content: "\e025"
}

.glyphicon-align-justify:before {
    content: "\e055"
}
/* Glaphicon end_________________________ */

/*Auto complete design start___________________________*/
.Auto-Group {
    position: relative;
    /* display: inline-block; */
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

.spancont {
    line-height: 20px;
    vertical-align: top;
    display: inline-block;
    background-color: #e4faff; /* Light orange background */
    padding: 6px 8px; /* Increased padding for better touch targets */
    color: #5D4037; /* Dark brown-orange text for better contrast */
    border: 1px solid #003B66; /* Medium orange border */
    border-radius: 6px; /* Slightly larger radius */
    text-align: right;
    min-width: 20%;
    width: 24%;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05); /* Subtle depth */
}


/* ========== ORANGE-THEMED AUTOCOMPLETE CONTROLS ========== */
.Autocontrol {
    width: 74%;
    border: 2px solid #003B66; /* Orange border */
    transition: all 0.3s ease;
    background-color: #FFFFFF; /* Light orange background */
    padding: 6px;
    border-radius: 6px;
    max-height: 200px;
    overflow: auto;
    font-size: inherit;
    box-shadow: 0 2px 4px rgba(230, 126, 34, 0.1);
}

.Autocontrol:hover {
    border-color: #D35400; /* Darker orange on hover */
    box-shadow: 0 2px 8px rgba(230, 126, 34, 0.2);
}

.Autocontrol > ul {
    width: 100%;
    padding-left: 0;
    margin: 0;
}

.Autocontrol li {
    border-top: 1px solid #FFCC80; /* Light orange divider */
    padding: 8px 12px !important;
    margin: 4px 0 !important;
    list-style-type: none;
    transition: background-color 0.2s ease;
    border-radius: 3px;
}

.Autocontrol li:hover {
    background-color: #e4faff !important; /* Highlight on hover */
    cursor: pointer;
}

.Autocontrol li[style*="background-color: lemonchiffon"] {
    background-color: #003B66 !important; /* Orange highlight */
    color: white !important;
    font-weight: bold !important;
    border-left: 3px solid #D35400;
}

ul.Autocontrol {
    min-width: fit-content !important;
}

/* ========== AUTOCOMPLETE GROUP ========== */
.Auto-Group2 {
    text-align: left;
    white-space: normal;
    border-collapse: collapse;
    position: relative;
}

/* ========== ALTERNATIVE AUTOCOMPLETE STYLE ========== */
.Autocontrol2 {
    z-index: 1000;
    overflow: hidden;
    border: 1px solid #003B66; /* Brighter orange */
    background-color: #e4faff;
    padding: 6px;
    border-radius: 6px;
    max-height: 200px;
    min-height: 50px;
    min-width: 120px;
    font-size: inherit;
    position: absolute;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.Autocontrol2 option {
    padding: 8px 12px;
    transition: all 0.2s ease;
}

.Autocontrol2 option:hover {
    background-color: #003B66 !important; /* Orange hover */
    color: white !important;
}

/* ========== FOCUS STATES ========== */
.Autocontrol:focus,
.Autocontrol2:focus {
    outline: none;
    border-color: #D35400;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.3);
}

/* ========== MOBILE RESPONSIVENESS ========== */
@media (max-width: 768px) {
    .Autocontrol {
        width: 100%;
        font-size: 16px;
    }
    
    .Autocontrol li {
        padding: 10px 12px !important;
    }
    
    .Autocontrol2 {
        min-width: 90vw;
        left: 5% !important;
    }
}


option:hover {
    background-color: #D3D3D3;
    color: #FDFEFF;
}

.lblAuto {
    width: 75%;
    float: left;
    padding: 3px;
    border: solid 1px #dcdcdc;
    transition: box-shadow 0.3s, border 0.3s;
    border-radius: 4px;
    text-align: left;
    font-weight: bold;
    font-family: "Arial", Arial, Sans-serif;
}

.txtAuto {
    width: 25%;
    float: left;
    padding: 3px;
    border: solid 1px #dcdcdc;
    transition: box-shadow 0.3s, border 0.3s;
    border-radius: 3px;
    text-align: left;
    font-weight: bold;
    font-family: "Arial", Arial, Sans-serif;
}


/*AutoControl complete design end__________*/
/*Auto complete design end___________________________*/
body {
    font-family: 'Open Sans', "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 13px;
    text-rendering: optimizelegibility;
    padding: 0px !important;
    margin: 0px !important;
    color: #707478;
    /* background: #bg4;
 background: #d9e0e7;*/
    margin: 0px;
}

.btnPointer {
    cursor: pointer;
}

.wrapper {
    width: 100%;
    height: 100%;
}

.header {
    margin-top: 0px;
    background-color: White;
    z-index: 9999;
    padding-left: 8px;
    position: fixed;
    width: 100%;
    height: auto;
    top: 0px;
}



.middle {
    float: right;
    width: 80%;
    height: 100%;
    position: relative;
    /* margin-bottom:40px;*/
}

.panel {
    position: relative;
    margin: auto;
    top: 55px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 96%;
    height: 100%;
    padding-bottom: 40px;
    /*  background-color: #bg5;
background-color: White;*/
    border-radius: 4px;
    background-color: #3E99E5'
}

.panelheader {
    width: 100%;
    height: 35px;
    /* background: #bg2;
 background: #1a2229;*/
    padding: 7px 10px 10px 10px;
    border-radius: 4px 4px 0px 0px;
    font-size: 1.33em;
    /* color: #cl1;
 color: White;*/
    vertical-align: middle;
}

.panel-heading-btn {
    float: right;
    vertical-align: middle;
}

.btn-icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    padding: 2px 0px;
    margin-left: 5px;
    margin-bottom: 5px;
    border: none;
    line-height: 18px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    vertical-align: middle;
}

.Lock {
    display: inline-block;
    width: 30px;
    height: 40px;
    padding: 2px 0px;
    margin-left: 5px;
    margin-bottom: 5px;
    border: none;
    line-height: 20px;
    text-align: center;
    -webkit-border-radius: 4px;
    -moz-border-radius: 50%;
    border-radius: 4px;
    vertical-align: middle;
}

.btn-search {
    width: 100%;
    height: 100%;
    padding: 3px;
    border: solid 1px #dcdcdc;
    border-radius: 4px;
}
/* ========== ORANGE-THEMED GRID BUTTONS ========== */
.grid-btn {
    width: 100%;
    height: 30px;
    padding: 0px;
    border: solid 1px #F39C12; /* Orange border */
    border-radius: 3px;
    color: #ffffff;
    background: #003B66; /* Primary orange */
    border-color: #003B66;
    transition: all 0.3s ease;
}

.grid-btn:hover {
    background: #D35400; /* Darker orange on hover */
    border-color: #D35400;
}

.grid-btn45 {
    width: 45%;
    height: 100%;
    padding: 3px;
    border: solid 1px #F39C12; /* Orange border */
    border-radius: 4px;
    color: #ffffff;
    background: #003B66; /* Primary orange */
    border-color: #003B66;
    transition: all 0.3s ease;
}

.grid-btn45:hover {
    background: #D35400; /* Darker orange on hover */
    border-color: #D35400;
}

/* Optional: Active state */
.grid-btn:active,
.grid-btn45:active {
    background: #A84300; /* Even darker pressed state */
    transform: translateY(1px);
}



.btn-search:hover {
    background: Black;
    border-color: Black;
}

.btn-default {
    color: #fff;
    background-color: #b6c2c9;
    border-color: #ccc;
}

    .btn-default:hover {
        background-color: #A9A9A9;
    }

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

    .btn-success:hover {
        background-color: #449d44;
    }

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

    .btn-warning:hover {
        background-color: #ec971f;
    }

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

    .btn-danger:hover {
        background-color: #c9302c;
    }

.panelbody {
    padding: 5px;
    height: 100%;
    width: 100%;
    text-align: center;
}

* {
    box-sizing: border-box;
}

.navbar-fixed-bottom0 {
    padding: 0px;
    height: 2px;
    position: fixed;
    right: 0;
    bottom: 33px;
    width: 100%;
    z-index: 1025;
    background-color: Black;
}

.navbar-fixed-bottom {
    padding: 3px;
    height: 48px;
    text-align: center;
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 1030;
    background-color: White;
}

.sidebar-profile {
    padding: 35px 10px;
}

.sidebar-menu {
}

.homeimage {
    margin-top: 50px;
}

li {
    list-style: none;
}

ul {
    padding: 0px;
}

.mainmenu {
    padding-left: 10px;
    margin-bottom: 0;
    font-size: 1.17em;
    text-transform: none;
}

.sub-menu {
    display: inline;
    position: relative;
    margin-left: 120px;
    overflow: hidden;
    max-height: 0;
    font-size: 1em;
    -webkit-transition: all 0.5s ease-out;
}


.mainmenu > li > a:focus, .mainmenu > li > a:hover {
    background: #003B66;
    color: White;
    -webkit-transition: color 100ms ease-in-out;
}

.sub-menu > li > a:focus, .sub-menu > li > a:hover {
    background: #003B66;
    color: White;
    -webkit-transition: color 100ms ease-in-out;
}

.mainmenu > li.active > a, .mainmenu > li.active > a:focus, .mainmenu > li.active > a:hover {
    color: #fff;
    background: #00acac;
}

.image {
    float: left;
    width: 50px;
    height: 50px;
    margin-top: 2px;
    margin-right: 5px;
    margin-left: 10px;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.info {
    font-size: 1em;
    margin-top: 10px;
    text-align: right;
}

.infolnkbtn {
    margin-top: 5px;
    margin-right:5px;
    float: right;
    height: 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    padding: 2px 5px 0px 5px;
}

.RowsCount {
    float: right;
    height: 25px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    padding: 3px 7px;
    font-size: 1.3em;
}

.info a {
    color: Black;
    text-decoration: none;
    vertical-align: middle;
}

    .info a:hover {
        text-decoration: underline;
    }

/* Added By sonam End***************************************/


/* DEFAULTS  ----------------------------------------------------------*/
.halfwidth {
    width: 50%;
    height: 100%;
    position: relative;
    float: left;
}

.halfwidth30 {
    width: 30%;
    height: 100%;
    position: relative;
    float: left;
}

.halfwidth70 {
    width: 70%;
    height: 100%;
    position: relative;
    float: left;
}

.headerHalfwidth {
    width: 33%;
    height: 100%;
    position: relative;
    float: left;
}

.row {
    /*background-color :Silver;*/
    position: relative;
    width: 100%;
}

.col {
    display: inline-block;
    position: relative;
    vertical-align: top;
    width: 48.9%;
    /* height: 32px;  background-color :Lime ; */
    margin: 5px;
}

.colwhole {
    display: inline-block;
    position: relative;
    width: 98%;
}

.VAllignTop {
    vertical-align: top;
}

.HAlignLeft {
    float: left;
}

.HAlignRight {
    float: right;
}

.searchbtncont {
    width: 30%;
    display: inline-block;
    line-height: 15px;
    vertical-align: top;
}

.lblcont {
    line-height: 15px;
    vertical-align: top;
    width: 33%;
height:34px;
    display: inline-block;
    /* background-color: #bg4;
 background-color: #d9e0e7;*/
    padding: 3px;
    margin-top: 3px;
    /*  color: #cl2;
color: #707478;*/
    border: solid 1px #4dbddc29;
    border-radius: 4px;
    text-align: left;
    font-weight: bold;
    font-family: "Arial", Arial, Sans-serif;
}

.lblcont1 {
    line-height: 15px;
    vertical-align: middle;
    width: 33%;
    display: inline-block;
    /* background-color: #bg4;
 background-color: #d9e0e7;*/
    padding: 3px;
    /*  color: #cl2;
color: #707478;*/
    margin-top: 3px;
    /*  color: #cl2;
color: #707478;*/
    border: solid 1px #4dbddc29;
    border-radius: 4px;
    text-align: left;
    font-weight: bold;
    font-family: "Arial", Arial, Sans-serif;
}

.nobg {
    background: white;
    border: none;
}

.inptcont {
    line-height: 20px;
    vertical-align: top;
    width: 64%;
    display: inline-block;
    margin-top: 3px;
}

.inptcont2 {
    line-height: 23px;
    vertical-align: top;
    width: 64%;
    display: inline-block;
    margin-top: 3px;
}

.inptcont3 {
    line-height: 26px;
    vertical-align: top;
    width: 64%;
    display: inline-block;
    margin-top: 3px;
}

.inptcont1 {
    line-height: 12px;
    vertical-align: middle;
    width: 64%;
    display: inline-block;
}


.spc {
    width: 100%;
    height: 15px;
    background-color: blue;
    display: inline-block;
    background-color: White;
}


/* ========== ORANGE-THEMED INPUT FIELDS ========== */
.txtbx {
    width: 100%;
    padding: 8px 12px; /* Increased padding */
    border: 1.5px solid #003B66; /* Orange border */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 6px; /* Smoother corners */
    text-align: left;
    font-size: inherit;
    font-family: "Arial", sans-serif;
    border-left: 4px solid #003B66; /* Thicker accent border */
    background-color: #FFFFFF; /* Light orange background */
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.txtbx:focus {
    border-color: #003B66;
    border-left-color: #D35400; /* Darker accent on focus */
    background-color: #FFF;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
    outline: none;
}

/* Modern Input Variant */
.txtbxNew {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #FFCC80; /* Lighter orange */
    transition: all 0.3s ease;
    border-radius: 6px;
    background-color: #FFF;
    font-family: "Arial", sans-serif;
}

.txtbxNew:focus {
    border-color: #003B66;
    box-shadow: 0 0 0 3px rgba(255, 167, 38, 0.3);
}

/* Validation States */
.required {
    border-left-color: #F44336; /* Red-orange */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="%23F44336"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.optional {
    border-left-color: #003B66; /* Medium orange */
}

.invalid {
    border-left-color: #D32F2F; /* Dark red-orange */
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

/* Textarea */
.txtbxMulti {
    width: 100%;
    min-height: 50px;
    padding: 12px;
    border: 1px solid #FFCC80;
    border-radius: 6px;
    font-family: "Arial", sans-serif;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    resize: vertical;
}

.txtbxMulti:focus {
    border-color: #003B66;
    background-color: #FFF;
}

/* ========== FLOATING LABEL VARIATION ========== */
.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group input {
    padding-top: 1.2rem;
}

.input-group label {
    position: absolute;
    top: 8px;
    left: 12px;
    color: #003B66;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    top: 2px;
    font-size: 0.7rem;
    color: #D35400;
}

/* ========== MOBILE RESPONSIVENESS ========== */
@media (max-width: 768px) {
    .txtbx, .txtbxNew, .txtbxMulti {
        font-size: 16px; /* Larger text for mobile */
        padding: 10px 14px;
    }
    
    .input-group label {
        font-size: 0.9rem;
    }
}


.height20 {
    height: 20px;
}

.height215 {
    height: 215px;
}

.listbox {
    width: 100%;
    padding: 6px;
    border: solid 1px #dcdcdc;
    transition: box-shadow 0.3s, border 0.3s;
    border-radius: 4px;
    text-align: left;
    font-size: inherit;
    height: 150px;
    font-weight: bold;
    font-family: "Arial", Arial, Sans-serif;
}

.txtbx2 {
    width: 75%;
    float: left;
    padding: 3px;
    border: solid 1px #dcdcdc;
    transition: box-shadow 0.3s, border 0.3s;
    border-radius: 4px;
    text-align: left;
    font-family: "Arial", Arial, Sans-serif;
    font-size: inherit;
}

.txtbx45 {
    width: 45%;
    padding: 3px;
    border: solid 1px #dcdcdc;
    transition: box-shadow 0.3s, border 0.3s;
    border-radius: 4px;
    text-align: left;
    font-weight: bold;
    font-family: "Arial", Arial, Sans-serif;
}

.txtbx75 {
    width: 75%;
    padding: 3px;
    border: solid 1px #dcdcdc;
    transition: box-shadow 0.3s, border 0.3s;
    border-radius: 4px;
    text-align: left;
    font-weight: bold;
    font-family: "Arial", Arial, Sans-serif;
}

.txtbx35 {
    width: 35%;
    padding: 3px;
    border: solid 1px #dcdcdc;
    transition: box-shadow 0.3s, border 0.3s;
    border-radius: 4px;
    text-align: left;
    font-weight: bold;
    font-family: "Arial", Arial, Sans-serif;
}

.txtbx:focus, .txtbx.focus, .Autocontrol:focus, .Autocontrol.focus, .listbox:focus, .listbox.focus {
    border: solid 1px #707070;
    box-shadow: 0 0 5px 1px #969696;
}

.txtbx:focus, .txtbx.focus, .Autocontrol:focus, .Autocontrol.focus, .listbox:focus, .listbox.focus, .form-control:focus, input:focus, select:focus, textarea:focus {
    background-color: Yellow;
    box-shadow: 0 0 5px 1px #969696;
    font-weight: bold;
    color: royalblue;
}


.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 9px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: #cococo;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    border-color: #ddd;
    display: none;
}

.gridpadding {
    padding: 16px;
}

@media screen and (max-width: 900px) {
    .col {
        display: inline-block;
        position: relative;
        width: 100%;
        /*height: 45px; background-color :Lime ; */
    }

    .col4 {
        display: inline-block;
        position: relative;
        width: 99%;
    }

    .lblcont {
        width: 30%;
        padding: 6px;
        display: inline-block;
    }

    .lblcont1 {
        width: 30%;
        padding: 6px;
        display: inline-block;
    }

    .inptcont {
        width: 60%;
        display: inline-block;
    }

    .inptcont2 {
        width: 48%;
        display: inline-block;
    }

    .inptcont1 {
        width: 60%;
        display: inline-block;
    }

    .sidebar {
        display: block;
        width: 20%;
    }

    .halfwidth {
        position: relative;
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 600px) {

    .col {
        display: inline-block;
        position: relative;
        vertical-align: top;
        width: 100%;
        /*   height: 90px; background-color :Lime ; */
        text-align: left;
    }

    .col4 {
        display: inline-block;
        position: relative;
        width: 99%;
    }

    .lblcont {
        width: 99%;
        padding: 10px;
        display: inline-block;
    }

    .lblcont1 {
        width: 48%;
        padding: 10px;
        display: inline-block;
    }

    .searchbtncont {
        width: 99%;
        display: inline-block;
    }

    .inptcont {
        width: 99%;
        display: inline-block;
    }

    .inptcont12 {
        width: 99%;
        display: inline-block;
    }

    .inptcont1 {
        width: 99%;
        display: inline-block;
    }

    .navbar-toggle {
        display: block;
    }

    .sidebar {
        display: none;
        width: 0px;
        top: 60px;
    }

    .middle {
        width: 100%;
        height: 100%;
    }

    .mainmenu {
        padding-left: 0px;
    }

    .headerHalfwidth {
        width: 100%;
    }

    .panel {
        top: 90px;
    }

    .navbar-fixed-top {
        top: 75px;
    }

    .halfwidth30 {
        width: 100%;
    }

    .halfwidth70 {
        width: 100%;
    }
}

@media screen and (max-width: 350px) {
    .nirav-btn {
        height: 100px;
    }
}



.reportviewer {
    margin-top: 10px;
    height:fit-content;
}

.padding8 {
    padding: 8px 2px;
}

.Hpadding6 {
    padding: 8px 6px;
}

.padding4 {
    padding: 8px 20px;
}

.
.width140 {
    width: 140px;
}


/* for ajax callout validator start _________________*/
.highlight {
    border: 1px solid #F08080;
}

.validator_callout {
    position: relative;
    margin: -200px;
}

    .validator_callout div {
        border: solid 1px #F08080;
        background-color: #fff;
        position: relative;
    }

    .validator_callout td {
        border: solid 1px #F08080;
        background-color: #fff;
    }

    /*.validator_callout div, .validator_callout td { border:solid 1px #F08080; background-color:#fff;}
.validator_callout .ajax__validatorcallout_error_message_cell {font-size:12px;padding-top:10px;padding-bottom:10px;color:#F08080;-moz-box-shadow: 4px 4px 4px gray;-webkit-box-shadow: 4px 4px 4px gray;box-shadow: 4px 4px 4px gray;}
.validator_callout .ajax__validatorcallout_close_button_cell {padding:2px;-moz-border-radius-topright:5px;-moz-border-radius-bottomright:5px;border-top-right-radius:5px;border-bottom-right-radius:5px;-moz-box-shadow: 4px 4px 4px gray;-webkit-box-shadow: 4px 4px 4px gray;box-shadow: 4px 4px 4px gray;}
.validator_callout .ajax__validatorcallout_icon_cell { padding-top:7px; -moz-border-radius-topleft:5px;-moz-border-radius-bottomleft:5px;border-top-left-radius:5px;border-bottom-left-radius:5px;-moz-box-shadow: 4px 4px 4px gray;-webkit-box-shadow: 4px 4px 4px gray;box-shadow: 4px 4px 4px gray;}
.validator_callout .ajax__validatorcallout_close_button_cell .ajax__validatorcallout_innerdiv {border:none !important; text-align:center;width:24px;padding:0px 0px 2px 2px;cursor:pointer;}
.validator_callout .ajax__validatorcallout_close_button_cell .ajax__validatorcallout_innerdiv img {background-color:#F08080; }
.validator_callout .ajax__validatorcallout_close_button_cell .ajax__validatorcallout_innerdiv img:hover { border:1px solid gold; }*/


    .validator_callout .ajax__validatorcallout_popup_table {
        display: none;
        border: none;
        background-color: transparent;
        padding: 0px;
    }

    .validator_callout .ajax__validatorcallout_popup_table_row {
        vertical-align: top;
        height: 100%;
        background-color: transparent;
        padding: 0px;
    }

    .validator_callout .ajax__validatorcallout_callout_cell {
        width: 20px;
        height: 100%;
        text-align: right;
        vertical-align: top;
        border: none;
        background-color: transparent;
        padding: 0px;
    }

    .validator_callout .ajax__validatorcallout_callout_table {
        height: 100%;
        border: none;
        background-color: transparent;
        padding: 0px;
    }

    .validator_callout .ajax__validatorcallout_callout_table_row {
        background-color: transparent;
        padding: 0px;
    }

    .validator_callout .ajax__validatorcallout_callout_arrow_cell {
        padding: 8px 0px 0px 0px;
        text-align: right;
        vertical-align: top;
        font-size: 1px;
        border: none;
        background-color: transparent;
    }

        .validator_callout .ajax__validatorcallout_callout_arrow_cell .ajax__validatorcallout_innerdiv {
            font-size: 1px;
            position: relative;
            left: 1px;
            border-bottom: none;
            border-right: none;
            border-left: none;
            width: 15px;
            background-color: transparent;
            padding: 0px;
        }

            .validator_callout .ajax__validatorcallout_callout_arrow_cell .ajax__validatorcallout_innerdiv div {
                height: 1px;
                overflow: hidden;
                border-top: none;
                border-bottom: none;
                border-right: none;
                padding: 0px;
                margin-left: auto;
            }

    .validator_callout .ajax__validatorcallout_error_message_cell {
        font-family: Verdana;
        font-size: 10px;
        padding: 5px;
        border-right: none;
        border-left: none;
        width: 100%;
    }

    .validator_callout .ajax__validatorcallout_icon_cell {
        width: 20px;
        padding: 5px;
        border-right: none;
    }

.CustomValidator .ajax__validatorcallout_close_button_cell {
    vertical-align: top;
    padding: 0px;
    text-align: right;
    border-left: none;
}

    .CustomValidator .ajax__validatorcallout_close_button_cell .ajax__validatorcallout_innerdiv {
        border: none;
        text-align: center;
        width: 10px;
        padding: 2px;
        cursor: pointer;
    }

/* for ajax callout validator end _________________*/


/*for login start_________________________*/
.Loginimage {
    float: center;
    width: 50px;
    height: 50px;
    margin-top: 2px;
    margin-right: 5px;
    margin-left: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.Loginbody {
    background-color: White;
}

.MainContainer {
    position: relative;
    width: 100%;
}

.MiddleCol {
    position: relative;
    margin: auto;
    top: 0%;
    float: left;
    right: 0;
    bottom: 0;
    left: 68%;
    margin-top: 22%;
    width: 30em;
    opacity: 0.7;
    background-color: white;
    border-radius: 10px;
    padding-top: 0%;
}


.form {
    margin-top: 30px;
    width: 80%;
    /*padding: 10px 10px 10px 20px;*/
    margin-left: auto;
    margin-right: auto;
}

.BGImage {
    position: fixed;
    width: inherit;
    height: 100%;
    top: 0;
    -webkit-transform: translateZ(0);
    overflow: hidden;
    /*  -webkit-filter: blur(6px);
  -moz-filter: blur(6px);
  -o-filter: blur(6px);
  -ms-filter: blur(6px);
  filter: blur(6px);*/
}

    .BGImage > img {
        width: 100%;
        height: 100%;
    }

.footer {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: inherit;
    height: 95px;
    background-color: rgba(0,0,0,0.5);
    text-align: left;
    color: rgba(255,255,255,.9);
    font-weight: 300;
    font-size: 28px;
}

    .footer img {
        vertical-align: middle;
    }

@media screen and (max-height: 430px) {
    .footer {
        display: none;
    }
}

.nowrap {
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
}

.Font28 {
    font-size: 2.33em;
    color: Black;
    font-weight: bold;
    font-family: "Arial", Arial, Sans-serif;
}

.msg {
    color: Red;
}

.LoginTextbox {
    width: 97%;
    background-color: #ffffff; /* fixed typo */
    display: inline-block;
    margin-bottom: 15px !important;
    height: auto; /* more natural height */
    padding: 15px 20px;
    font-size: 1em;
    line-height: 1.5;
    border: 1px solid #ccd0d4;
    border-radius: 12px; /* more curved */
    font-weight: bold;
    font-family: "Arial", Arial, sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* subtle depth */
    transition: border-color 0.3s, box-shadow 0.3s;
}


.LoginLable {
    width: 97%;
    background-color: #fff;
    display: inline-block;
    margin-bottom: 5px !important;
    height: 100%;
    padding: 3px;
    font-size: 1em;
    line-height: 1.3333333;
    font-weight: inherit;
    color: Black;
    font-weight: bold;
    font-family: "Arial", Arial, Sans-serif;
}

.LoginDropdown {
    width: 97%;
    padding: 10px;
    border: 1px solid #ccd0d4;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    transition: box-shadow 0.3s, border 0.3s;
    border-radius: 4px;
    text-align: left;
    font-size: 1em;
    margin-bottom: 15px !important;
    font-weight: bold;
    font-family: "Arial", Arial, Sans-serif;
}

.LoginAutoComplete {
    width: 73%;
    margin-left: 5px;
    padding: 3px;
    border: 1px solid #ccd0d4;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    transition: box-shadow 0.3s, border 0.3s;
    border-radius: 4px;
    text-align: left;
    font-size: 1em;
    margin-bottom: 8px !important;
    float: left;
    font-weight: bold;
    font-family: "Arial", Arial, Sans-serif;
}

.LoginSpan {
    line-height: 15px;
    vertical-align: top;
    display: inline-block;
    background-color: #d9e0e7;
    color: #707478;
    border: solid 1px #dcdcdc;
    border-radius: 4px;
    text-align: right;
    min-width: 25%;
}

.Loginlistbox {
    width: 100%;
    padding: 3px;
    border: solid 1px #dcdcdc;
    transition: box-shadow 0.3s, border 0.3s;
    border-radius: 4px;
    text-align: left;
    font-size: inherit;
    height: 100px;
    font-weight: bold;
    font-family: "Arial", Arial, Sans-serif;
}

.btnLogin {
    width: 97%;
    height: 100%;
    padding: 10px;
    color: #ffffff;
    font-weight: bold;
    font-weight: bold;
    font-family: "Arial", Arial, Sans-serif;
}

    .btnLogin:hover {
        border: solid 1px #dcdcdc;
        border-radius: 3px;
    }

hr {
    margin-top: 10px;
    margin-bottom: 1px;
    margin-left: 20px;
    border-top: 1px solid #eee;
}

.Copyright {
    width: 60%;
    white-space: nowrap;
    font-size: 0.8em;
    color: Black !important;
    font-weight: normal;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

    .Copyright a {
        color: Black;
    }

.ForgetPassword {
    font-size: 1em;
    margin-top: 5px;
    text-align: right;
}

    .ForgetPassword a {
        text-decoration: none;
        color: Black;
    }

        .ForgetPassword a:hover {
            text-decoration: underline;
            color: Black;
        }

.LoginLblContl {
    width: 98%;
    float: left;
    padding-left: 5px;
    font-size: 1.2em;
    padding-top: 6px;
    white-space: nowrap;
    margin-bottom: 15px !important;
}

.required:after {
    color: red;
    content: " *";
}

.LoginInputContl {
    width: 99%;
    float: right;
    padding-right: 3px;
    margin-bottom: 15px !important;
}

.Auto {
    width: 100%;
}

.HeaderAutoComplete {
    width: 70%;
    margin-left: 5px;
    padding: 5px;
    border: 1px solid #ccd0d4;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    transition: box-shadow 0.3s, border 0.3s;
    border-radius: 4px;
    text-align: left;
    font-size: 1em;
    margin-top: 3px;
    font-weight: bold;
    font-family: "Arial", Arial, Sans-serif;
}

.HeaderSpan {
    vertical-align: top;
    display: inline-block;
    background-color: #b9ebf929;
    padding: 3px;
    color: #707478;
    border: solid 0px #b9ebf929;
    border-radius: 4px;
    text-align: right;
    min-width: 0%;
    float: right;
}

.paddingright10 {
    padding-right: 10px;
}

/*for login end_________________________*/
.Fontsize1 {
    font-size: 1em;
    padding-top: 0.5em;
    padding-right: 0.5em;
    color: Black;
    opacity: 0.7;
}

.Fontsize2 {
    font-size: 2em;
    padding-top: 0.5em;
    padding-right: 0.5em;
    color: Black;
    opacity: 0.7;
}

.Fontsize3 {
    font-size: 3em;
    padding-top: 0.5em;
    padding-right: 0.5em;
    color: Black;
    opacity: 0.7;
}

#tooltip {
    position: absolute;
    z-index: 3000;
    padding: 5px;
    opacity: 1;
    width: 350px;
    height: 110px;
    background: #ECECEC;
    border-radius: 4px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .4), 0 0 10px rgba(0, 0, 0, .55), 0 2px 10px rgba(0, 0, 0, .6);
    color: Black;
}

    #tooltip h3, #tooltip div {
        margin: 0;
    }

.padding {
    padding-left: 10px;
    padding-right: 10px;
}

.HelpImage {
    width: 100%;
    height: 100%;
}

.TestBorder {
    border: 1px solid Black;
}
/*-----------------------Responsive For 12 Columns  Start--------*/

.col12 {
    display: inline-block;
    position: relative;
    width: 99.7%;
}

.col11 {
    display: inline-block;
    position: relative;
    width: 91.37%;
}

.col10 {
    display: inline-block;
    position: relative;
    width: 83.03%;
}

.col9 {
    display: inline-block;
    position: relative;
    width: 74.7%;
}

.col8 {
    display: inline-block;
    position: relative;
    width: 66.37%;
}

.col7 {
    display: inline-block;
    position: relative;
    width: 58.03%;
}

.col6 {
    display: inline-block;
    position: relative;
    width: 49.7%;
}

.col5 {
    display: inline-block;
    position: relative;
    width: 41.37%;
}

.col3 {
    display: inline-block;
    position: relative;
    width: 24.7%;
}

.col2 {
    display: inline-block;
    position: relative;
    width: 16.37%;
}

.col1 {
    display: inline-block;
    position: relative;
    width: 8%;
}


@media (min-width: 650px) {

    .col12 {
        display: inline-block;
        position: relative;
        width: 99.27%;
    }

    .col13 {
        display: inline-block;
        position: relative;
        width: 99.98%;
    }

    .col11 {
        display: inline-block;
        position: relative;
        width: 90.94%;
    }

    .col10 {
        display: inline-block;
        position: relative;
        width: 82.6%;
    }

    .col9 {
        display: inline-block;
        position: relative;
        width: 74.27%;
    }

    .col8 {
        display: inline-block;
        position: relative;
        width: 65.94%;
    }

    .col7 {
        display: inline-block;
        position: relative;
        width: 57.6%;
    }

    .col6 {
        display: inline-block;
        position: relative;
        width: 49.27%;
    }

    .col5 {
        display: inline-block;
        position: relative;
        width: 40.94%;
    }

    .col4 {
        display: inline-block;
        position: relative;
        width: 32.6%;
    }

    .col45 {
        display: inline-block;
        position: relative;
        width: 16.3%;
    }


    .col3 {
        display: inline-block;
        position: relative;
        width: 24.27%;
    }


    .col5New {
        display: inline-block;
        position: relative;
        width: 36.405%;
    }

    .col4New {
        display: inline-block;
        position: relative;
        width: 12.135%;
    }

    

    .col3New {
        display: inline-block;
        position: relative;
        width: 24.27%;
    }

    .col2New {
        display: inline-block;
        position: relative;
        width: 16%;
    }
    .col1New {
        display: inline-block;
        position: relative;
        width: 49%;
    }

    .col2 {
        display: inline-block;
        position: relative;
        width: 15.94%;
    }


    .col1 {
        display: inline-block;
        position: relative;
        width: 7.6%;
    }
}
/*-----------------------Responsive For 12 Columns  End--------*/
.MLable {
    font-size: 1em;
    line-height: 35px;
    vertical-align: middle;
    text-align: right;
}

.PanelTop {
    top: 90px;
}

.SidebarTop {
    top: 60px;
}

.width1 {
    width: 1% !important;
}

.width2 {
    width: 2% !important;
}

.width3 {
    width: 3% !important;
}

.width4 {
    width: 4% !important;
}

.width5 {
    width: 5% !important;
}

.width6 {
    width: 6% !important;
}

.width7 {
    width: 7% !important;
}

.width8 {
    width: 8% !important;
}

.width9 {
    width: 9% !important;
}

.width10 {
    width: 10% !important;
}

.width11 {
    width: 11% !important;
}

.width12 {
    width: 12% !important;
}

.width13 {
    width: 13% !important;
}

.width14 {
    width: 14% !important;
}

.width15 {
    width: 15% !important;
}

.width16 {
    width: 16% !important;
}

.width17 {
    width: 17% !important;
}

.width18 {
    width: 18% !important;
}

.width19 {
    width: 19% !important;
}

.width20 {
    width: 20% !important;
}

.width21 {
    width: 21% !important;
}

.width22 {
    width: 22% !important;
}

.width23 {
    width: 23% !important;
}

.width24 {
    width: 24% !important;
}

.width25 {
    width: 25% !important;
}

.width26 {
    width: 26% !important;
}

.width27 {
    width: 27% !important;
}

.width28 {
    width: 28% !important;
}

.width29 {
    width: 29% !important;
}

.width30 {
    width: 30% !important;
}

.width31 {
    width: 31% !important;
}

.width32 {
    width: 32% !important;
}

.width33 {
    width: 33% !important;
}

.width34 {
    width: 34% !important;
}

.width35 {
    width: 35% !important;
}

.width36 {
    width: 36% !important;
}

.width37 {
    width: 37% !important;
}

.width38 {
    width: 38% !important;
}

    .width38.5 {
        width: 38.5% !important;
    }

.width39 {
    width: 39% !important;
}

.width40 {
    width: 40% !important;
}

.width41 {
    width: 41% !important;
}

.width42 {
    width: 42% !important;
}

.width43 {
    width: 43% !important;
}

.width44 {
    width: 44% !important;
}

.width45 {
    width: 45% !important;
}

.width46 {
    width: 46% !important;
}

.width47 {
    width: 47% !important;
}

.width48 {
    width: 48% !important;
}

.width49 {
    width: 49% !important;
}

.width50 {
    width: 50% !important;
}

.width51 {
    width: 51% !important;
}

.width52 {
    width: 52% !important;
}

.width53 {
    width: 53% !important;
}

.width54 {
    width: 54% !important;
}

.width55 {
    width: 55% !important;
}

.width56 {
    width: 56% !important;
}

.width57 {
    width: 57% !important;
}

.width58 {
    width: 58% !important;
}

.width59 {
    width: 59% !important;
}

.width60 {
    width: 60% !important;
}

.width61 {
    width: 61% !important;
}

.width62 {
    width: 62% !important;
}

.width63 {
    width: 63% !important;
}

.width64 {
    width: 64% !important;
}

.width65 {
    width: 65% !important;
}

.width66 {
    width: 66% !important;
}

.width67 {
    width: 67% !important;
}

.width68 {
    width: 68% !important;
}

.width69 {
    width: 69% !important;
}

.width70 {
    width: 70% !important;
}

.width71 {
    width: 71% !important;
}

.width72 {
    width: 72% !important;
}

.width73 {
    width: 73% !important;
}

.width74 {
    width: 74% !important;
}

.width75 {
    width: 75% !important;
}

.width76 {
    width: 76% !important;
}

.width77 {
    width: 77% !important;
}

.width78 {
    width: 78% !important;
}

.width79 {
    width: 79% !important;
}

.width80 {
    width: 80% !important;
}

.width81 {
    width: 81% !important;
}

.width82 {
    width: 82% !important;
}

.width83 {
    width: 83% !important;
}

.width84 {
    width: 84% !important;
}

.width85 {
    width: 85% !important;
}

.width86 {
    width: 86% !important;
}

.width87 {
    width: 87% !important;
}

.width88 {
    width: 88% !important;
}

.width89 {
    width: 89% !important;
}

.width90 {
    width: 90% !important;
}

.width91 {
    width: 91% !important;
}

.width92 {
    width: 92% !important;
}

.width93 {
    width: 93% !important;
}

.width94 {
    width: 94% !important;
}

.width95 {
    width: 95% !important;
}

.width96 {
    width: 96% !important;
}

.width97 {
    width: 97% !important;
}

.width98 {
    width: 98% !important;
}

.width99 {
    width: 99% !important;
}

.width100 {
    width: 100% !important;
}

.message {
    position: fixed;
    bottom: 95px;
    left: 0px;
    width: inherit;
    line-height: 35px;
    height: 35px;
    background-color: rgb(255,0,0);
    vertical-align: middle;
    text-align: left;
    color: rgba(255,255,255,.9);
    font-weight: 300;
    font-size: 28px;
}

.navbar-fixed-top {
    padding: 0px;
    height: 1px;
    position: fixed;
    right: 0;
    top: 40px;
    width: 100%;
    z-index: 1025;
    background-color: Black;
}

.NavBarTop {
    top: 75px;
}

.Scroll {
    max-height: 400px;
    overflow: auto;
}



/* ========== ORANGE-THEMED BUTTONS ========== */
.btn-Blue {
    color: white;
    background-color: #003B66; /* Primary orange */
    border-color: #D35400; /* Dark orange border */
    transition: all 0.3s ease;
}

.btn-Blue:hover {
    background-color: #D35400; /* Darker orange on hover */
    border-color: #A84300; /* Even darker border */
}

/* ========== ORANGE-THEMED ACCORDION ========== */
.accordionHeader {
    border: 1px solid #D35400; /* Dark orange border */
    border-radius: 4px;
    color: white;
    background-color: #003B66; /* Primary orange */
    font-family: Arial, Sans-Serif;
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
    margin-top: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordionHeader:hover {
    background-color: #D35400; /* Darker orange on hover */
}

.accordionHeaderSelected {
    border: 1px solid #A84300; /* Darkest orange border */
    border-radius: 4px;
    color: white;
    background-color: #D35400; /* Dark orange */
    font-family: Arial, Sans-Serif;
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
    margin-top: 5px;
    cursor: pointer;
}

.accordionContent {
    border: 1px solid #e4faff; /* Light orange border */
    border-top: none;
    border-radius: 4px;
    padding-bottom: 5px;
    padding-top: 10px;
    padding-left: 2px;
    padding-right: 2px;
    background-color: #e4faff; /* Very light orange background */
}


.messageIn {
    position: fixed;
    bottom: 35px;
    left: 0px;
    width: inherit;
    line-height: 30px;
    height: 30px;
    background-color: rgb(255,0,0);
    vertical-align: middle;
    text-align: left;
    color: rgba(255,255,255,.9);
    font-weight: 300;
    font-size: 1.5em;
}


.gauge {
    width: 100%;
    height: 100%;
    border: 1px solid grey;
}


.box2 {
    display: inline-block;
    margin: 1em;
}

.elem1 {
    border: solid #6AC5AC 3px;
    position: relative;
}

.flex1 {
    -webkit-flex: 1;
    flex: 1;
}

.container {
    display: -webkit-flex;
    display: flex;
}

.glyphicon-print1:before {
    content: "\e045  Print Ann."
}

.glyphicon-print2:before {
    content: "\e045  Print Ann1."
}

.blink_text {
    animation: .5s blinker linear 7;
    -webkit-animation: .5s blinker linear 7;
    -moz-animation: .5s blinker linear 7;
    color: Yellow;
}

@-moz-keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

@keyframes blinker {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

.modal {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 999;
    height: 100%;
    width: 100%;
    background-color: silver;
    filter: alpha(opacity=70);
    opacity: 0.7;
    -moz-opacity: 0.7;
}

.center1 {
    z-index: 1000;
    height: auto;
    margin: 0 auto;
    padding: 10px;
  
 
    border-radius: 10px;
    filter: alpha(opacity=50);
    opacity: 1;
    -moz-opacity: 1;
}

.center img {
    height: 100px;
    width: 100px;
}


.modalbkg {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 50%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,1); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal2 {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

.popupControl {
    background-color: #AAD4FF;
    position: absolute;
    visibility: hidden;
    border-style: solid;
    border-color: Black;
    border-width: 2px;
}

.modalBackground {
    background-color: Gray;
    filter: alpha(opacity=70);
    opacity: 0.7;
}

.modalPopup {
    background-color: #EEEEEE;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    font-family: Verdana;
    font-size: medium;
    padding: 3px;
    width: 250px;
}

.simple-form {
    display: flex;
    border-radius: 1px;
}

    .simple-form input[type=text] {
        border: 1px solid #3d3d3d;
        border-left: 3px solid #3d3d3d;
        border-radius: 1px;
        transition: border-color 1s ease-out;
    }

    .simple-form input:optional {
        border-left-color: #3d3d3d;
    }

    .simple-form input:required {
        border-left-color: blue;
    }

    .simple-form input:invalid {
        border-left-color: red;
    }

.sidebar {
    overflow-y: scroll;
    float: left;
    width: 20%;
    height: 100%;
    padding-top: 15px;
    z-index: 10;
    position: fixed;
    display: block;
}

.tooltiptext {
    border: 1px solid red;
    display: table-cell;
    height: 20px;
    width: 90px;
    margin-left: -25px;
    margin-top: 10px;
    background-color: #AAD4FF;
    vertical-align: middle;
    float: none;
    text-align: center;
    color: black;
    font-weight: bold;
    font-family: "Arial", Century Gothic, Monospace;
    font-size: 1.5em;
}

.alert {
    z-index: 9999;
    position: fixed;
    top: 10px;
    left: 10%;
    color: #ffffff;
    font-size: x-large;
    padding: 20px;
    text-align: center;
    text-shadow: 4px 4px 2px rgba(150, 150, 150, 1);
    background: rgba(147,206,222,1);
    background: -moz-radial-gradient(center, ellipse cover, rgba(147,206,222,1) 0%, rgba(117,189,209,1) 44%, rgba(73,165,191,1) 100%);
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(147,206,222,1)), color-stop(44%, rgba(117,189,209,1)), color-stop(100%, rgba(73,165,191,1)));
    background: -webkit-radial-gradient(center, ellipse cover, rgba(147,206,222,1) 0%, rgba(117,189,209,1) 44%, rgba(73,165,191,1) 100%);
    background: -o-radial-gradient(center, ellipse cover, rgba(147,206,222,1) 0%, rgba(117,189,209,1) 44%, rgba(73,165,191,1) 100%);
    background: -ms-radial-gradient(center, ellipse cover, rgba(147,206,222,1) 0%, rgba(117,189,209,1) 44%, rgba(73,165,191,1) 100%);
    background: radial-gradient(ellipse at center, rgba(147,206,222,1) 0%, rgba(117,189,209,1) 44%, rgba(73,165,191,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#93cede', endColorstr='#49a5bf', GradientType=1 );
}

//////////////

.alert {
    z-index: 9999;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    color: #FFF;
    font-size: 1.2rem;
    padding: 20px 25px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #FF8C00, #003B66);
    border-left: 5px solid #D35400;
    animation: slideIn 0.4s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes slideIn {
    from { top: -100px; opacity: 0; }
    to { top: 20px; opacity: 1; }
}

/* Alert Variations */
.alert1 {
    z-index: 9999;
    position: fixed;
    top: 10px;
    left: 10%;
    color: #ffffff;
    font-size: x-large;
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #003B66, #FB8C00);
    background: linear-gradient(to bottom, #F39C12, #003B66);
    border-left: 5px solid #EF6C00;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.alert2 {
    background: linear-gradient(135deg, #FF7043, #F4511E);
    border-left: 5px solid #D84315;
    text-align: right;
    justify-content: flex-end;
}

.alert3 {
    background: linear-gradient(135deg, #003B66, #FF9800);
    border-left: 5px solid #F57C00;
}
 
/* The container */
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.ChkBoxClass input {
    width: 20px;
    height: 20px;
}


.myBoxstyle {
    padding: 8px 10px 10px;
    box-shadow: rgb(143 143 143) 5px 5px 10px 1px;
    border-radius: 18px;
    border-width: 6px;
    width: 120px;
    height: 125px;
    background-color: rgb(255, 255, 255);
    border-color: rgba(205, 76, 76, 0);
    margin: 10px;
    float: right;
}

    .myBoxstyle .image1 {
        display: block;
        height: 60px;
        width: 60px;
        float: right;
    }

    .myBoxstyle .lblcount {
        Color: Blue;
        font-size: medium;
        float: left;
        padding: 1px 2px 1px 2px;
    }

    .myBoxstyle .lbltitle {
        display: block;
        font-weight: bolder;
        Color: Black;
        font-size: 10px;
        padding: 2px 2px 1px 2px;
        float: right;
    }

.MapGrid {
    overflow-y: scroll;
    width: 600px;
    height: 450px
}

.col2B {
    display: inline-block;
    position: relative;
    /*   height: 90px; background-color :Lime ; */
}

#Charts, #Count:hover {
    cursor: pointer;
}



.swal-title {
    font-size: 20px;
    vertical-align: middle;
}

.btn1 {
    border-radius: 0px 4px 4px 0px;
}

.btn {
    text-align: center;
    width: fit-content;
    display: inline-block;
    line-height: 1.2em;
    vertical-align: middle;
    font-size: 1.1em;
    margin: 4px 2px;
    border: 1px solid #003B66; /* Dark orange border */
    border-radius: 6px; /* Smoother corners */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-image: linear-gradient(to bottom, #003B66, #00559F); /* Lighter gradient */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    color: white;
}

.btn:active {
    background-image: linear-gradient(to bottom, #EF6C00, #00559F); /* Darker gradient */
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 167, 38, 0.4);
}

/* Ripple effect */
.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Button Sizes */
.btn-sm {
    padding: 6px 12px;
    font-size: 0.9em;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1.3em;
}

/* Button Variants */
.btn-outline {
    background: transparent;
    color: #003B66;
    border: 2px solid #003B66;
    text-shadow: none;
}

.btn-outline:hover {
    background: rgba(230, 81, 0, 0.1);
}

.btn-round {
    border-radius: 50px;
}

/* Disabled State */
.btn:disabled {
    background: #FFCC80;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .btn {
        padding: 12px 24px;
        font-size: 1.2em;
        display: block;
        width: 100%;
        margin: 8px 0;
    }
}


.btn-red {
    text-align: center;
    width: 10%;
    display: inline-block;
    line-height: 1em;
    vertical-align: middle;
    font-size: 1.3em;
    margin-bottom: 0px;
    background: #c7c7c7;
    background-color: #ff0000;
    /* background-image: -webkit-linear-gradient(top, #c7c7c7, #474b4d);
    background-image: -moz-linear-gradient(top, #c7c7c7, #474b4d);
    background-image: -ms-linear-gradient(top, #c7c7c7, #474b4d);
    background-image: -o-linear-gradient(top, #c7c7c7, #474b4d);
    background-image: linear-gradient(to bottom, #c7c7c7, #474b4d);*/
    -webkit-border-radius: 5;
    -moz-border-radius: 5;
    border-radius: 5px;
    color: #ffffff;
    padding: 7px;
    text-decoration: none;
}

.btn-green {
    text-align: center;
    width: 10%;
    display: inline-block;
    line-height: 1em;
    vertical-align: middle;
    font-size: 1.3em;
    margin-bottom: 0px;
    background: #c7c7c7;
    background-color: #00ff2f;
    /* background-image: -webkit-linear-gradient(top, #c7c7c7, #474b4d);
    background-image: -moz-linear-gradient(top, #c7c7c7, #474b4d);
    background-image: -ms-linear-gradient(top, #c7c7c7, #474b4d);
    background-image: -o-linear-gradient(top, #c7c7c7, #474b4d);
    background-image: linear-gradient(to bottom, #c7c7c7, #474b4d);*/
    -webkit-border-radius: 5;
    -moz-border-radius: 5;
    border-radius: 5px;
    color: #ffffff;
    padding: 7px;
    text-decoration: none;
}

.btn-tab {
    text-align: center;
    width: 10%;
    display: inline-block;
    line-height: 1em;
    vertical-align: middle;
    font-size: 1.3em;
    color: white;
    margin-bottom: 0px;
    background: #c7c7c7;
    background-color: #3C93B6;
    border-radius: 5px 5px 0px 0px;
    border-bottom: 2px solid #3C93B6;
    /* background-image: -webkit-linear-gradient(top, #c7c7c7, #474b4d);
    background-image: -moz-linear-gradient(top, #c7c7c7, #474b4d);
    background-image: -ms-linear-gradient(top, #c7c7c7, #474b4d);
    background-image: -o-linear-gradient(top, #c7c7c7, #474b4d);
    background-image: linear-gradient(to bottom, #c7c7c7, #474b4d);*/
    -webkit-border-radius: 5px 5px 0px 0px;
    -moz-border-radius: 5px 5px 0px 0px;
    padding: 7px;
    text-decoration: none;
}

.btn-selecttab {
    text-align: center;
    width: 100%;
    display: inline-block;
    line-height: 1em;
    vertical-align: middle;
    font-size: 1.3em;
    color: Black;
    margin-bottom: 0px;
    background: #c7c7c7;
    background-color: White;
    border: 3px solid #3C93B6;
    border-bottom: 0px;
    border-left: 0px;
    border-right: 0px;
    border-radius: 7px 7px 0px 0px;
    /* background-image: -webkit-linear-gradient(top, #c7c7c7, #474b4d);
    background-image: -moz-linear-gradient(top, #c7c7c7, #474b4d);
    background-image: -ms-linear-gradient(top, #c7c7c7, #474b4d);
    background-image: -o-linear-gradient(top, #c7c7c7, #474b4d);
    background-image: linear-gradient(to bottom, #c7c7c7, #474b4d);*/
    -webkit-border-radius: 7px 7px 0 0;
    -moz-border-radius: 7px 7px 0 0;
    padding: 7px;
    text-decoration: none;
    position: relative;
}

    .btn-selecttab:after, .btn-selecttab:before {
        content: '';
        width: 40.5px;
        height: 27px;
        border: 3px solid #3C93B6;
        position: absolute;
        bottom: 1px;
        border-top: 0px;
    }

    .btn-selecttab:before {
        border-right: 5px;
        border-radius: 0 0 0 7px;
        -webkit-border-radius: 0 0 0 7px;
        -moz-border-radius: 0 0 0 7px;
        right: -41px;
        border-bottom: white;
    }

    .btn-selecttab:after {
        border-left: 5px;
        border-radius: 0 0 7px 0;
        -webkit-border-radius: 0 0 7px 0;
        -moz-border-radius: 0 0 7px 0;
        left: -41px;
        border-bottom: white;
    }

.btn-tab:hover {
    background-color: #3C93B6;
    color: White;
}

.btn-tab:focus {
    background-color: #3C93B6;
    color: White;
}

/* The container */
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.ChkBoxClass input {
    width: 20px;
    height: 20px;
}

.btnsignout {
    float: right;
    right: 0px;
    position: absolute;
    margin-top: 25px;
    background-color: #ef2b2b !important;
    border: 1px solid #3f474e;
    padding: 2px;
    border-radius: 3px;
}

.LeftCol {
    position: relative;
    margin: auto;
    top: 0px;
    right: 0;
    bottom: 0;
    left: 0;
    margin-top: 15%;
    margin-left: 15%;
    width: 30em;
    background-color: White;
    border-radius: 3px;
    padding-top: 0px;
}

.DNone {
    display: none;
}

.hide {
    visibility: hidden;
    height: 0px;
}




.lblcont2 {
    line-height: 15px;
    width: 38.4%;
    display: inline-block;
    /* background-color: #bg4;
 background-color: #d9e0e7;*/
    padding: 3px;
    /*  color: #cl2;
color: #707478;*/

    text-align: left;
    font-weight: bold;
    font-family: "Arial", Arial, Sans-serif;
}


*, ::after, ::before {
    box-sizing: border-box;
}

.ui-progressbar {
    
}

.progress-label {
   
}

.badge {
   
}

.badge {
  
}

td:has(.badge-primary) {
    color: #fff !important;
    background-color: #007bff !important;
}

td:has(.badge-secondary ) {
    color: #fff !important;
    background-color: #6c757d !important;
}

td:has(.badge-success ) {
    color: #fff !important;
    background-color: #28a745 !important;
}

td:has(.badge-danger ) {
    color: #fff !important;
    background-color: #dc3545 !important;
}

td:has(.badge-warning ) {
    color: black !important;
    background-color: #ffc107 !important;
}

td:has(.badge-info ) {
    color: #fff !important;
    background-color: #17a2b8 !important;
}

td:has(.badge-light ) {
    color: #1f2d3d !important;
    background-color: #f8f9fa !important;
}

td:has(.badge-dark ) {
    color: #fff !important;
    background-color: #343a40 !important;
}

td:has(.badge-pink ) {
    color: #fff !important;
    background-color: deeppink !important;
}

td:has(.badge-greyred ) {
    background-color: #bf8686 !important;
    color: #fff !important;
}

td:has(.badge-lightblue ) {
    background-color: #9df5f0 !important;
    color: black !important;
}

td:has(.badge-voilet ) {
    background-color: #654a80 !important;
    color: white !important;
}

td:has(.badge-maroon ) {
    background-color: #A24857 !important;
    color: white !important;
}

.ui-progressbar {
    
}

.progress-label {
   
}

.badge {
   
}

.badge {
  
}


.far
{
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 400;
}

.fa-bell::before {
    content: "\f0f3";
}
*, ::after, ::before {
    box-sizing: border-box;
}





.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.navbar-badge {
   
    padding: 2px 4px;
    position: absolute;    
    top: 9px;
}


.badge-primary {
  color: #fff;
  background-color: #007bff;
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

.badge-warning {
  color: #1f2d3d;
  background-color: #ffc107;
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

.badge-light {
  color: #1f2d3d;
  background-color: #f8f9fa;
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

.badge-pink {
  color: #fff;
  background-color: #ff99bb;
}




.GreayBox > th {
    text-align: left;
}

.progresswindowSite {
    position: fixed; /* Stay in place */
    z-index: 99999999; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.progressSite {
    background-color: #f1f7fd;
    border-radius: 10px;
    display: flexbox;
    z-index: 9999999;
    position: absolute;
    text-align:center;
    vertical-align:middle;    
    width: 100%;
   
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 13px 3px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 13px 3px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 13px 3px rgba(0,0,0,0.75);
}

.notification-closeSite {
    position: relative;
    background-color: #FF160C;
    color: white;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid black !important;
    margin-bottom: 2%;
}

.notification-saveSite {
    position: relative;
    background-color: blue;
    color: white;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid black !important;
    margin-bottom: 2%;
}

.progressheaderSite {
    height: 10%;
    background: blue;
    display: block;
    width: 100%;
    color: White;
    text-align: left;
    font-size: 2em;
    padding: 5px;
}


.red {
    background-color: red !important;
    color: white !important;
}

.green {
    background-color: green !important;
    color: white !important;
}

.pink {
    background-color: deeppink !important;
    color: white !important;
}

.white {
    background-color: white !important;
}

.lightblue {
    background-color: #9df5f0 !important;
    color: black !important;
}

.voilet {
    background-color: #654a80 !important;
    color: white !important;
}
.maroon {
    background-color: #A24857 !important;
    color: white !important;
}

.box {
    height: 20px;
    width: 20px;
    margin: 2px 10px 2px 10px;
    border: 1px solid black;
    float: left;
    cursor: pointer;
}

.table th {
    position: relative;
}

.resizer {
    /* Displayed at the right side of column */
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 5px !important;
    cursor: col-resize !important;
    user-select: none !important;
}

    .resizer:hover, .resizing {
        border-right: 2px solid blue !important;
    }

.glyphicon-filter:before {
    content: "\e138";
}

.filter {
    float: left;
    cursor: pointer;
    padding: 2px 2px 2px 2px;
}

    .filter:hover {
        float: left;
        cursor: pointer;
        padding: 0px 2px 0px 2px;
        background-color: black;
        color: white;
    }

.glyphicon-sort:before {
    content: "\e150";
}

.sort {
    float: right;
    cursor: pointer;
    padding: 2px 2px 2px 2px;
    color: yellow;
}

.glyphicon-close:before {
    content: "\e014";
}

.close {
    float: left;
    cursor: pointer;
    padding: 2px 2px 2px 2px;
    color: red;
}

    .close:hover {
        float: left;
        cursor: pointer;
        padding: 0px 2px 0px 2px;
        background-color: red;
        border-color: red;
        color: white;
    }

.Search input, .Search select {
    min-width: inherit;
    max-width: fit-content; /* or min-content */
}

.grdiviewcol {
    display: inline-block;
    position: relative;
    vertical-align: top;
    width: 48%;
    /* height: 32px;  background-color :Lime ; */
    margin: 1px;
}

.modalloader {
    position: fixed; /* Stay in place */
    z-index: 99999; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.error {
    float: left;
    height: 10px;
    width: 10px;
    background-color: red;
    position: fixed;
    top: 92%;
    z-index: 99999;
}

.log {
    float: right;
    height: 10px;
    width: 10px;
    background-color: red;
    position: fixed;
    top: 92%;
    left: 99%;
    z-index: 99999;
}

.hangingdiv {
    height: 100%;
    width: 90%;
    z-index: 9999;
    left: 5%;
    font-size: large;
    font-family: 'Times New Roman';
    border: 1px solid Red;
    position: absolute;
    background-color: White;
    overflow: scroll;
}

@media only screen and (max-width: 600px) {
    .navbar-fixed-bottom1 {
        padding: 10px;
        text-align: center;
        right: 0;
        bottom: 0;
        width: 1000px;
        z-index: 1030;
        background-color: white;
        position: fixed;
        height: 6%;
    }
}

.hidedisplay {
    display: none;
}

ul.Autocontrol {
    min-width: fit-content !important;
    background-color: White !important;
}

.Autocontrol > ul {
    width: 100%;
    background-color: White !important;
}

.Autocontrol li {
    border-top: solid 0.5px #3d3d3d;
    padding: 2px 2px 2px 2px !important;
    margin: 2px 2px 2px 2px !important;
    background-color: White !important;
}

    .Autocontrol li[style="padding: 0px; text-align: left; text-overflow: ellipsis; background-color: lemonchiffon; color: black;"] {
        outline: 0;
        background-color: #004494 !important;
        background: #004494 !important;
        text-decoration: none !important;
        color: #ffffff !important;
        font-weight: bold !important;
    }


.Autocontrol2 {
    width: 74%;
    border: solid 2px #3d3d3d;
    transition: box-shadow 0.3s, border 0.3s;
    padding: 3px;
    border-radius: 2px;
    border-top-right-radius: 4;
    border-bottom-right-radius: 4;
    max-height: 200px;
    overflow-y: auto;
    font-size: inherit;
    background-color: White !important;
}

option.Autocontrol2 {
    min-width: fit-content !important;
}

.Autocontrol2 > option {
    width: 100%;
}

.Autocontrol2 option {
    border-top: solid 0.5px #3d3d3d;
    padding: 2px 2px 2px 2px !important;
    margin: 2px 2px 2px 2px !important;
}

    .Autocontrol2 option:hover {
        outline: 0;
        background-color: #0000FF !important;
        background: #0000FF !important;
        text-decoration: none !important;
        color: #ffffff !important;
        font-weight: bold !important;
    }




.progresswindow
        {
            position: fixed; /* Stay in place */
            z-index: 99999999; /* Sit on top */
            padding-top: 100px; /* Location of the box */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            overflow: auto; /* Enable scroll if needed */
            background-color: rgb(0,0,0); /* Fallback color */
            background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
        }
        .progress
        {
          
            background-color: #f1f7fd;
            border-radius: 10px;
            display: flexbox;
            z-index: 9999999    ;
            position: absolute;
            top: 50%;
            left: 50%;
            width: 400px;
            margin-top: -9em; /*set to a negative number 1/2 of your height*/
            margin-left: -15em; /*set to a negative number 1/2 of your width*/
            border-radius: 3px;
            -webkit-box-shadow: 0px 0px 13px 3px rgba(0,0,0,0.75);
            -moz-box-shadow: 0px 0px 13px 3px rgba(0,0,0,0.75);
            box-shadow: 0px 0px 13px 3px rgba(0,0,0,0.75);
        
        }
          .notification-close
        {
            position: relative;
            background-color: #FF160C;
            color: white;
            padding: 5px 10px 5px 10px;
            border-radius: 5px;
            cursor: pointer;
            border:2px solid black !important;
            margin-bottom:2%;
        }
         .notification-save
        {
            position: relative;
            background-color: blue;
            color: white;
            padding: 5px 10px 5px 10px;
            border-radius: 5px;
            cursor: pointer;
            border:2px solid black !important;
            margin-bottom:2%;
        }
        .progressheader
        {
            height:10%;
            background:blue;
            display:block;
            width:100%;
            color:White;
            text-align:left;
            font-size:2em;
            padding:5px;
        }
        
        
      .btn-search:hover
{
    background:Black;
    border-color: Black;
}

.txtbxred
{
    color:Red;
    font-weight:bolder;
}



/* JSON GRID*/
.box {
height:20px;
width:20px;
margin: 2px10px2px10px;
border: 1pxsolidblack; 
float :left;
cursor:pointer;
}

.tableth {
position: relative;
}

.resizer {
/*Displayed at the right side of column*/
position: absolute!important;
top: 0!important;
right: 0!important;
width: 5px!important;
cursor: col-resize!important;
user-select: none!important;
}

.resizer:hover, .resizing {
border-right: 2pxsolidblue!important;
    }
	
.glyphicon-filter:before {
content: "\e138";
}

.filter{
float:left;
cursor:pointer;
padding:0px2px0px2px;
}

.filter:hover {
float: left;
cursor: pointer;
padding: 0px2px0px2px;
background-color:black;
color:white;
}

.glyphicon-sort:before {
content: "\e150";
}

.sort {
float: right;
cursor: pointer;
padding: 0px2px0px2px;
color:yellow;
}

.glyphicon-close:before {
content: "\e014";
}

.close {
float: left;
cursor: pointer;
padding: 0px2px0px2px;
color: red;
}


.close:hover {
float: left;
cursor: pointer;
padding: 0px2px0px2px;
background-color: red;
border-color:red;
color:white;
}



.Searchinput, .Search select {
min-width: inherit ;
max-width: fit-content; /*or min-content*/
}

.currentpage
{
    color:Black!important;
    
}

.currentpage:hover
{
   
    cursor:text!important;
}

.page1
{
    color:White!important;
    
}

.page1:hover
{
    cursor:pointer!important;
    color:Black!important;
   
}



/* calendar design start______________________________*/


.calendar {
    background: #F9F9F9;
    border-radius: 5px;
    border: 1px solid #DDD;
    position: relative;
    z-index: 9999!important;
}

    .calendar a {
        text-decoration: none;
        color: #333;
        cursor: pointer;
    }

    .calendar table tr td {
        text-align: center;
        padding: 3px;
    }

    .calendar .header {
        padding: 10px 0 10px 0;
    }

    .calendar .prev_month {
        float: left;
    }

    .calendar .next_month {
        float: right;
    }

    .calendar .year {
        text-align: center;
        font-weight: 500;
    }

    .calendar .week_days {
        font-weight: 500;
    }

    .calendar .event {
        color: white;
        background: #3B5A97;
        text-shadow: 0 0 2px #333;
        box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
        -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
        font-weight: bold;
    }

        .calendar .event:hover {
            background: #3B5A97;
            text-shadow: 0 0 2px #000;
            box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.8);
        }

        .calendar .event a {
            color: white;
        }

    .calendar .table td {
        padding: 0px;
    }

    .calendar .table {
        margin-bottom: 3px;
    }

    .calendar .week_days td {
        background: #f0f0f0;
        color: #000;
    }

    .calendar .visualmonthyear {
        color: #000;
    }

/* calendar design end______________________________*/


.hr-text { line-height: 1em; position: relative; outline: 0px; border: 0px; color: black; text-align: center; height: 1.5em; opacity: 1; }

.hr-text::before { content: ""; background: linear-gradient(to right, transparent, rgb(129, 128, 120), transparent); position: absolute; left: 0px; top: 50%; width: 100%; height: 1px; }

.hr-text::after { content: attr(data-content); position: relative; display: inline-block; color: blue; padding: 0px 0.5em; line-height: 1.5em; background-color: rgb(252, 252, 250); }

