*
{
    box-sizing: border-box;
}

*:focus
{
    outline: none;
}
.login
{
    margin: 20px auto;
    width: 300px;
}
.login-screen
{
    background-color: #34d7db;
    padding: 1px;
    border-radius: 5px;
}

.app-title
{
    text-align: center;
    color: #777;
}

.login-form
{
    text-align: center;
}
.control-group
{
    margin-bottom: 10px;
}

input
{
    background-color: #ecf0f1;
    border: 2px solid transparent;
    border-radius: 3px;
    padding: 4px 0 0;
    transition: border 0.5s ease 0s;
    /*width: 250px;*/
}
.NameTxt
{
    width: 205px !important;
}

input:focus
{
    border: 2px solid #3498DB;
    box-shadow: none;
}
input[type="password"]
{
    background-color: #ecf0f1;
    border: 2px solid #d3d3d3 !important;
    border-radius: 3px;
    padding: 4px 0 0;
    transition: border 0.5s ease 0s;
    width: 250px;
}

input[type="password"]:focus
{
    border: 2px solid #3498DB;
    box-shadow: none;
}
.btn
{
    border: 2px solid transparent;
    background: #3498DB;
    color: #ffffff;
    font-size: 16px;
    line-height: 25px;
    padding: 10px 0;
    text-decoration: none;
    text-shadow: none;
    border-radius: 3px;
    box-shadow: none;
    transition: 0.25s;
    display: block;
    width: 250px;
    margin: 0 auto;
}

.btn:hover
{
    background-color: #2980B9;
}
.btn-small
{
    border: 2px solid transparent;
    background: #3498DB;
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
    line-height: 15px;
    padding: 10px 5px;
    text-decoration: none;
    text-shadow: none;
    border-radius: 3px;
    box-shadow: none;
    transition: 0.25s;
    width: auto;
}
btn-smallViewDetail
{
   border: 2px solid transparent;
   background: #3498DB;
   color: #ffffff;
   font-size: 11px;
   font-weight: bold;
   line-height: 10px;
   padding: 5px 2px;
   text-decoration: none;
   text-shadow: none;
   border-radius: 10px;
   box-shadow: 0px 3px 0px #2b638f;  
   transition: 0.25s;
   width: auto;
}
.btn-smallViewDetail
{
    border: 2px solid transparent;
    background: #3498DB;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    line-height: 10px;
    padding: 5px 2px;
    text-decoration: none;
    text-shadow: none;
    border-radius: 10px;
    box-shadow: 0px 3px 0px #2b638f;   
    transition: 0.25s;
    width: auto;
}

div .block
{
    display: flex;
    align-items: center;
    justify-content: center;
}
.block
{
    margin: 0 auto;
    display: block;
}
.btn-small:hover
{
    background-color: #2980B9;
}

.btn-addon-small
{
    border: 2px solid transparent;
    background: #B9D3EE;
    color: #000;
    font-size: 13px;
    line-height: 13px;
    padding: 10px 3px;
    text-decoration: none;
    text-shadow: none;
    border-radius: 3px;
    box-shadow: none;
    transition: 0.25s;
    width: auto;
}

.btn-addon-small:hover
{
    background-color: #75A1D0;
}

.login-link
{
    font-size: 12px;
    color: #444;
    display: block;
    margin-top: 12px;
}

