﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    list-style: none;
}
img, button {
    outline: none;
    border: none;
}
a {
    text-decoration: none;
    color:inherit;
}

    a:hover {
        text-decoration: underline;
    }
.nav-links li a:hover {
    background-color: var(--gradiant-color);
}
nav {
    background: linear-gradient(to top, var(--gradiant-color), var(--background-color));
}
footer {
    background: linear-gradient(var(--gradiant-color), var(--gradiant-text), var(--background-color));
    /*    text-shadow: 1px 1px 2px var(--gradiant-color), 0 0 25px blue, 0 0 5px var(--gradiant-text);
*/
    text-align: center;
    padding: 10px;
}

.close-btn {
    visibility: hidden;
}

.nav-links .drop-menu {
    position: absolute;
    background-color: var(--background-color);
    width: 180px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
}

.mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 10px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    max-height: calc(85vh - 10px);
}

    .mega-box .content {
        background: linear-gradient(var(--gradiant-color), var(--background-color));
        /*background-color: var(--background-color);*/
        padding: 25px 20px;
        display: flex;
        width: 100%;
        justify-content: space-between;
        box-shadow: 0 6px 10px rgba(0,0,0,0.15);
    }

        .mega-box .content .row {
            width: calc(25% - 30px);
            line-height: 25px;
        }

.content .row header {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 500;
    text-shadow: 1px 1px 1px var(--gradiant-text), 0 0 10px var(--gradiant-color);
}

.content .row .mega-links {
    margin-left: 10px;
    border-left: 1px solid rgba(255,255,255,0.09);
}

.row .mega-links li {
    padding: 0 20px;
    text-shadow: 1px 1px 2px var(--gradiant-color), 0 0 3px var(--gradiant-text);
    padding: 5px 5px 5px 5px;
}


    .row .mega-links li a {
        padding: 0px;
        padding: 0 20px;
        color: var(--text-color);
        font-size: 17px;
        display: block;
    }

    .row .mega-links li:hover {
        color: var(--text-color);
    }

.wrapper .btn {
    color: var(--text-color);
    font-size: 20px;
    cursor: pointer;
    display: none;
}

    .wrapper .btn.close-btn {
        position: absolute;
        right: 30px;
        top: 10px;
    }

::-webkit-scrollbar-track {
    background-color: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background-color: var(--gradiant-color);
}

nav input {
    display: none;
}

.fa-times:before {
    content: url('../images/menu.png');
    cursor: pointer;
}

.nav-left-menu {
    position: absolute;
    display: flex;
    /*background-color: var(--background-color);*/
}

    .nav-left-menu img {
        width: 16px;
        max-width: 16px;
    }

.nav-left-submenu {
    padding: 0;
    margin: 0;
    /*left: -100px;*/
    width: 150px;
    display: none;
    position: absolute;
    border: 1px solid rgba(204, 204, 204, 0.5);
    z-index: 1;
    overflow-y: auto;
    max-height: calc(85vh - 10px);
    background-color: #fff;
    color: crimson;
}

.nav-left-menu > li {
    padding: 5px;
    position: relative;
}

    .nav-left-menu > li:hover .nav-left-submenu {
        display: block;
        /*float: left;*/
        float: right;
        list-style: none;
    }


.nav-left-submenu > li:hover {
    background-color: #f1f1f1;
}

.nav-left-submenu li {
    padding: 10px;
    display: list-item;
}

.notification-counter {
    background-color: #ff3c7e;
    border-radius: 50px;
    color: #fff;
    font-size: 8px;
    line-height: 1;
    padding: 2px 3.5px;
    position: absolute;
    right: 6px;
    top: 10px;
}

.left-head-strip {
    margin: 10px 0px 0px 5px;
}
/*text shadow effect*/
.shadow {
    text-shadow: 1px 1px 2px var(--gradiant-color), 0 0 3px var(--gradiant-text);
}

.icon-holder {
    border-radius: 3px;
    display: inline-block;
    font-size: 12px;
    height: 16px;
    left: 0;
    line-height: 14px;
    margin-right: 14px;
    /*position: relative;*/
    text-align: center;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    width: 16px;
}

