/* CSS Document */

body {
    margin: 0;
    padding: 0;
}



/************************************************
* General *
************************************************/
img {
    border: 0;
}

table {
    color: #2c2c2c;
    text-align: left;
    font-size: 12px;
}


h1 {
    margin: 0;
    padding: 0;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

h2 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

    h2 a {
        font-size: 20px;
        color: #993366;
        font-weight: bold;
        text-decoration: underline;
    }

        h2 a:hover {
            font-size: 20px;
            color: #993366;
            font-weight: bold;
            text-decoration: none;
        }

h3 {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

h4 {
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-weight: bold;
    color: #333;
}



/************************************************
* Container *
************************************************/
.container {
    background: url(images/content-bg.gif) repeat-x top #283c52;
    padding: 10px;
}

/************************************************
* Header *
************************************************/
.header {
    background: url(images/header-bg.gif) repeat-x;
    padding: 0px 10px 0px 10px;
}

.welcome_lable {
    font-size: 12px;
    color: #fff;
}

    .welcome_lable span {
        font-style: italic;
        color: #d1e0f3;
    }

.logout_btn {
    background: url(images/logout-btn.gif) no-repeat;
    height: 26px;
    color: #20374b;
    font-weight: bold;
    padding: 0px 5px 0px 23px;
    font-size: 11px;
}

    .logout_btn a {
        text-decoration: none;
        color: #20374b;
        font-weight: bold;
        font-size: 11px;
    }

        .logout_btn a:hover {
            text-decoration: none;
            color: #20374b;
            font-weight: bold;
            font-size: 11px;
        }


.Home_btn {
    background-color: #c7d6ea;
    height: 26px;
    color: #20374b;
    font-weight: bold;
    padding: 0px 5px 0px 5px;
    font-size: 11px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

    .Home_btn a {
        background-color: #c7d6ea;
        text-decoration: none;
        color: #20374b;
        font-weight: bold;
        font-size: 11px;
    }

        .Home_btn a:hover {
            background-color: #f0f5fe;
            text-decoration: none;
            color: #20374b;
            font-weight: bold;
            font-size: 11px;
        }

/************************************************
* Header Navigation *
************************************************/
.nav_mainbg {
    background: url(images/navmainbg.gif) repeat-x;
    padding: 9px 5px 1px 8px;
    background-color: #588dc9;
}

.nav_midbg {
    background: url(images/navmain-mid.gif) repeat-x top;
    padding: 5px 0px 0px 0px;
}

.ddsmoothmenu {
    font: bold 12px Arial, Helvetica, sans-serif;
    z-index: 999;
    position: relative;
}

    .ddsmoothmenu ul {
        z-index: 999;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

        /*Top level list items*/
        .ddsmoothmenu ul li {
            position: relative;
            display: inline;
            float: left;
        }

            /*Top level menu link items style*/
            .ddsmoothmenu ul li a {
                display: block;
                padding: 5px 4px;
                color: #2d2b2b;
                text-decoration: none;
            }

            * html .ddsmoothmenu ul li a { /*IE6 hack to get sub menu links to behave correctly*/
                display: inline-block;
            }

            /*.ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited{
color: white;
} /*Change color 1 (font color)*/

            /*.ddsmoothmenu ul li a.selected{ 
background:url(images/nav-hover.gif) repeat-x;
color:#fff;
}/*Change color 2 (seleted color) */

            /*.ddsmoothmenu ul li a:hover{
background:url(images/nav-hover.gif) repeat-x;
color: Yellow;
}/*Change color 3 (change hover) */

            /*1st sub level menu*/
            .ddsmoothmenu ul li ul {
                position: absolute;
                left: 0;
                display: none; /*collapse all sub menus to begin with*/
                visibility: hidden;
            }

                /*Sub level menu list items (undo style from Top level List Items)*/
                .ddsmoothmenu ul li ul li {
                    display: list-item;
                    float: none;
                    background-color: #2e3f57;
                    color: #fff;
                    top: 5px;
                }

                    /*All subsequent sub menu levels vertical offset after 1st level sub menu */
                    .ddsmoothmenu ul li ul li ul {
                        top: 0;
                    }

                    /* Sub level menu links style */
                    .ddsmoothmenu ul li ul li a {
                        width: 160px; /*width of sub menus*/
                        padding: 6px;
                        margin: 0;
                        border-top-width: 0;
                        border-bottom: 1px solid #3b5280;
                        background-color: #2e3f57;
                        color: #000;
                    }


                        /*.ddsmoothmenu ul li ul li a:hover{
font: normal 11px ;
width: 160px; 
padding: 6px;
margin: 0;
border-top-width: 0;
border-bottom: 1px solid  #3b5280;
background-color:#3b5280; 
background-image:none;
color:#fff;
} /*Change color 3 (change hover) */

                        .ddsmoothmenu ul li ul li a.selected {
                            font: normal 11px Serif;
                            width: 160px; /*width of sub menus*/
                            padding: 6px;
                            margin: 0;
                            border-top-width: 0;
                            border-bottom: 1px solid #3b5280;
                            background-color: #1f2733;
                            background-image: none;
                        }



/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass {
    position: absolute;
    top: 9px;
    right: 9px;
}

.rightarrowclass {
    position: absolute;
    top: 9px;
    right: 5px;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    background:;
}

.toplevelshadow { /*shadow opacity. Doesn't work in IE*/
    opacity: 0.8;
}

/************************************************
* Left Sidebar *
************************************************/
.leftside {
    width: 213px;
    padding: 0px 0px 0px 0px;
    background: #fff;
    border: 1px solid #0b1933;
}

.lttitlebg {
    background: url(images/lt-titlebg.gif) repeat-x;
    padding: 0px 10px 0px 10px;
}

.lttitlebg_Ver {
    background: url(images/lt-titlebg_ver.gif) repeat-y;
    padding: 0px 10px 0px 10px;
}

.lttitlebg span {
    color: #fff;
}

.leftmenu_bg {
    background: url(images/tab-dac-leftmenu.gif) repeat-x top;
    height: 20px;
    font-size: 12px;
    font-weight: normal;
    color: #FFFFFF;
    padding: 5px 0px 0px 15px;
}

    .leftmenu_bg a {
        color: white;
        text-decoration: none;
    }

.leftmenu_bg_last {
    background: url(images/tab-dac-leftmenu.gif) repeat-x top;
    height: 25px;
    font-size: 12px;
    font-weight: normal;
    color: #FFFFFF;
    padding: 0px 0px 0px 15px;
}

    .leftmenu_bg_last a {
        color: white;
        text-decoration: none;
    }

    .leftmenu_bg_last span {
        color: white;
        text-decoration: none;
    }

.leftaccordian {
    font-weight: bold;
    background-color: #F0F8FF;
    font-size: 13px;
}

.leftaccordiantable {
    line-height: 15px;
    border-color: #E3E3E3;
    background-color: #F0F8FF;
}

    .leftaccordiantable td {
        border-color: #E3E3E3;
        font-weight: bold;
    }

.rightalign {
    float: right;
}

.alignimg {
    float: left;
}

.checkboxcolor {
    color: Yellow;
}


/************************************************
* Content *
************************************************/
.content_mainbg {
    background: #8eb1ea;
    padding: 8px 8px 8px 8px;
    border-bottom: 1px solid #0b1933;
    border-left: 1px solid #0b1933;
    border-right: 1px solid #0b1933;
}

.content_navborder {
    border-bottom: 1px solid #0b1933;
}

.content_nav a {
    text-decoration: none;
    color: #fff;
    font-weight: normal;
    background: url(images/tab-dac.gif) repeat-x;
    padding: 0px 15px 0px 15px;
    line-height: 28px;
    display: block;
    border-top: 1px solid #0b1933;
    border-left: 1px solid #0b1933;
    border-right: 1px solid #0b1933;
    height: 28px;
    z-index: 996;
    position: relative;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

    .content_nav a:hover {
        color: #000;
        font-weight: normal;
        background: url(images/tab-ac.gif) repeat-x;
        padding: 0px 15px 0px 15px;
        display: block;
        border-top: 1px solid #0b1933;
        line-height: 28px;
        border-left: 1px solid #0b1933;
        border-right: 1px solid #0b1933;
        z-index: 996;
        position: relative;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .content_nav a.active {
        color: #000;
        font-weight: normal;
        background: url(images/tab-ac.gif) repeat-x;
        padding: 0px 15px 0px 15px;
        display: block;
        border-top: 1px solid #0b1933;
        line-height: 28px;
        border-left: 1px solid #0b1933;
        border-right: 1px solid #0b1933;
        z-index: 996;
        position: relative;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

.searcharea_bg {
    background: url(images/searcharea-bg.gif) repeat-x top #d9e9ff;
    padding: 10px;
}

.content {
    background: #fff;
    padding: 10px;
}

/************************************************
* Login box *
************************************************/
.loginheaderbg {
    background: url(images/login-headerbg.gif) repeat-x top;
    height: 58px;
    padding-bottom: 4px;
}

.loginleftbg {
    background: url(images/login-leftbg.gif) repeat-x top;
    height: 259px;
}

.loginconbg {
    background: url(images/login-conbg.gif) repeat-x top #ffffff;
}

.logininput {
    background: url(images/logininputbg.gif) repeat-x #ffffff;
    border: #8d99b0 1px solid;
    padding: 5px;
    color: #000;
    font-size: 13px;
    width: 238px;
}

.loginlabel {
    color: #000;
    font-size: 13px;
    font-weight: bold;
}

.logintitle {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: bold;
}

.logintitleleft {
    background: url(images/logintitleleftbg.png) no-repeat;
    width: 7px;
    height: 46px;
}

.logintitleright {
    background: url(images/logintitlerightbg.png) no-repeat;
    width: 7px;
    height: 46px;
}

.logintitlebg {
    background: url(images/logintitlecenterbg.png) repeat-x;
    color: #FFFFFF;
    font-size: 19px;
    font-weight: bold;
    padding: 0px 10px 0px 10px;
}

/************************************************
* Footer*
************************************************/
.footer {
    background: url(images/footer-bg.gif) repeat-x;
    margin: 0px 0px 0px 0px;
    padding: 0px 10px 0px 10px;
}

    .footer a {
        text-decoration: none;
        color: #fff;
        font-weight: normal;
        font-size: 12px;
    }

        .footer a:hover {
            text-decoration: underline;
            color: #fff;
            font-weight: normal;
            font-size: 12px;
        }

.footer_copy {
    color: #d0ddf3;
    font-size: 11px;
}

/************************************************
* page2 *
************************************************/
.savebtnbg {
    background: url(images/save-btn.gif) no-repeat;
    width: 59px;
    padding-bottom: 3px;
    color: #28303f;
    font-size: 11px;
    font-weight: bold;
}

    .savebtnbg a {
        text-decoration: none;
        display: block;
        color: #28303f;
        font-size: 11px;
        font-weight: bold;
    }

        .savebtnbg a:hover {
            text-decoration: none;
            display: block;
            color: #000;
            font-size: 11px;
            font-weight: bold;
        }

.deletebtnbg {
    background: url(images/delete-btn.gif) no-repeat;
    width: 59px;
    padding-bottom: 3px;
    color: #28303f;
    font-size: 11px;
    font-weight: bold;
}

    .deletebtnbg a {
        text-decoration: none;
        display: block;
        color: #28303f;
        font-size: 11px;
        font-weight: bold;
    }

        .deletebtnbg a:hover {
            text-decoration: none;
            display: block;
            color: #000;
            font-size: 11px;
            font-weight: bold;
        }

.printbtnbg {
    background: url(images/print-btn.gif) no-repeat;
    width: 59px;
    padding-bottom: 3px;
    color: #28303f;
    font-size: 11px;
    font-weight: bold;
}

    .printbtnbg a {
        text-decoration: none;
        display: block;
        color: #28303f;
        font-size: 11px;
        font-weight: bold;
    }

        .printbtnbg a:hover {
            text-decoration: none;
            display: block;
            color: #000;
            font-size: 11px;
            font-weight: bold;
        }

.form_lable {
    font-size: 11px;
}

.box_ltborder {
    background: url(images/lt-bg.gif) repeat-y;
}

.box_rtborder {
    background: url(images/rt-bg.gif) repeat-y;
}

.box_btmborder {
    background: url(images/btm-mid.gif) repeat-x;
}

.box-topborder {
    background: url(images/top-mid.gif) repeat-x;
}

.box_midpadd {
    padding: 0px 10px 5px 10px;
}

/************************************************
* Grid related Class *
************************************************/
input {
    border: #6b85b5 1px solid;
    padding: 3px;
    color: #000;
    font-size: 12px;
}

    input[type="submit"], input[type="button"] {
        cursor: pointer;
    }
/* default class for the textboxes for whole project */
textarea {
    border: #6b85b5 1px solid;
    padding: 3px;
    font-size: 12px;
    color: #fff;
}
/* default class for the textarea for whole project */
select {
    border: #6b85b5 1px solid;
    padding: 3px;
    font-size: 12px;
    color: #000;
}
/* default class for the list menu/dropdown(like to select countries or state) for whole project */
.inputbutton {
    cursor: pointer;
    color: #fff;
    text-align: center;
    background: url(images/input-bg.gif) repeat-x top #0e1828;
    border: none;
    padding: 4px 0px 4px 0px;
    font-size: 11px;
    font-weight: bold;
}
/* to make custom type of inputbutton for whole project */
.filterbtn {
    width: 82px;
    height: 23px;
}

.submitbtn {
    width: 70px;
    height: 23px;
}

.mandatory {
    color: #990000;
    font-weight: bold;
    font-size: 11px;
}
/* to display mandatory things in the form, like "*"  */
.label {
    color: #999999;
    font-weight: bold;
    text-align: left;
}
/* to give the class for fields label  */
.dottedline {
    background: url(images/dotted.gif) repeat-x top;
    height: 9px;
}
/* for dotted lines */
.border {
    border-left: 1px solid #a2a2a2;
    border-bottom: 1px solid #a2a2a2;
}
/* common class to use border in the whole project */
.nobg {
    background: none;
    border: none;
    margin: 0px;
    padding: 0px;
}
/* to give remove the background color or border of CHECKBOX and RADIO BUTTON */
.sfont {
    font-size: 10px;
    color: #ccc;
    font-style: italic;
}
/* for small grey font like to write comments near textfield in the grid */
.altbg {
    background-color: #f1f7fe;
    font-size: 11px;
    border-top: 1px solid #b8d6f9;
    vertical-align: top;
}
/* for grid's alternate raw */
.nrlbg {
    background-color: #fff;
    font-size: 11px;
    vertical-align: top;
    border-top: 1px solid #b8d6f9;
}
/* for grid's normal raw */
.gridheaderbg {
    background: #dcdbdb;
    border-right: 1px solid #a2a2a2;
    border-top: 1px solid #a2a2a2;
    color: #0d182f;
    font-weight: bold;
    font-size: 11px;
}
/* for the image or background color of grid's header */
.gridborder {
    border-right: 1px solid #a2a2a2;
    border-top: 1px solid #a2a2a2;
    color: #0d182f;
    font-size: 11px;
}

.bordertop {
    border-top: 1px solid #fff;
    padding: 0px;
    color: #0d182f;
    font-size: 11px;
}

.button {
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
}

    .button a {
        color: #fff;
        background: #204a7a;
        border: 1px solid #68a1e1;
        font-size: 11px;
        font-weight: bold;
        padding: 4px 12px 4px 12px;
        display: block;
        text-decoration: none;
    }

        .button a:hover {
            color: #fff;
            background: #5284c1;
            border: 1px solid #204a7a;
            font-size: 11px;
            font-weight: bold;
            padding: 4px 12px 4px 12px;
            display: block;
            text-decoration: none;
        }
/**************************************************
* Tab menu related class
**************************************************/
.tabcontent {
}

.iframe {
    height: 100%;
    width: 100%;
    overflow: auto;
    border-style: none;
    z-index: 997;
    background-color: #fff;
    border-style: none;
    position: relative;
}
/**************************************************
* Devloper created
**************************************************/
.successLabel {
    border: 2px solid green;
    color: green;
    margin: 5px 0px;
    padding: 5px;
    margin-right: 15px;
    margin-left: 15px;
}

.errorsLabel {
    border: 2px solid #761211;
    color: #761211;
    margin: 5px 0px;
    padding: 5px;
    margin-right: 15px;
    margin-left: 15px;
}

.ListSearchExtenderPrompt {
    background-color: #e2e2e2;
    font-size: 11px;
}

.Login_successLabel,.Login_successLabel.validator {
    color: #339c2d;
}




/* ===================================================================================================================================== */
/* ========================================================= new ui stylesheet ========================================================= */
/* ========================================================== date 28-01-2020 ========================================================== */
/* ===================================================================================================================================== */

/*font declaration*/
/* cyrillic-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular'), url(fonts/KFOmCnqEu92Fr1Mu72xKOzY.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular'), url(fonts/KFOmCnqEu92Fr1Mu5mxKOzY.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular'), url(fonts/KFOmCnqEu92Fr1Mu7mxKOzY.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular'), url(fonts/KFOmCnqEu92Fr1Mu4WxKOzY.woff2) format('woff2');
    unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular'), url(fonts/KFOmCnqEu92Fr1Mu7WxKOzY.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular'), url(fonts/KFOmCnqEu92Fr1Mu7GxKOzY.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular'), url(fonts/KFOmCnqEu92Fr1Mu4mxK.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'), local('Roboto-Bold'), url(fonts/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'), local('Roboto-Bold'), url(fonts/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'), local('Roboto-Bold'), url(fonts/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'), local('Roboto-Bold'), url(fonts/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2) format('woff2');
    unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'), local('Roboto-Bold'), url(fonts/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'), local('Roboto-Bold'), url(fonts/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'), local('Roboto-Bold'), url(fonts/KFOlCnqEu92Fr1MmWUlfBBc4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular'), url(fonts/KFOmCnqEu92Fr1Mu4mxM.woff) format('woff');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Roboto Medium'), local('Roboto-Medium'), url(fonts/KFOlCnqEu92Fr1MmEU9fBBc-.woff) format('woff');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'), local('Roboto-Bold'), url(fonts/KFOlCnqEu92Fr1MmWUlfBBc-.woff) format('woff');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'), local('Roboto-Regular'), url(fonts/KFOmCnqEu92Fr1Mu4mxM.woff) format('woff');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Roboto Medium'), local('Roboto-Medium'), url(fonts/KFOlCnqEu92Fr1MmEU9fBBc-.woff) format('woff');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'), local('Roboto-Bold'), url(fonts/KFOlCnqEu92Fr1MmWUlfBBc-.woff) format('woff');
}


* {
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    font-size: 100%;
    font: inherit;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 18px;
    background: #f4f4f4;
    color: #4f4f4f;
}

table, .ddsmoothmenu, .leftmenu_bg, .leftmenu_bg_last, textarea {
    font-family: inherit;
}

button, input[type="button"] {
    cursor: pointer;
    margin: 0;
}

    button:hover, button:focus, button:active, a:hover, a:focus, a:active, input[type="button"]:hover, input[type="button"]:focus, input[type="button"]:active, input[type="image"]:hover, input[type="image"]:focus, input[type="image"]:active {
        outline: 0;
    }

.iframe {
    display: block;
}

.clearfix:before {
    content: "";
    clear: both;
    display: table;
}

.clearfix:after {
    content: "";
    clear: both;
}

/*hidden things*/
#tdLeftNav, #tdRightNav, #ucHeader_removeCss1, #ucHeader_tdbtnHomespace, .hidden-block {
    display: none;
}

/*buttons*/
.btn {
    font-size: 14px;
    padding: 8px 10px;
    line-height: 20px;
    transition: all 0.3s ease;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}

    .btn:hover, .btn:focus, .btn:active {
        outline: 0;
        text-decoration: none;
    }

.btn-default {
    border: 1px solid #cbcbcb;
    background: #fff;
    color: #4f4f4f;
}

    .btn-default:hover, .btn-default:focus, .btn-default:active {
        background: #f2f2f2;
        border-color: #999;
    }

.btn-primary {
    border: 1px solid #5371bb;
    background: #5371bb;
    color: #fff;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
        background: #4760a1;
        border-color: #4760a1;
    }

.btn-block {
    display: block;
    width: 100%;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    font-size: 12px;
    line-height: 16px;
    padding: 6px 8px;
}

/*general*/
#ucUserHeaderNavigation_trIcon {
    background: #FFCC00;
}

#ucUserHeaderNavigation_imgCompanyLogo {
    display: inline-block;
    vertical-align: top;
    height: auto !important;
    max-height: 48px;
    padding: 0;
    width: auto !important;
    margin: 4px 0;
}

.main-layout {
    padding: 15px 10px 0 235px;
    background: none;
    transition: all 0.3s ease;
}

.text-nowrap {
    white-space: nowrap;
}

.content_mainbg {
    background: #fff;
    border: 0;
    box-shadow: 0 4px 4px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
    padding: 0;
}

.table-text-nowrap {
    max-width: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

iframe {
    outline: 0 !important;
}

/*nav toggle*/
.nav-toggle {
    display: inline-block;
    vertical-align: top;
    background: none;
    border: 0;
    padding: 21px 10px;
    width: 44px;
    margin-right: -10px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

    .nav-toggle:hover, .nav-toggle:focus, .nav-toggle:active {
        background: rgba(0,0,0,0.08);
    }

    .nav-toggle > span {
        display: block;
        height: 2px;
        background: #fff;
    }

        .nav-toggle > span + span {
            margin-top: 4px;
        }

/*right nav*/
#ucUserHeaderNavigation_trIcon .right-nav {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #D40511 !important;
    float: right;
    white-space: nowrap;
}

    #ucUserHeaderNavigation_trIcon .right-nav > li {
        display: inline-block;
        border-right: 1px solid #fff;
        white-space: normal;
        vertical-align: top;
        float: left;
    }


        #ucUserHeaderNavigation_trIcon .right-nav > li:last-child {
            border-right: 0;
        }

        #ucUserHeaderNavigation_trIcon .right-nav > li .icon-btn {
            padding: 11px;
            display: block;
            transition: all 0.3s ease;
        }

            #ucUserHeaderNavigation_trIcon .right-nav > li .icon-btn:hover, #ucUserHeaderNavigation_trIcon .right-nav > li .icon-btn:focus, #ucUserHeaderNavigation_trIcon .right-nav > li .icon-btn:active {
                background: rgba(0,0,0,0.08);
            }

            #ucUserHeaderNavigation_trIcon .right-nav > li .icon-btn > img {
                height: 34px;
                width: 34px;
                display: block;
            }

    #ucUserHeaderNavigation_trIcon .right-nav > .database-name {
        padding-right: 10px;
        min-height: 56px;
    }

        #ucUserHeaderNavigation_trIcon .right-nav > .database-name > span {
            display: block;
            max-width: 200px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            opacity: 0.7;
            padding: 20px 0 18px;
        }

    #ucUserHeaderNavigation_trIcon .right-nav .user-btn {
        background: rgba(0,0,0,0.08);
        padding-left: 14px;
        vertical-align: middle;
        white-space: nowrap;
    }

        #ucUserHeaderNavigation_trIcon .right-nav .user-btn > .user-icon {
            height: 34px;
            width: 34px;
            margin: 9px 8px 9px 0;
        }

        #ucUserHeaderNavigation_trIcon .right-nav .user-btn > .user-icon, #ucUserHeaderNavigation_trIcon .right-nav #welcomeLabel, #ucUserHeaderNavigation_trIcon .right-nav .logout-link {
            display: inline-block;
            vertical-align: middle;
        }

    #ucUserHeaderNavigation_trIcon .right-nav #welcomeLabel {
        font-size: 16px;
        line-height: 22px;
        max-width: 160px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    #ucUserHeaderNavigation_trIcon .right-nav .logout-link > .icon-btn {
        padding-left: 6px;
        padding-right: 6px;
        margin-left: 6px;
        margin-right: 6px;
    }