.modalDialog
{
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    opacity: 1;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
}
.modalDialogOutLetProgress > div
{
    opacity: 1;
    width: 1000px;
    height: 620px;
    position: relative;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #fff;
    background: -moz-linear-gradient(#fff, #999);
    background: -webkit-linear-gradient(#fff, #999);
    background: -o-linear-gradient(#fff, #999);
}
.modalDialog > div
{
    opacity: 1;
    width: 400px;
    height: 450px;
    position: relative;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #fff;
    background: -moz-linear-gradient(#fff, #999);
    background: -webkit-linear-gradient(#fff, #999);
    background: -o-linear-gradient(#fff, #999);
}
.close
{
    background: #606061;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}
.close:hover
{
    background: #00d9ff;
}

.mandatory:after
{
    color: Red;
    content: '*';
}

select
{
    width: 250px;
    border: 1px solid #CFCFCF;
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
    -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
    -o-transition: border linear 0.2s, box-shadow linear 0.2s;
    transition: border linear 0.2s, box-shadow linear 0.2s;
    padding: 4px 0 0;
}
.margin
{
    margin: 5px;
}
i
{
    font-size: 20px;
}
fieldset
{
    font-family: sans-serif; /*   border: 1px solid grey;*/
    border-radius: 5px;
    padding: 15px;
    border: 1px dashed #A8A8A8;
    width: auto;
}

fieldset legend
{
    padding: 5px 10px;
    border-radius: 5px;
    background: #ddd;
    color: Black !important;
    font-weight: bold;
    border: 1px dashed #A8A8A8;
    margin-left: 20px;
}

fieldset ul
{
    list-style: none;
}
fieldset li
{
    float: left;
    margin-left: 2px;
    padding: 3px;
    text-align: justify;
    word-wrap: break-word;
}

textarea
{
    width: 250px;
}
input[type="checkbox"], input[type="radio"]
{
    width: 20px;
}
.content-center
{
    display: flex;
    justify-content: center; /* align horizontal */
    align-items: center; /* align vertical */
}

.content-center tr td
{
    padding-right: 10px;
}

.content-center tr th
{
    background-color: #B7CDEF !important;
    font-weight: bold;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 35px;
}

/* Accordion starts here */
.accordionHeader
{
    border: 1px solid #2F4F4F;
    color: white;
    background-color: #577095;
    font-family: Arial, Sans-Serif;
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
    margin-top: 5px;
    cursor: pointer;
}

.accordionHeader a
{
    color: #FFFFFF;
    background: none;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
}

.accordionHeader a:hover
{
    background: none;
    text-decoration: underline;
    font-weight: bold;
}

.accordionHeaderSelected
{
    border: 1px solid #2F4F4F;
    color: white;
    background-color: #5078B3;
    font-family: Arial, Sans-Serif;
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
    margin-top: 5px;
    cursor: pointer;
}

.accordionHeaderSelected a
{
    color: #FFFFFF;
    background: none;
    text-decoration: none;
    font-size: 15px;
}

.accordionHeaderSelected a:hover
{
    background: none;
    text-decoration: underline;
}

.accordionContent
{
    background-color: #D3DEEF;
    border: 1px dashed #2F4F4F;
    border-top: none;
    padding: 5px;
    padding-top: 10px;
}
/* Accordion ends here */

.label
{
    font-weight: bold;
}
input[readonly], input[readonly="readonly"], input[disabled="disabled"], select[readonly="true"]
{
    background-color: #E0E0E0;
    cursor: pointer;
}
input[type="submit"][disabled="disabled"]
{
    color: Gray;
}

.aspNetDisabled > div
{
    background: grey;
    z-index: 99999;
    opacity: 1;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
}
.autoWidth
{
   
    width: auto;
  
}
.left
{
    float: left;
    margin-left: 50px;
}
.right
{
    float: right;
    margin-right: 50px;
    margin-bottom: 50px;
}
input[type="submit"][value="Back"]
{
    background-color: mediumturquoise;
    color: Black;
}
input[type="submit"][value="Create"]
{
    background-color: mediumturquoise;
    color: Black;
}
input[type="submit"][value="Cancel"]
{
    background-color: #ff4c4c;
    color: White;
}
input[type="submit"][value="Upload"]
{
    background-color: #094e7f;
    color: White;
}
.logged
{
    margin-top: 3px;
    float: right; /*     margin-right: 50px;     margin-bottom: 50px; */
    font-size: 15px;
    /*color: mediumturquoise;*/
    color: White;
}
.logged_Left
{
    margin-top: 3px;
    float: left; /*     margin-right: 50px;     margin-bottom: 50px; */
    font-size: 15px;
    /*color: mediumturquoise;*/
    color: White;
}

.logged span
{
    font-style: normal !important;
}
.logOut
{
    color: Red;
    font-size: 30px;
}
.alignTop
{
    vertical-align: top;
}

/*AutoComplete starts here */

.completionList
{
    overflow: auto;
    background-color: #D3DEEF;
    margin-left: 0px !important;
}

.listItem
{
    line-height: 20px;
}

.itemHighlighted
{
    background-color: #B7CDEF;
    font-weight: bold;
}

/*AutoComplete ends here */

.lblPaneTotal
{
    font-weight: bold;
    color: White;
    float: right;
    font-size: 18px;
}

/* Link Button Background */
.lnkBtnBkgrnd
{
    background-color: #e0e7f3;
    padding: 5px;
    border-radius: 25px;
    border: 2px solid #094e7f;
    font-weight: bold;
}

/* ******* inner css ******** */
.innerTable
{
    display: flex;
    justify-content: center; /* align horizontal */
    align-items: center; /* align vertical */
}
.innerTable tr:nth-child(even)
{
    background-color: #fff;
}
.innerTable tr:nth-child(odd)
{
    background-color: #E0E7F3;
}
.innerTable tr th
{
    background-color: #B7CDEF !important;
    font-weight: bold;
    font-size: 13.5px;
    line-height: 35px;
    padding-left: 20px;
    padding-right: 20px;
}
.innerTable tr td
{
    text-align: center;
    padding: 5px;
}

/* ***************** */

td[rowspan="2"]
{
    vertical-align: middle !important;
}


/* **** calender Css starts here  *** */

.ajax__calendar_month
{
    width: 30px !important;
}

.ajax__calendar_container
{
    height: 190px !important;
}

/* **** calender Css ends here  *** */

/* ***** web-style css starts here ********* */
       .srives_bg
        {
            width: 100%;
            float: left;
            background: #D0EBF4;
            color: #094E7F;
            margin-bottom: 15px;
        }
        .srives_bg h1
        {
            width: 100%;
            background: #094E7F;
            color: #FFFFFF;
            text-align: center;
            font-weight: 600;
            line-height: 38px;
            margin: 0px;
            font-size: 18px;
            border-bottom: none;
            padding: 0px;
        }
        .srives_bg_in
        {
            width: 100%;
            float: left;
            padding: 10px;
            line-height: 2;
             font-family: Arial, Sans-Serif;
        }
        .srives_bg_in p
        {
            border-bottom: 1px solid #094E7F;
            text-align: inherit;
            height:500px;
            
        }
        .srives_bg_in p a
        {
            color: #094E7F;
            
        }
        
        .srives_bg1
        {
            width: 100%;
            float: left;
            margin-bottom: 15px;
            
        }
        .srives_bg1 h4
        {
            width: 100%;
            background: #094E7F;
            color: #FFFFFF;
            text-align: center;
            text-transform: uppercase;
            font-weight: 600;
            line-height: 38px;
            margin: 0px;
            font-size: 18px;
            border-bottom: none;
            padding: 0px;
            
        }
        .srives_bg_in1
        {
            width: 100%;
            float: left;
            padding: 10px;
            background: #D0EBF4;
            color: #094E7F;
        }
        .srives_bg_in1 p
        {
            text-align: lef;
        }
        .srives_bg_in1 p a
        {
            color: #094E7F;
        }
        
        .welcome
        {
            width: 100%;
            float: left;
        }
        
        .page h1
        {
            font-size: 18px;
            font-family: Open Sans;
            line-height: 38px;
            font-weight: 600;
            width: 100%;
            background: #094E7F;
            color: #FFFFFF;
            padding-left: 15px;
            margin: 0 0 15px 0;
        }
        
        
         /*Manish Start 17-05*/
        
        .txtwidth
        {
            background-color: #ecf0f1;
            border: 2px solid transparent;
            border-radius: 3px;
            padding: 4px 0 0;
            transition: border 0.5s ease 0s;
            width: 80px;
        }
        .txtwidthRemark
        {
            background-color: #ecf0f1;
            border: 2px solid transparent;
            border-radius: 3px;
            padding: 4px 0 0;
            transition: border 0.5s ease 0s;
            width: 200Px;
            
        }
        .ddlSelectwidth
        {
            width: 130px;
            border: 1px solid #CFCFCF;
            -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
            -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
            -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
            -o-transition: border linear 0.2s, box-shadow linear 0.2s;
            transition: border linear 0.2s, box-shadow linear 0.2s;
            padding: 4px 0 0;
        }
         .alincen
            {
            text-align:center;
            }
        
        .modalDialog11
{
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    opacity: 1;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
}

.modalDialog11 > div
{
    opacity: 1;
    width: 470px;
    height: 200px;
    position: relative;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #fff;
    background: -moz-linear-gradient(#fff, #999);
    background: -webkit-linear-gradient(#fff, #999);
    background: -o-linear-gradient(#fff, #999);
}
   input[type="submit"][value="No"]
{
    background-color: #ff4c4c;
    color: White;
} 
        /*Manish End 17-05*/
/* ****************** */
/*Manish Start 12-05-2020*/
body[data="User"] #header 
{
    /*background: #062006;*/
    background:#26a541!important;
} 

body[data="User"] #copyright, body[data="User"] #copyright p, body[data="User"] #copyright a 
{
    background:#26a541!important;
}

/* ****************** */