/*desk top, tab*/
@media (min-width: 768px) {
    .logo {
        position: static;
        width: fit-content;
    }
    #hot-links {
        position: absolute;
        margin-left: 300px;
        color: var(--text-color);
        width: 100%;
    }
    nav {
        position: fixed;
        z-index: 9999;
        width: 100%;
    }

        nav .wrapper {
            position: static;
            padding: 5px 5px;
            height: 70px;
            margin: auto;
            display: flex;
            justify-content: space-between;
          
        }

    .wrapper .logo a {
        color: var(--text-color);
        font-size: 30px;
        font-weight: 600;
        text-decoration: none;
    }

    .wrapper .nav-links {
        display: inline-flex;
        align-items: end;
    }

    .nav-links li {
        list-style: none;
        white-space: nowrap;
    }

        .nav-links li a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            padding: 5px 5px 15px 5px;
            border-radius: 5px;
            transition: all 0.3s ease;
            text-shadow: 1px 1px 2px var(--gradiant-color), 0 0 3px var(--gradiant-text);
        }

   
    .nav-links .mobile-item {
        display: none;
    }
    .row .mega-links li a {
        padding: 0px;
        padding: 0 20px;
        color: var(--text-color);
        font-size: 17px;
        display: block;
        padding: 5px 5px 5px 5px;
    }


}

/*mobile screen*/
@media screen and (max-width: 767px) {
    .logo {
        position: fixed;
        visibility: visible;
        /*background-color: var(--background-color);*/
        background: linear-gradient(to top, var(--background-color), var(--gradiant-color));
        width: 100%;
        height: 100px;
        z-index: 99;
    }

    .close-btn {
        position: relative;
        visibility: visible;
        left: 15px;
    }

    #hot-links {
        position: fixed;
        padding: 10px;
        margin-top: 57px;
        color: var(--text-color);
        width: 100%;
        z-index: 99;
    }

    .wrapper .btn {
        display: block;
    }

    nav .wrapper .nav-links {
        height: 100vh;
        width: 100%;
        top: 0;
        left: -100%;
        background-color: var(--background-color);
        display: block;
        padding: 80px 10px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
        transition: all 0.3s ease;
    }

    ::-webkit-scrollbar {
        width: 10px;
    }

    #menu-btn:checked ~ .nav-links {
        left: 0%;
    }

    #menu-btn:checked ~ .btn.menu-btn {
        display: none;
    }

    #close-btn:checked ~ .btn.menu-btn {
        display: block;
    }

    .nav-links li {
        margin: 15px 10px;
    }

        .nav-links li a {
            padding: 0 20px;
            display: block;
            font-size: 20px;
            color: var(--text-color);
        }

    nav .wrapper .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    #showDrop0:checked ~ .drop-menu,
    #showDrop1:checked ~ .drop-menu,
    #showDrop2:checked ~ .drop-menu,
    #showMega19:checked ~ .mega-box,
    #showMega18:checked ~ .mega-box,
    #showMega17:checked ~ .mega-box,
    #showMega16:checked ~ .mega-box,
    #showMega15:checked ~ .mega-box,
    #showMega14:checked ~ .mega-box,
    #showMega13:checked ~ .mega-box,
    #showMega12:checked ~ .mega-box,
    #showMega11:checked ~ .mega-box,
    #showMega10:checked ~ .mega-box,
    #showMega9:checked ~ .mega-box,
    #showMega8:checked ~ .mega-box,
    #showMega7:checked ~ .mega-box,
    #showMega6:checked ~ .mega-box,
    #showMega5:checked ~ .mega-box,
    #showMega4:checked ~ .mega-box,
    #showMega3:checked ~ .mega-box,
    #showMega2:checked ~ .mega-box,
    #showMega1:checked ~ .mega-box,
    #showMega0:checked ~ .mega-box {
        max-height: 100%;
    }


    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        color: var(--gradiant-text ); /*#f2f2f2;*/
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

        .nav-links .mobile-item:hover {
            background-color: var(--gradiant-color );
        }

    .drop-menu li {
        margin: 0;
    }

        .drop-menu li a {
            border-radius: 5px;
            font-size: 18px;
        }

    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 20px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

        .mega-box .content {
            box-shadow: none;
            flex-direction: column;
            padding: 20px 20px 0 20px;
        }

            .mega-box .content .row {
                width: 100%;
                margin-bottom: 15px;
                border-top: 1px solid rgba(255,255,255,0.08);
            }

                .mega-box .content .row:nth-child(1),
                .mega-box .content .row:nth-child(2) {
                    border-top: 0px;
                }

    .content .row .mega-links {
        border-left: 0px;
        padding-left: 15px;
    }

    .row .mega-links li {
        margin: 0;
        padding: 5px 5px 5px 5px;
    }

    .content .row header {
        font-size: 19px;
    }
}
/*css9 is renamed and original mstlayout contents appended on 13.03.2024*/
#DetailControls {
    display: none;
}