#ucUserHeaderNavigation_trIcon .company-name {
    font-size: 28px;
    text-align: center;
    color: #D40511 !important;
    line-height: 34px;
}

    #ucUserHeaderNavigation_trIcon .company-name > span {
        display: block;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        max-width: 100%;
    }

.master-header {
    table-layout: fixed;
}

/*footer section*/
.header {
    background: transparent;
    padding: 0 140px 0 10px;
}

    .header .right-nav > tbody > tr > td {
        padding: 10px 0 10px 6px;
    }

    .header .left-block {
        font-size: 14px;
        color: #888888;
        line-height: 18px;
    }

/*primary link*/
.primary-link {
    color: #5371bb;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
}

    .primary-link:hover, .primary-link:focus, .primary-link:active {
        color: #364d87;
        text-decoration: none;
    }

/*left sidebar*/
.leftside {
    position: fixed;
    display: block;
    top: 56px;
    left: 0;
    width: 220px;
    bottom: 59px;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    border: 0;
    padding: 8px 0;
    overflow: auto;
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
}

.nav-closed .leftside {
    left: -220px;
    opacity: 0;
    visibility: hidden;
}

.nav-closed .main-layout {
    padding-left: 10px;
}

.leftside .leftmenu_bg_last {
    background: none;
    padding: 0;
    height: auto;
}