.edit-item display-mode {
}

.save-item edit-mode {
}

.display-mode {
}

.hide-mode {
    display: none;
}

.cancel-item {
}

.delete-item {
}


table.FormattedReport td:nth-child(1) {
    display: none;
}

table.FormattedReport th:nth-child(1) {
    display: none;
}

table.table-dropDown td:nth-child(1) {
    display: none;
}

table.table-dropDown th:nth-child(1) {
    display: none;
}

table.webgrid-table td:nth-child(2) {
    display: none;
}

table.webgrid-table td:nth-child(3) {
    display: none;
}

table.webgrid-table th:nth-child(2) {
    display: none;
}

table.webgrid-table th:nth-child(3) {
    display: none;
}

.webgrid-table {
    font-family: Arial,Helvetica,sans-serif;
    font-size: 14px;
    font-weight: normal;
    width: 650px;
    display: table;
    border-collapse: collapse;
    border: solid 1px #C5C5C5;
    /* background-color: white;*/
}
.col3Width{
    min-width:80px;
}
.html-table {
    font-family: Arial,Helvetica,sans-serif;
    font-size: 14px;
    font-weight: normal;
    width: 650px;
    display: table;
    border-collapse: collapse;
    border: solid 1px #C5C5C5;
    /*  background-color: white;*/
}

    .html-table td, th {
        border: 1px solid #C5C5C5;
        padding: 3px 7px 2px;
    }
.fStlBoo {
    text-align:center;
}
.webgrid-table td, th {
    border: 1px solid #C5C5C5;
    padding: 3px 7px 2px;
}

.webgrid-header th {
    min-width: 70px;
}

.webgrid-header, .webgrid-header a {
    background-color: rgba(227, 227, 227, 0.4);
    color: black;
    text-align: left;
    text-decoration: none;
}

.webgrid-footer {
}

.webgrid-row-style {
    padding: 3px 7px 2px;
}

.webgrid-alternating-row {
    background-color: rgba(245, 245, 245, 1);
    padding: 3px 7px 2px;
}


#HeaderControls {
    overflow: auto;
}

.table-dropDown {
    border-collapse: collapse;
}

    .table-dropDown tr:hover {
        background-color: rgba(221, 221, 221, 1);
    }

    .table-dropDown th {
        background-color: rgba(227, 227, 227, 0.4); /*auto complete table header background color*/
        font-size: small;
        text-align: Left;
    }

    .table-dropDown td, th {
        border: 1px solid #C5C5C5;
    }

.searchtext_highlight {
    background-color: yellow; /*highlighted text style*/
}

input.hidden {
    position: absolute;
    left: -9999px;
}

#dropTable {
    position: absolute;
    left: -1500px;
    border: 1px solid rgba(204, 204, 204, 0.5);
    max-width: 500px;
    max-height: 400px;
    background: var(--background-color);
    overflow: auto;
    z-index: 99;
}

.panel {
    margin: 40px 40px 40px 40px;
    padding: 4px 4px 4px 4px;
    background-color: #F5F5F5;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: 0 1px 1px #ebccd1;
}

/****end***tables, control styles*/

.btn {
    float: left;
    padding-left: 2px;
    padding-right: 2px;
    display: table-column;
}

#DBController .btn {
    /*background-color: #b14c9c;*/
    /*font-size: 10px;*/
    width: 170px;
    height: 140px;
    text-align: center;
    /* color: #b14c9c;*/
    border-radius: 3px 30px 3px 30px;
    box-shadow: 0 1px 6px 4px rgba(0, 0, 0, 0.07) inset, 0 0 0 3px #b14c9c, 0 5px 3px 3px #D2D2D2;
}

#DBController img {
    max-width: 90px;
    padding: 5px;
}

.col-lg-4 {
    float: left;
    width: 250px;
    padding-left: 5px;
    padding-right: 5px;
}

    .col-lg-4 label {
        font-weight: 700 !important;
    }

/*.divTable {
    display: table;
    width: 100%;
    margin: 10px*/
    /* border:1px solid  #666666;
        border-spacing:5px;
        border-collapse:separate;*/
/*}

.divRow {
    display: table-row;
}*/

/*.divCell {
    float: left;*/ /*fix for  buggy browsers*/
    /*display: table-column;*/
    /*width:200px;*/
    /*background-color: rgba(204, 204, 204, 1);
}

.divTable {
    width:100%;
    display: flex;
    justify-content: center; 
}

.divRow {
    display: flex; 
    justify-content: space-evenly; 
    width: 100%; 
}
*/
    .divTable {
  display: flex;
  flex-direction: column; /* Stack child .divRow elements vertically */
  gap: 20px; /* Optional: Adds space between rows */
}

.divRow {
    display: flex;
    flex-wrap: wrap; /* Allows items within a row to wrap if needed */
    /*gap: 15px;  Optional: Adds space between items in a row */
}
.col-lg {
    flex: 1; /* Makes each cell take equal space */
}

.tabcontent {
    float: left;
    padding: 0px 2px;
    width: 100%;
    display: none;
    border: 1px solid rgba(204, 204, 204, 0.5);
}

/* Style the tab */
.mnutab {
    float: left;
    padding: 0px 0px 0px 0px;
    border: 1px solid rgba(204, 204, 204, 0.5);
    background-color: #f1f1f1;
    height: 20px;
}

    /* Style the buttons that are used to open the tab content */
    .mnutab button {
        display: block;
        /*background-color: inherit;
                color: black;
                padding: 0px 0px 0px 0px;
                border: none;
                outline: none;*/
        background-color: skyblue;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 3px 5px;
        transition: 0.3s;
        font-size: 13px;
        margin: 0px 1px;
        border-radius: 6px;
        text-align: left;
        cursor: pointer;
        transition: 0.3s;
    }

        /* Change background color of buttons on hover */
        .mnutab button:hover {
            background-color: rgba(221, 221, 221, 1);
        }

        /* Create an active/current "tab button" class */
        .mnutab button.active {
            background-color: rgba(204, 204, 204, 1);
        }

/* Style the tab content */
.tabcontent {
    float: left;
    padding: 0px 2px;
    width: 100%;
    display: none;
    border: 1px solid rgba(204, 204, 204, 0.5);
}

/*.tabcontent {
            display: none;
            border: 1px solid rgba(204, 204, 204, 0.5);
        }*/
#pGateWindow {
    z-index: 100;
    position: fixed; /* Stay in place */
    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 */
    color: rgba(0,0,0,0.6);
    text-align: left;
}

#PayTab {
    padding: 5px;
    width: 278px;
    height: 470px;
    margin-top: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-color: #b14c9c;
    color: #fff;
    border-radius: 3px 30px 3px 30px;
    box-shadow: 0 1px 6px 4px rgba(0, 0, 0, 0.07) inset, 0 0 0 3px #FEFEFE, 0 5px 3px 3px #D2D2D2;
    background-image: url('../images/bg-pg.png');
}

.payHead {
    font-weight: 700;
}

.paybuton {
}

.paycontent {
    float: left;
    padding: 0px 2px;
    width: 100%;
    display: none;
    border: 1px solid rgba(204, 204, 204, 0.5);
    padding-left: 22px;
}
.submits {
    width: 100%;
}

.paymnutab button {
    display: block;
    background-color: skyblue;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 2px 3px;
    transition: 0.3s;
    font-size: 14px;
    margin: 0px 1px;
    border-radius: 6px;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
}

.IcoL {
    /*padding-right: 5px;
            padding-left: 5px;
            margin-right: 5px;
            text-align: center;
            width: 15px;
            height: 15px;
            border: solid 1px #555;*/
    -webkit-box-shadow: 2px -2px rgba(0,0,0,0.6);
    -o-box-shadow: 2px -2px rgba(0,0,0,0.6);
    border-radius: 180px;
}

.mnutab {
    overflow: hidden;
}



    /* Change background color of buttons on hover */
    .mnutab button:hover {
        background-color: rgba(221, 221, 221, 1);
    }

    /* Create an active/current tablink class */
    .mnutab button.active {
        background-color: rgba(204, 204, 204, 1);
    }