.leftside .btn-go {
    height: 24px;
    width: 34px;
    padding: 0;
    border: 0;
    transition: all 0.3s ease;
    float: none;
    display:inline-block;
    vertical-align:middle;
}

    .leftside .btn-go:hover, .leftside .btn-go:focus, .leftside .btn-go:active {
        background: #f6f6f6;
    }

.leftside .checkbox-wrapper {
    white-space:nowrap;
}

.leftside .checkbox-icon {
    height: 18px;
    width: 18px;
    display: inline-block;
    vertical-align:middle;
    float: none;
    margin-right: 6px;
}

.leftside #pnlInbox {
    height: auto !important;
}

/*primary table*/
table {
    color: inherit;
}

.primary-table {
    background: none;
    font-size: 16px;
    line-height: 20px;
    border-collapse: collapse;
    border: 0;
    width: 100%;
}

    .primary-table.text-sm {
        font-size: 14px;
        line-height: 18px;
    }

    .primary-table.text-xs, .primary-table.leftaccordiantable {
        font-size: 12px;
        line-height: 16px;
    }

        .primary-table.leftaccordiantable > tbody > tr > td, .primary-table.leftaccordiantable > tbody > tr > th, .primary-table.text-xs > tbody > tr > td, .primary-table.text-xs > tbody > tr > th {
            padding: 4px 6px;
            height: 28px;
        }

    .primary-table > tbody > tr > td, .primary-table > tbody > tr > th {
        font-weight: 400;
        border: 1px solid #e3e7f1;
        padding: 6px 8px;
        height: 34px;
    }

    .primary-table > tbody > tr > th {
        font-weight: 700;
    }

    .primary-table.no-borders > tbody > tr > td, .primary-table.no-borders > tbody > tr > th {
        border: 0;
        padding-left: 0;
    }

        .primary-table.no-borders > tbody > tr > td:first-child, .primary-table.no-borders > tbody > tr > th:first-child {
            padding-left: 8px;
        }

    .primary-table > tbody > tr > td:first-child, .primary-table > tbody > tr > th:first-child {
        border-left: 0;
    }

    .primary-table > tbody > tr > td:last-child, .primary-table > tbody > tr > th:last-child {
        border-right: 0;
    }