.mm-navbar_tabs span {
    display: inline-block;
    margin-left: 8px;
}




.pro_img {
    cursor: pointer;
}

.HiddenCol {
    display: none;
}

.SelectedRow {
    background-color: #c4e3f0;
}

.fStlDec {
    text-align: right;
}

.fStlInt {
    text-align: right;
}

.img_Table {
    width: 40px;
    height: 60px;
}

*:focus {
    outline: 3px solid #27B;
}

.combo {
    background-image: url('../images/combo.jpg');
}

#HeaderControls .date {
    background-image: url('../images/date.jpg');
}

.datetime-local {
    background-image: url('../images/datetime-local.jpg');
}

.text {
    background-image: url('../images/text.jpg');
}

.select {
    background-image: url('../images/select.jpg');
    background-position: left;
    padding-left: 22px;
    background-size: 20px;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.mcombo {
    background-image: url('../images/mcombo.jpg');
    background-position: left;
    padding-left: 22px;
    background-size: 20px;
    background-repeat: no-repeat;
    border-radius: 8px;
}

#HeaderControls .email {
    background-image: url('../images/email.jpg');
}

#HeaderControls .mobile {
    background-image: url('../images/mobile.jpg');
}

#HeaderControls .number {
    background-image: url('../images/number.jpg');
}

#HeaderControls .date, .number, .email, .text, .mobile, .combo, .mcombo, .select, .checkbox, .datetime-local {
    height: 34px;
    background-position: left;
    padding-left: 22px;
    background-size: 20px;
    background-repeat: no-repeat;
    border: 1px solid rgba(204, 204, 204, 0.5);
    border-radius: 8px;
}

.IsRequired {
    background-color: #a6ffcc;
}

input[type="button"], input[type="submit"] {
    background: none repeat scroll 0 0 #363333;
    border: 1px solid rgba(204, 204, 204, 0.5);
    border-radius: 3px 3px 3px 3px;
    box-shadow: 0 1px 6px 4px rgba(0, 0, 0, 0.07) inset, 0 0 0 3px #FEFEFE, 0 5px 3px 3px #D2D2D2;
    color: #FFFFFF;
    cursor: pointer;
    font-family: 'BebasNeueRegular','Arial Narrow',Arial,sans-serif;
    font-size: 15px;
    margin: 0;
    padding: 5px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    transition: all 0.2s linear 0s;
}
    input[type="button"]:disabled, input[type="submit"]:disabled {
        background-color: #aaa;
        cursor: not-allowed;
    }

/* Style changes when button is enabled */
    input[type="button"].enabled, input[type="submit"].enabled {
        background: none repeat scroll 0 0 #363333;
    }

/*image attached for add-on js functionality--begin*/
 .btnLink {
    position: relative;
    display: inline-block;
  }
    .btnLink input /*[type="text"]*/ {
        padding-right: 30px; /* Space for the icon */
        width: 200px; /* Adjust as needed */
        height: 30px; /* Adjust as needed */
    }
    .btnLink img {
        position: absolute;
        top: 0;
        right: 0;
        cursor: pointer;
        width: 24px; /* Adjust icon size as needed */
        height: 24px;
        padding: 3px;
    }
/*image attached for add-on js functionality--end*/
.nav-left {
    margin-top: 45px;
}

.IcoS0 {
    color: #FFFF00;
    background: #0000FF;
}

.IcoS1 {
    color: #FF7F00;
    background: #00FF00;
}

.IcoS2 {
    color: #FF0000;
    background: #4B0082;
}

.IcoS3 {
    color: #9400D3;
    background: #FF7F00;
}

.IcoS4 {
    color: #4B0082;
    background: #FF0000;
}

.IcoS5 {
    color: #00FF00;
    background: #9400D3;
}

.IcoS6 {
    color: #0000FF;
    background: #FFFF00;
}

.LmenuClass:hover {
    opacity: 20;
    width: 120%;
}

.LogClick {
    cursor: pointer;
}

.HideControls {
    display: none;
}

.BgColor {
    width: 400px;
    height: 50px;
    background: linear-gradient(to right, blue 70%, yellow 50%);
}
/*scrollbar styling*/
::-webkit-scrollbar {
    width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 8px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #A9CAE7;
    border-radius: 8px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #9FB2C2;
    }
/*scrollbar styling*/

/*chat box styling*/
/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
    background-color: #555;
    color: white;
    border: none;
    cursor: pointer;
    opacity: 1;
    position: fixed;
    bottom: 5px;
    right: 5px;
    width: 280px;
}

.Agents-Available {
    height: 50px;
    overflow-x: hidden;
    overflow-y: scroll;
}
/* The popup chat - hidden by default */
.chat-popup {
    display: none;
    position: fixed;
    font-size: 12px;
    bottom: 0;
    right: 5px;
    border: 3px solid #f1f1f1;
    z-index: 9;
}

/* Add styles to the form container */
.form-container {
    max-width: 300px;
    width: 300px;
    padding: 10px;
    background-color: white;
}

    /* Full-width textarea */
    .form-container textarea {
        width: 280px;
        padding: 5px;
        margin: 5px 0 5px 0;
        border: groove;
        background: #f1f1f1;
        resize: none;
        min-height: 30px;
    }

        /* When the textarea gets focus, do something */
        .form-container textarea:focus {
            background-color: rgba(221, 221, 221, 1);
            outline: none;
        }

#usrChoice {
    width: 280px;
    padding: 5px;
    margin: 5px 0 5px 0;
    border: groove;
    background: #f1f1f1;
    min-height: 30px;
}
/* Set a style for the submit/send button */
.form-container .btn {
    background-color: #4CAF50;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    opacity: 1;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
    background-color: red;
}

/* Add some hover effects to buttons */
/*.form-container .btn:hover, .open-button:hover {
                opacity: 0.8;
            }*/
/*chat box styling*/

.msAgent {
    border: 2px solid #dedede;
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
}

.msUser {
    border-color: rgba(204, 204, 204, 0.5);
    background-color: rgba(221, 221, 221, 1);
}

.msAgent::after {
    content: "";
    clear: both;
    display: table;
}

.msAgent img {
    float: left;
    max-width: 60px;
    /*width: 100%;*/
    margin-right: 20px;
    border-radius: 50%;
    height: 40px
}

    .msAgent img.right {
        float: right;
        margin-left: 20px;
        margin-right: 0;
    }

.time-right {
    float: right;
    color: #aaa;
}

.time-left {
    float: left;
    color: #999;
}

/****************************************/
.header {
    /* background-color: #fff;*/
    background: var(--background-color);
    border-bottom: 1px solid rgba(0,0,0,.0625);
    display: block;
    height: 80px;
    margin-bottom: 0;
    padding: 0;
    position: fixed;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    width: 100%; /*calc(100% - 280px);*/
    z-index: 800;
}

    .header .header-container:after {
        display: block;
        clear: both;
        content: "";
    }

    .header .header-container .nav-left, .header .header-container .nav-right {
        list-style: none;
        margin-bottom: 0;
        padding-left: 0;
        position: relative;
    }

        .header .header-container .nav-left > li, .header .header-container .nav-right > li {
            float: left;
        }

            .header .header-container .nav-left > li > a, .header .header-container .nav-right > li > a {
                color: #72777a;
                display: block;
                line-height: 65px;
                min-height: 65px;
                max-width: 65px;
                padding: 0 15px;
                -webkit-transition: all .2s ease-in-out;
                -o-transition: all .2s ease-in-out;
                transition: all .2s ease-in-out;
            }

                .header .header-container .nav-left > li > a i, .header .header-container .nav-right > li > a i {
                    font-size: 17px;
                }

                .header .header-container .nav-left > li > a:focus, .header .header-container .nav-left > li > a:hover, .header .header-container .nav-right > li > a:focus, .header .header-container .nav-right > li > a:hover {
                    color: #313435;
                    text-decoration: none;
                }


        .header .header-container .nav-left .notifications, .header .header-container .nav-right .notifications {
            position: relative;
        }

.notification-counter {
    background-color: #ff3c7e;
    border-radius: 50px;
    color: #fff;
    font-size: 8px;
    line-height: 1;
    padding: 2px 3.5px;
    position: absolute;
    right: 6px;
    top: 10px;
}

.header .header-container .nav-left .notifications .dropdown-menu, .header .header-container .nav-right .notifications .dropdown-menu {
    min-width: 350px;
    padding: 0;
}