/*collapse header*/
.collapse-header {
    font-size: 14px;
    background: #f1f3f9;
    border-top: 1px solid #e2e6f1;
    border-bottom: 1px solid #e2e6f1;
    position: relative;
}

    .collapse-header > .leftmenu_bg {
        background: none;
        font-size: inherit;
        padding: 0;
        height: auto;
    }

    .collapse-header .collapse-btn {
        display: block;
        color: #4f4f4f;
        padding: 11px;
        padding-left: 40px;
        padding-right: 36px;
    }

        .collapse-header .collapse-btn:after {
            content: "";
            position: absolute;
            height: 24px;
            width: 24px;
            left: 10px;
            top: 7px;
            background: url('images/ic-chevron-down-round.svg') center no-repeat;
            background-size: 24px 24px;
            transition: all 0.3s ease;
            transform: rotate(0deg);
        }

        .collapse-header .collapse-btn:before {
            content: "";
            position: absolute;
            height: 24px;
            width: 24px;
            left: 10px;
            top: 7px;
            background: url('images/ic-chevron-up-round.svg') center no-repeat;
            background-size: 24px 24px;
            transition: all 0.3s ease;
            transform: rotate(90deg);
            opacity: 0;
        }

    .collapse-header.open .collapse-btn:after {
        transform: rotate(90deg);
        opacity: 0;
    }

    .collapse-header.open .collapse-btn:before {
        transform: rotate(0deg);
        opacity: 1;
    }

    .collapse-header .refresh-btn > input {
        display: block;
        transition: all 0.3s ease;
        height:30px;
        width:30px;
        border-radius:500px;
        background:url('images/ic-refresh.svg') center no-repeat;
        background-size:24px 24px;
    }
    
    .collapse-header .refresh-btn > input.rotating
    {
        animation:rotation 1s infinite ease;
        -webkit-animation:rotation 1s infinite ease;
        -moz-animation:rotation 1s infinite ease;
        -ms-animation:rotation 1s infinite ease;
        background-image:url('images/ic-refresh-blue.svg');
    }
    .collapse-header .refresh-btn > input.rotating:hover, .collapse-header .refresh-btn > input.rotating:focus, .collapse-header .refresh-btn > input.rotating:active
    {
        background-color:transparent;
    }

        .collapse-header .refresh-btn > input:hover, .collapse-header .refresh-btn > input:focus, .collapse-header .refresh-btn > input:active {
            background-color: rgba(0,0,0,0.06);
        }

    .collapse-header .refresh-btn {
        position: absolute;
        top: 5px;
        right: 6px;
    }
    
    @-webkit-keyframes rotation {
		from {
				-webkit-transform: rotate(0deg);
				-ms-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(359deg);
				-ms-transform: rotate(359deg);
		}
}
@keyframes rotation {
		from {
				-webkit-transform: rotate(0deg);
				-ms-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(359deg);
				-ms-transform: rotate(359deg);
		}
}
@-ms-keyframes rotation {
		from {
				-webkit-transform: rotate(0deg);
				-ms-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(359deg);
				-ms-transform: rotate(359deg);
		}
}
@-moz-keyframes rotation {
		from {
				-webkit-transform: rotate(0deg);
				-ms-transform: rotate(0deg);
		}
		to {
				-webkit-transform: rotate(359deg);
				-ms-transform: rotate(359deg);
		}
}