.header .header-container .dropdown-menu {
    display: block;
    margin: 0;
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform .15s ease-out;
    transition: -webkit-transform .15s ease-out;
    -o-transition: transform .15s ease-out;
    transition: transform .15s ease-out;
    transition: transform .15s ease-out,-webkit-transform .15s ease-out;
}

    .header .header-container .dropdown-menu .divider {
        border-bottom: 1px solid rgba(0,0,0,.0625);
        height: 1px;
        overflow: hidden;
    }

    .header .header-container .dropdown-menu > li > a {
        -webkit-transition: all .2s ease-out;
        -o-transition: all .2s ease-out;
        transition: all .2s ease-out;
    }

.header .header-container .show .dropdown-menu {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.header .header-container .nav-left {
    float: left;
    margin-left: 15px;
}

.header .header-container .nav-right {
    float: right;
}

    .header .header-container .nav-right .dropdown-menu {
        left: auto;
        right: 0;
    }

        .header .header-container .nav-right .dropdown-menu > li {
            width: 100%;
        }

            .header .header-container .nav-right .dropdown-menu > li > a {
                line-height: 1.5;
                min-height: auto;
                padding: 10px 15px;
            }

.header .search-box.active .search-icon, .header .search-box .search-icon-close {
    display: none;
}

.header .search-box.active .search-icon-close {
    display: inline-block;
}

.header .search-input {
    display: none;
}

    .header .search-input.active {
        display: inline-block;
    }

    .header .search-input input {
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        font-size: 18px;
        height: 40px;
        margin-top: 12px;
        outline: none;
        padding: 5px;
    }


        .header .search-input input::-webkit-input-placeholder {
            color: #a6aaac;
            font-style: italic;
        }

        .header .search-input input:-moz-placeholder, .header .search-input input::-moz-placeholder {
            color: #a6aaac;
            font-style: italic;
        }

        .header .search-input input:-ms-input-placeholder {
            color: #a6aaac;
            font-style: italic;
        }

.is-collapsed .header {
    width: calc(100% - 70px);
}

@media print {
    .no-print, .no-print * {
        display: none !important;
    }

    #RepoData tbody {
        display: block;
        max-height: calc(100vh - 280px);
    }
}

@media screen {
    #RepoData tbody {
        /*display: block; 06052023*/
        display: block;
        max-height: calc(100vh - 280px);
        overflow-x: hidden;
    }
}


/*

			  @media screen and (max-width:767px) {
                   .header .header-container .nav-left .notifications .dropdown-menu, .header .header-container .nav-right .notifications .dropdown-menu {
                       max-width: 300px;
                   }
              
                   .header .search-input input {
                       width: 85px;
                   }
               }

    */

/*.dropdown-menu*/
.show {
    display: block;
}
/*.dropdown-menu*/
.hides {
    display: none;
}

.droplist {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
    text-decoration: none;
    border: 1px solid rgba(204, 204, 204, 0.5);
    background-color: #fff;
    overflow: auto;
    z-index: 99;
}

    .droplist li:hover {
        background-color: rgba(0,0,0,.075);
    }
/*.dropdown-usc {
    display:inline-block; 
}
*/ .cAlign {
    margin: auto;
    text-align: center;
    padding: 5px;
    border: solid 1px #C5C5C5;
}

.fill {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

    .fill img {
        flex-shrink: 0;
        min-width: 100%;
        min-height: 100%;
    }

.formattedReport {
    border-collapse: collapse;
}

    .formattedReport td, th {
        border: 1px solid #C5C5C5;
    }
/*#RepoData table, tr td {
        border: 1px solid red;
    }*/

#RepoData tfoot, #RepoData thead, #RepoData tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

#RepoData > tfoot, #RepoData > thead {
    width: calc( 100% - 1em );
}

#FormTitle {
    /*position: absolute;
    margin: 60px 0px 0px 100px;*/
    font-size: 1em;
    text-align: center;
    /*attemp to merge -- later remove - 08042023*/
    width: 100%;
    overflow: no-display;
    color: #000;
    background: rgba(204, 204, 204, 0.5);
    padding-left: 5px;
    padding-right: 5px;
    -webkit-box-shadow: 2px -2px rgba(0,0,0,0.6);
    -o-box-shadow: 2px -2px rgba(0,0,0,0.6);
    border-radius: 180px;
}
/*
.TitleForm {
    overflow: no-display;
    color: #000;
    background: rgba(204, 204, 204, 0.5);
    padding-left: 5px;
    padding-right: 5px;
    -webkit-box-shadow: 2px -2px rgba(0,0,0,0.6);
    -o-box-shadow: 2px -2px rgba(0,0,0,0.6);
    border-radius: 180px;
}*/
/*left menu added styles 18022023*/
.HeaderDropMenu {
    float: right;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    /*  text-align: right;*/
}

.contentList {
    margin-right: 15px;
    float: left;
    border: 1px solid rgba(204, 204, 204, 0.5);
    border-radius: 8px;
}

.content-delete-button {
    width: 20px;
    height: 20px;
    background-image: url('images/Delete.gif');
    background-position: center;
    background-repeat: no-repeat;
    padding-left: 10px;
    background-size: 10px;
}

/*notice board css settings*/
.NBHeader {
    background-color: white;
    border-radius: 2px;
    border: 1px solid;
    border-color: #d1d1d1;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.FloatL {
    float: left;
    position: relative;
    display: flex;
    list-style: none;
    margin-left: 5px;
}

.NBHeader li {
    padding: 10px;
    background-color: #fff;
}    

/*test css before appening*/
#detailsgrid{
    overflow-x:scroll;
}
.body-text {
    width: 100%;
    text-align: justify;
    padding: 100px 30px;
    font-size: var(--font-size);
    color: var(--text-color);
    background-color: var(--gradiant-color);
    line-height: 30px;
    /*************/
    /*************/
}


    .body-text pb {
        margin: 10px; /* Optional: Add some space between paragraphs */
        width: 31.5%;
        float: left;
        padding: 10px;
        border-radius: 3px 30px 3px 30px;
        box-shadow: 0 1px 6px 4px rgba(0, 0, 0, 0.07) inset, 0 0 0 3px #FEFEFE, 0 5px 3px 3px #D2D2D2;
        min-height: 350px;
        background: linear-gradient(var(--background-color), var(--gradiant-color));
    }
.ovBox {
    width: 48.5%;
    float: left;
    padding: 10px;
    border-radius: 3px 30px 3px 30px;
    box-shadow: 0 1px 6px 4px rgba(0, 0, 0, 0.07) inset, 0 0 0 3px #FEFEFE, 0 5px 3px 3px #D2D2D2;
    min-height: 350px;
    background: linear-gradient(var(--background-color), var(--gradiant-color));
}

.genViews p {
    float: left;
    padding: 10px;
    border-radius: 3px 30px 3px 30px;
    box-shadow: 0 1px 6px 4px rgba(0, 0, 0, 0.07) inset, 0 0 0 3px #FEFEFE, 0 5px 3px 3px #D2D2D2;
    background: linear-gradient(var(--background-color), var(--gradiant-color));
}

dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 40%;
    max-width: 70%;
    border: none;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
}

    dialog::backdrop {
        background: rgba(0, 0, 0, 0.5);
    }

#alertOk {
    margin-top: 10px;
    margin-left: 50%;
}
/*securing the web contents*/
/*
body {
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
}

body {
    -webkit-user-drag: none; 
    user-drag: none;
}

body {
    pointer-events: none;
}
*/

/*general table header-footer first two columns fixing
table {
    width: 100%;
    border-collapse: collapse;
}

thead, tfoot {
    position: sticky;
    background: #fff;
}

thead {
    top: 0;
    z-index: 3;
}

tfoot {
    bottom: 0;
    z-index: 3;
}

tbody {
    display: block;
    max-height: 300px; 
    overflow-y: auto;
    overflow-x: hidden;
}

    tbody tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

        thead tr th:nth-child(1),
        thead tr th:nth-child(2),
        tbody tr td:nth-child(1),
        tbody tr td:nth-child(2),
        tfoot tr td:nth-child(1),
        tfoot tr td:nth-child(2) {
            position: sticky;
            left: 0;
            background: #fff;
            z-index: 4;
        }

        thead tr th:nth-child(2),
        tbody tr td:nth-child(2),
        tfoot tr td:nth-child(2) {
            left: 100px; 
            z-index: 5;
        }

*/