/*primary tab*/
#tblMenu.primary-tab {
    table-layout: fixed;
    position: relative;
    z-index: 0;
    font-size: 13px;
}

.primary-tab .content_navborder {
    display: none;
}

.primary-tab .content_nav a {
    display: block;
    background: #dfe1e6;
    color: #D40511 !important;
    padding: 10px 0 10px 8px;
    position: relative;
    margin-right: 14px;
    border-top-left-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: none;
    border: 0;
    line-height: inherit;
    height: auto;
}

    .primary-tab .content_nav a > span {
        display: block;
        white-space: nowrap;
        position: relative;
        z-index: 1;
        text-overflow: ellipsis;
        overflow: hidden;
        max-width: 100%;
    }

    .primary-tab .content_nav a:hover, .primary-tab .content_nav a:focus, .primary-tab .content_nav a:active, .primary-tab .content_nav a:hover:after, .primary-tab .content_nav a:focus:after, .primary-tab .content_nav a:active:after {
        background: #d1d4db;
    }

    .primary-tab .content_nav a:after {
        position: absolute;
        content: "";
        right: -14px;
        top: 0;
        width: 14px;
        height: 100%;
        background: #dfe1e6;
        transform: skewX(18deg);
        transform-origin: left bottom;
        z-index: 0;
        border-top-right-radius: 6px;
        transition: all 0.3s ease;
        box-shadow: none;
    }

    .primary-tab .content_nav a.active {
        background: #fff;
        box-shadow: 0 0 5px rgba(0,0,0,0.15);
    }

        .primary-tab .content_nav a.active > span {
            font-weight: 700;
            color: #D40511 !important;
        }

        .primary-tab .content_nav a.active:after {
            background: #fff;
            box-shadow: 2px 1px 3px rgba(0,0,0,0.09);
        }

/*login*/
.login-wrapper {
    display: table;
    min-height: 100vh;
    height: 100vh;
    position: relative;
    width: 100%;
    table-layout: fixed;
    background: #748fd1; /* Old browsers */
    background: -moz-linear-gradient(top, #748fd1 0%, #1b3b5d 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #748fd1 0%,#1b3b5d 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #748fd1 0%,#1b3b5d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#748fd1', endColorstr='#1b3b5d',GradientType=0 ); /* IE6-9 */
}

    .login-wrapper:before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: block;
        background: url('images/primary-abstract-art.png') center no-repeat;
        background-size: cover;
        z-index: 0;
    }

    .login-wrapper > .login-inner {
        display: table-cell;
        vertical-align: middle;
        position: relative;
        z-index: 1;
        width: 100%;
        padding: 30px 15px;
    }

    .login-wrapper .content-holder {
        max-width: 400px;
        background: #ffffff;
        margin: 0 auto;
        border-radius: 12px;
        padding: 30px 40px;
        text-align: center;
    }

    .login-wrapper .brand {
        display: block;
        margin: 0 auto;
        max-height: 86px;
        max-width: 100%;
    }

    .login-wrapper .form-wrapper {
        text-align: left;
    }

    .login-wrapper .upper-block {
        font-size: 20px;
        line-height: 26px;
        color: #231f20;
    }

        .login-wrapper .upper-block > p {
            margin: 0;
            padding: 20px 0 30px;
        }

    .login-wrapper .validator {
        padding-top: 20px;
    }

    .login-wrapper .upper-block > p > span {
        display: block;
        color: #1c3b5e;
        font-size: 22px;
        line-height: 28px;
        font-weight: 700;
    }

    .login-wrapper .upper-block > p > small {
        font-size: 16px;
        line-height: 24px;
        padding-top: 2px;
        display: block;
    }

    .login-wrapper .primary-link {
        margin-top: 14px;
    }

.form-group {
    padding-bottom: 15px;
}

.form-control {
    border: 1px solid #e1e1e1;
    transition: all 0.3s ease;
    font-size: 14px;
    height: 38px;
    background: #fff;
    width: 100%;
    padding: 6px 12px;
    color: #4f4f4f;
    border-radius: 2px;
}

    .form-control:focus {
        border-color: #5371bb;
    }

input:focus, button:focus, select:focus, textarea:focus, a:focus {
    outline: 0;
}

.validator, .validator-group > ul > li {
	/* color: #fe3b3b; */
	color: #d40511;
    display: block;
}

.validator-group > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pt-20 {
    padding-top: 20px;
}

strong, b {
    font-weight: 700;
}

.ml-5
{
    margin-left: 5px;
}

.ml-10
{
    margin-left: 10px;
}

.span-its-checkbox input[type="checkbox"] + label, .its-checkbox + label{
    position: relative;
    cursor: pointer;
    font-weight: 400;
}

.span-its-checkbox input[type="checkbox"] + label:before, .span-its-checkbox input[type="checkbox"] + label:after, .its-checkbox + label:before, .its-checkbox + label:after {
        content: "";
        height: 20px;
        width: 20px;
        border-radius: 2px;
        display: block;
        position: absolute;
        transition: all 0.3s ease;
        box-sizing: border-box;
        top: -2px;
        left: -26px;
    }
    
    .span-its-checkbox input[type="checkbox"], .its-checkbox {
        opacity: 0;
        margin-left: 8px;
        cursor: pointer;
    }
    
    .span-its-checkbox input[type="checkbox"] + label:before, .its-checkbox + label:before {
        border: 1px solid #cbcbcb;
        background: #fff;
    }

    .span-its-checkbox input[type="checkbox"] + label:after, .its-checkbox + label:after {
        opacity: 0;
        background: url('images/ic-checkmark.svg') center no-repeat;
        background-size: 20px 20px;
    }

.span-its-checkbox input[type="checkbox"]:focus, .its-checkbox:focus {
    box-shadow: none;
}

    .span-its-checkbox input[type="checkbox"]:focus + label:before, .its-checkbox:focus + label:before {
        border-color: #5371bb;
        background: #eaeef7;
    }

.span-its-checkbox input[type="checkbox"]:checked + label:before, .its-checkbox:checked + label:before {
    background: #5371bb;
    border-color: #5371bb;
}

.span-its-checkbox input[type="checkbox"]:focus + label:before, .its-checkbox:checked:focus + label:before {
    background: #29417d;
    border-color: #29417d;
}

.span-its-checkbox input[type="checkbox"]:checked + label:after, .its-checkbox:checked:focus + label:after {
    opacity: 1;
}

.floatL
{
    float: left;
}