﻿.example-modal .modal {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    display: block;
    z-index: 1;
}

.example-modal .modal {
    background: transparent !important;
}
/*.ui-grid-header-cell-wrapper {
    width: 100%;
}*/
.gridStyle {
    border: 1px solid rgb(212,212,212);
    width: 1080px;
    /* width:100%; if this width use then grid shrink not proper display
    text-align:center;*/
    height: 500px;
    overflow: scroll;
}
/*Grid style width custom edit for diff. resolution
@media (max-width:640px) and (min-width:320px) */
@media only screen and (min-width:768px) {
    .gridStyle {
        width: auto;
    }
}
@media only screen and (min-width:1440px) {
    .gridStyle {
        width: 1235px;
    }
}

@media only screen and (min-width:1540px) {
    .gridStyle {
        width: 1410px;
    }
}

@media only screen and (min-width:1640px) {
    .gridStyle {
        width: 1500px;
    }
}

@media only screen and (min-width:1740px) {
    .gridStyle {
        width: 1990px;
    }
}

@media only screen and (min-width:1840px) {
    .gridStyle {
        width: 2440px;
    }
}

/*End of Grid style width custom edit for diff. resolution*/

.custom-select {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    zoom: 1;
    *display: inline;
    width: 220px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.drivermstselct {
    width: 100%;
}

.custom-select.small {
    width: 104px;
}

.custom-select.medium {
    width: 164px;
}

.custom-select.large {
    width: 300px;
}

.custom-select.xlarge {
    width: 380px;
}

.custom-select > select {
    display: none !important;
}

.custom-select > a.dropdown-toggle {
    border-radius: 0;
    line-height: 28px;
    box-shadow: none;
    background: #ffffff;
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 0 0 8px;
    border: 1px solid #d2d6de;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    color: #888;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 30px;
}

    .custom-select > a.dropdown-toggle.disabled,
    .custom-select > a.dropdown-toggle.disabled:hover {
        cursor: not-allowed;
        color: #aaa;
        background: #eee;
    }

    .custom-select > a.dropdown-toggle:hover,
    .custom-select.open > a.dropdown-toggle {
        color: #333;
    }

.custom-select.open > a.dropdown-toggle {
    border-bottom: 0;
    line-height: 29px;
}

.control-group.error .custom-select > a.dropdown-toggle {
    border-color: #f09784;
    color: #d68273;
}

.custom-select > a.dropdown-toggle > span {
    display: block;
    overflow: hidden;
    margin-right: 26px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select > a.dropdown-toggle > b {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 18px;
    height: 100%;
}

    .custom-select > a.dropdown-toggle > b:before {
        content: "\f0d7";
        display: inline-block;
        font-family: FontAwesome;
        font-size: 12px;
        position: relative;
        top: -1px;
        left: 1px;
    }

.custom-select.open > a.dropdown-toggle > b:before {
    content: "\f0d8";
}

.custom-select > .dropdown-menu {
    margin-top: 0;
    border-color: #aaa;
    border-top: 0;
    padding-bottom: 0;
    width: auto;
    min-width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0;
}

    .custom-select > .dropdown-menu > .custom-select-search {
        position: relative;
        z-index: 1010;
        margin: 0;
        padding: 0 4px;
        white-space: nowrap;
    }

        .custom-select > .dropdown-menu > .custom-select-search > input {
            width: 100%;
            height: 30px;
            margin: 0;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            padding: 4px 20px 4px 5px;
            border-radius: 0;
        }

        .custom-select > .dropdown-menu > .custom-select-search:after {
            content: "\f002";
            display: inline-block;
            color: #888;
            font-family: FontAwesome;
            font-size: 14px;
            position: absolute;
            top: 4px;
            right: 10px;
        }

    .custom-select > .dropdown-menu > ul {
        border-color: #aaa;
        border-top: 0;
        margin: 4px 0;
        padding: 0;
        list-style: none;
        background-color: #fff;
        overflow-x: hidden;
        overflow-y: auto;
        /*max-height: 240px;*/
        max-height: 125px;
        padding-right: 14px;
    }

        .custom-select > .dropdown-menu > ul > li > a {
            font-size: 13px;
            margin-bottom: 1px;
            margin-top: 1px;
            display: block;
            padding: 3px 8px;
            clear: both;
            font-weight: normal;
            line-height: 20px;
            color: #333;
            cursor: pointer;
            width: 100%;
        }
/*custom for driver employee name only*/
.drivernameautocomp .custom-select > .dropdown-menu > ul > li > a {
    display: flex;
}
/*End of custom for driver employee name only*/


.custom-select > .dropdown-menu > ul > li > a:hover,
.custom-select > .dropdown-menu > ul > li > a:focus {
    color: #fff;
    text-decoration: none;
    background-repeat: repeat-x;
}

.custom-select > .dropdown-menu > ul > li > a:hover {
    background: #4f99c6;
}

.custom-select > .dropdown-menu > ul > li > a:focus {
    background: #2283c5;
}

.custom-select > .dropdown-menu > ul > li.empty-result > em {
    text-align: center;
    padding: 4px 8px;
    display: block;
}

.custom-select > .dropdown-menu > .custom-select-action > button {
    border-radius: 0;
    background-image: none;
}

div[data-angular-treeview] {
    /* prevent user selection */
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* default 
  font-family: Tahoma;*/
    font-size: 13px;
    color: #fff;
    text-decoration: none;
}

div[data-tree-model] ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border: none;
    overflow: hidden;
}

div[data-tree-model] li {
    position: relative;
    padding: 0 0 0 16px;
    line-height: 23px;
}

    div[data-tree-model] li .expanded {
        padding: 1px 9px;
        background: url("dist/img/minus-icon.png") no-repeat scroll 3px 5px;
    }

    div[data-tree-model] li .collapsed {
        padding: 1px 9px;
        background: url("dist/img/plus-icon.png") no-repeat scroll 3px 5px;
    }

    div[data-tree-model] li .normal {
        padding: 1px 10px;
        background: url("dist/img/form-icon.png") no-repeat scroll 3px 4px;
    }

    div[data-tree-model] li i, div[data-tree-model] li span {
        cursor: pointer;
    }

.sidebar-menu div[data-tree-model] li .selected {
    /*background-color:#2c3e50;*/
    font-weight: bold;
    padding: 1px 5px;
    color: #ff9f08;
}

.sidebar-menu .ng-binding:hover {
    color: #ff9f08;
}

.sidebar-menu li .ng-scope a {
    white-space: normal;
}


/*For data-tree-file-model start*/
div[data-angular-tree-file-view] {
    /* prevent user selection */
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* default 
    font-family: Tahoma;*/
    font-size: 13px;
    color: #fff;
    text-decoration: none;
}

div[data-tree-file-model] ul {
    margin: 0;
    padding: 0 0 0 15px;
}

div[data-tree-file-model] li {
    position: relative;
    padding: 0 0 0 16px;
    line-height: 20px;
}

    div[data-tree-file-model] li .expanded {
        padding: 1px 9px;
        background: url("dist/img/minus-icon-black.png") no-repeat scroll 0px 2px;
    }

    div[data-tree-file-model] li .collapsed {
        padding: 1px 9px;
        background: url("dist/img/plus-icon-black.gif") no-repeat scroll 0px 2px;
    }

    div[data-tree-file-model] li .normal {
        padding: 1px 9px;
        background: url("dist/img/form-icon-black.png") no-repeat scroll 3px 3px;
    }

    div[data-tree-file-model] li i, div[data-tree-file-model] li span {
        cursor: pointer;
    }

    div[data-tree-file-model] li .selected {
        background-color: #aaddff;
        font-weight: bold;
        padding: 1px 5px;
        color: #ff9f08;
    }

/*For data-tree-file-model End*/


/*For data-tree-file-modify-model start*/
div[data-angular-tree-file-modify-view] {
    /* prevent user selection */
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* default 
  font-family: Tahoma;*/
    font-size: 13px;
    color: #fff;
    text-decoration: none;
}

div[data-tree-file-modify-model] ul {
    margin: 0;
    padding: 0 0 0 15px;
}

div[data-tree-file-modify-model] li {
    position: relative;
    padding: 0 0 0 16px;
    line-height: 20px;
}

    div[data-tree-file-modify-model] li .expanded {
        padding: 1px 9px;
        background: url("dist/img/minus-icon-black.png") no-repeat scroll 0px 2px;
    }

    div[data-tree-file-modify-model] li .collapsed {
        padding: 1px 9px;
        background: url("dist/img/plus-icon-black.gif") no-repeat scroll 0px 2px;
    }

    div[data-tree-file-modify-model] li .normal {
        padding: 1px 9px;
        background: url("dist/img/form-icon-black.png") no-repeat scroll 3px 3px;
    }

    div[data-tree-file-modify-model] li i, div[data-tree-file-modify-model] li span {
        cursor: pointer;
    }

    div[data-tree-file-modify-model] li .selected {
        background-color: #aaddff;
        font-weight: bold;
        padding: 1px 5px;
        color: #ff9f08;
    }


.documentfilemnu li a.btn {
    padding: 0 4px;
}

.error {
    color: #ff0000;
}
/*For data-tree-file-modify-model End*/

/*Custom css*/
.modulePage .backstretch {
    display: none;
}

.modulePage section.content {
    padding-bottom: 45px;
}

.btn-sm, .btn-group-sm > .btn {
    font-size: 13px !important;
}

.sidebar-collapse .sidebar-menu {
    display: none;
}

.modulePage .main-footer {
    margin: 0;
}

.loading {
    background: #000 none repeat scroll 0 0;
    height: 100%;
    opacity: 0.5;
    position: fixed;
    width: 100%;
    z-index: 2000;
    left: 0;
    top: 0;
}

.imgcenter {
    padding-top: 20%;
    text-align: center;
}

.tab_disable {
    pointer-events: none;
}

.custom_popup {
    width: 80% !important;
}

.table_header {
    background: #e4e4e4;
    font-weight: bold;
}

.table > thead > tr > th {
    background: #eee none repeat scroll 0 0;
    border: 1px solid #ddd !important;
}
/*.highcharts-container {
    width:100% !important;
}*/
.studentlogin {
    min-height: 610px;
}
/*Custom popup css*/
.clg_dtl .modal-dialog {
    width: 80%;
}

.clg_dtl .content-wrapper {
    margin: 0;
}

.clg_dtl .content {
    padding: 0;
    background: #fff;
}

.clg_dtl .box-body {
    padding: 0;
}
/*End of Custom popup css*/
.group-control {
    border: solid 1px #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
}
.group-control legend {
    background: none;
    width: auto;
    margin: 0;
    border: none;
}
.toggle-button, .toggle-button-1 {
    display:none;
}
.bg-primary {
    color: #333 !important;
}
.form-control.ng-valid-time {
    width: 30%;
    display: inline-block;
}

@media (min-width: 600px) and (max-width: 800px) {
    body {
        font-size: 12px !important;
    }
}

@media (max-width:768px) and (min-width:320px) {
    .mobileMenu {
        display:none !important;
    }
    .main-sidebar {
        width:100% !important;
    }
    .main-sidebar, .left-side {
        transform: translate(-320px, 0px) !important;
    }
    /*.sidebar-collapse .content-wrapper, .sidebar-collapse .right-side {
        margin-left: 370px;
    }*/
    .sidebar-collapse .main-sidebar, .sidebar-collapse .left-side {
        transform: translate(0px, 0px) !important;
    }
    /*.sidebar-collapse .main-sidebar, .sidebar-collapse .left-side {
        width: 320px !important;
    }*/
    .sidebar-collapse .sidebar-menu {
        display: block;
    }
    .captcha_txt {
        float: left;
    }
    .custom-select {
        width: 140px;
    }
    .box-header > .box-tools {
        float: right;
        position: static !important;
    }
    .comon_heading_h1 h1 {
        font-size: 19px !important;
    }
    .content-wrapper {
        min-height: 330px !important;
    }
    .login-box {
        margin-top: 0 !important;
    }
    .curremt-module-name {
        clear: both;
        width: 95%;
    }
    .box-success {
        min-height: 100px;
    }
    .navbar-custom-menu > .navbar-nav > li {
        min-height: 55px;
    }
    .nav-tabs-custom > .nav-tabs > li {
        width: 100%;
    }
    .box-body.table-responsive {
        overflow-x:scroll !important;
    }
    .main-header .logo {
        font-size:14px !important;
        padding-top: 5px !important;
    }
    .main-header .logo {
        height: 40px !important;
        line-height: 29px !important;
    }
    .toggle-button {
        display:block;
    }
    .toggle-button {
        background: transparent none repeat scroll 0 0;
        border-color: transparent;
        display: inline-block;
        padding: 5px 5px 0;
        position: absolute;
        right: 20px;
        top: 10px;
    }
    .toggle-button-1 {
        background: transparent none repeat scroll 0 0;
        border-color: transparent;
        display: inline-block;
        padding: 5px 5px 0;
        position: absolute;
        right: 20px;
        top: -32px;
    }
     button.toggle-button span, button.toggle-button-1 span {
        background: #fff none repeat scroll 0 0;
        display: block;
        height: 2px;
        margin-bottom: 5px;
        width: 20px;
    }
     .navbar-nav {
         display:none;
     }
     .navbar-static-top .container {
         padding-left:5px;
         padding-right:5px
     }
     .navbar-custom-menu .navbar-nav > li > a {
        padding: 10px 3px !important;
    }
     .navbar-custom-menu > .navbar-nav > li {
        min-height: 40px !important;
        font-size:12px;
    }
     #exlidvmodule i, #exlidvdelegate i, #lidvModuleName img, #intelidvmodule i, #intelidvdelegate i {
         display:none;
     }
     #lidvModuleName {
        height: 40px;
        overflow: hidden;
        overflow-wrap: break-word;
        width: 75px;
    }
     #lidvModuleName a {
         line-height: 14px;
         padding-top: 4px !important;
         padding-bottom: 4px !important;
     }
     #divHeader {
        padding-top: 9px;
    }
     .main-header .sidebar-toggle {
         padding:8px !important;
         font-size: 23px;
     }
     .btn-lg, .btn-group-lg > .btn {
        padding: 3px 12px !important;
    }
     .content-wrapper section.content {
         clear:both;
     }
     .custom-cal {
         display:inline-block;
         width:100%;
     }

     .sidebar-open .content-wrapper, .sidebar-open .right-side, .sidebar-open .main-footer {
        -webkit-transform:translate(0px, 0) !important;
        -ms-transform:translate(0px, 0) !important;
        -o-transform:translate(0px, 0) !important;
        transform:translate(0px, 0) !important;
    }
    .sidebar-collapse .content-wrapper, .sidebar-collapse .right-side {
        margin-left: 0;
    }
    .ConvRegistrationform, .formdegcretificate {
        width:100% !important;
    }
    .reg_container .container {
        padding:0;
    }
    .reg_container {
        width: 100% !important;
        margin: 0 !important;
    }
    .job_application {
        min-height: 142px !important;
    }
    .logo_reg img {
        width: 40px !important;
    }
    .logo_reg span span {
        font-size:11px !important;
    }
    .logo-text {
        margin-top: 9px !important;
    }
    .job_application .navbar-nav {
        display:block;
    }
    .job_application .navbar-nav br {
        display:none;
    }
    .job_application .navbar-nav .pull-right {
        width:100%;
    }
    .custom_popup {
        width:98% !important;
    }
    .eligibility_registration_step {
        width:100%;
    }
    .loginfooter-lgn {
        display:none;
    }
    
}

@media (max-width:360px) {
    .main-sidebar, .left-side {
        transform: translate(-360px, 0px) !important;
    }
}
@media (max-width:412px) {
    .main-sidebar, .left-side {
        transform: translate(-412px, 0px) !important;
    }
}
@media (max-width:414px) {
    .main-sidebar, .left-side {
        transform: translate(-414px, 0px) !important;
    }
}
@media (max-width: 1024px) and (min-width: 768px) {
    #exlidvmodule i, #exlidvdelegate i, #lidvModuleName img, #intelidvmodule i, #intelidvdelegate i {
        display: none;
    }
}
/*Media query End of css*/

/* UI-Grid row color based on condition */
.green {
    background-color: #2dff07;
    color: forestgreen;
}

.red {
    background-color: #1fe0f0;
    color: red; /*#153ff0;*/
}

.rectangle-Box {
    border: solid 1px #6495ed;
    padding: 2%;
    min-height: 400px;
    text-align: center;
    font-size: 16px;
}

.box-header .box-tools .container {
    padding-right: 0;
    width: auto;
}

.nav-tabs > li > a {
    padding: 6px 10px !important;
}

table.custom-chart-tbl tbody tr td, table.custom-chart-tbl tbody tr th {
    border: none;
    text-align: center;
}

.text-align-right {
    text-align: right;
    padding-top: 5px;
}

.outer-layout {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    width: 90%;
    background-color: white;
    margin: 40px auto 0;
    padding: 10px;
}
textarea.form-control {
    max-width: 100% ;
    min-width: 100%;
}
.modal textarea.form-control {
    width:180px !important;
}
.popup_common_div {
    display: table;
    height: 100%;
    max-height: 100%;
    min-height: 100%;
    width: 100%;
}
.custom_tbl th {
    background: #d9d9d9; /* Old browsers */
    background: -moz-linear-gradient(top, #d9d9d9 0%, #e3e3e3 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #d9d9d9 0%, #e3e3e3 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #d9d9d9 0%, #e3e3e3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d9d9d9', endColorstr='#e3e3e3',GradientType=0 ); /* IE6-9 */
}
.main-footer, .loginfooter {
    display:none !important;
}
.leaveaprvlmain {
    border: solid 1px #00a65a;
    border-radius: 5px;
    display: inline-block;
    width: 100%;
    padding: 5px 0;
    margin-bottom: 8px;
}
.box-body.table-responsive {
    overflow-x:hidden;
}
.dash_heading {
    background: #0288d1;
    background: -webkit-linear-gradient(120deg, #0288d1, #26c6da);
    background: -moz- oldlinear-gradient(120deg, #0288d1, #26c6da);
    background: -o-linear-gradient(120deg, #0288d1, #26c6da);
    background: linear-gradient(120deg, #0288d1, #26c6da);
    color:#fff;
    padding:5px;
    text-align:center;
    font-size:18px;
}
.customcomonbar .custom-ng-visible, .custom_btn.ng-hide {
    display:block !important;
}
.my-css-class { background-color: yellow !important; }
.red { color:orangered }
.custom-tbl-grid tr td {
    overflow:visible !important;
}
/*.skin-blue.sidebar-mini .backstretch {
    display:none;
}*/
.fieldset-border {
    border: solid 1px #ccc;
    padding: 10px;
}
.fieldset-border legend {
    width:auto;
    border:none;
    padding:0 5px;
    font-size:16px;
    font-weight:bold;
}
.content-web-form {
    min-height: 50px;
    margin-right: auto;
    margin-left: auto;
}


.file-menu div[data-tree-model] li .selected {
    /*background-color:#2c3e50;*/
    font-weight: bold;
    padding: 1px 5px;
    color: #ff9f08;
     list-style: none;
     padding-left:0;
}

.file-menu .ng-binding:hover {
    color: #ff9f08;
}

.file-menu li .ng-scope a {
    white-space: normal;
}

.sidebar-collapse .file-menu {
    display: none;
}

 .sidebar-collapse .file-menu {
        display: block;
    }
.chart-btn {
    background: #00a65a;
    padding: 3px 10px;
    border-radius: 3px;
    margin-top: 6px;
    color: #fff;
    width: auto;
    text-align: center;
    display: block;
}
.chart-btn:hover, .chart-btn:focus {
    color:#ff9f08;
}
.flash {
    animation-name: flash;
    animation-duration: 0.4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
}
.convRow {
    color: black;
}
.dupdRow {
  color:purple;
}
.newdRow {
    color:#800000;
}
@keyframes flash {
    from {color:#ff0000;}
    to {color:#0016c2;}
}
/*Registration page css*/
.header_reg {
    background: #055da7;
    padding: 10px 10px;
    float: left;
    width: 100%;
}
.header_reg h2 {
    margin:0;
}
.reg_container {
    padding: 10px;
    display: block;
    width: 90%;
    margin: 0 auto;
}
.reg_container .login-heading {
    margin: 0 0 30px 0;
    padding: 8px 0;
    font-size: 26px;
    color: #3c4a6a;
    border-bottom: dotted 1px #3c4a6a;
}
.login-border {
    border:solid 1px #ccc;
    border-radius:15px;
    padding:20px;
}
.login-pg-sub-head {
    font-weight: normal;
    font-size: 28px;
    margin: 5px 0 20px 0;
}
.job_application .navbar-brand {
   padding:0;
   text-align:left;
   color:#fff;
}
.logo_reg img {
   width:66px;
   float:left;
   margin-right:5px;
}
.logo-text {
   margin-top: 24px;
   display: inline-block;
}
.job_application {
    float: left;
    width: 100%;
    min-height: 85px;
    margin-bottom: 10px;
    border-radius: 0;
    background:#0b1d45cc;
}
.job_application .navbar-nav {
    font-size:14px;
    margin-right:13px;
    margin-top:13px;
}
.job_application .navbar-nav li {
    color: #cad9fb;
    font-weight: bold;
    padding-right: 5px;
    border-right: solid 1px #cad9fb;
    margin-right: 5px;
    text-transform: none;
}
.job_application .navbar-nav li.last {
    margin-right:0;
    padding-right:0; border-right:none;
}
.job_application .navbar-nav li a {
    padding:0 0 0 10px;
    color: #cad9fb;
}
.job_application .navbar-nav li a:hover {
    background-color:transparent;
}
.job_application_outer_div {
    width:94%;
    padding:0;
    margin-top:30px;
}
.job_app_body_content {
    padding:0 10px;
    min-height:450px;
}
.job_app_body_content .nav-tabs-custom>.nav-tabs>li>a {
    background: #d8d8d8 none repeat scroll 0 0;
}
.job_app_body_content .nav-tabs-custom>.nav-tabs {
    border-bottom-color: #c3c3c3;
}
.job_app_body_content .nav-tabs-custom>.nav-tabs>li>a:hover, .job_app_body_content .nav-tabs-custom>.nav-tabs>li.active a {
    background: #ff9600 none repeat scroll 0 0;
}
.job_app_body_content .table>caption+thead>tr:first-child>td, .job_app_body_content .table>caption+thead>tr:first-child>th, 
.job_app_body_content .table>colgroup+thead>tr:first-child>td, .job_app_body_content .table>colgroup+thead>tr:first-child>th, 
.job_app_body_content .table>thead:first-child>tr:first-child>td, .job_app_body_content .table>thead:first-child>tr:first-child>th {
    background: #d8d8d8 none repeat scroll 0 0;
    border: 1px solid #c8c8c8 !important;
    color: #000;
}
.job_app_body_content .btn-success {
    background-color: #ff9600;
    border-color: #ff9600;
}
.job_app_main_heading {
    border-bottom: dotted 1px #055da7;
    padding-left: 0;
    padding-bottom: 5px;
    color: #055da7;
}
.job_app_main_heading h3 {
    font-weight:bold;
}
ul.label_list {
    padding:0;
    margin:0;
    list-style:none;
}
.label_list li label {
    font-weight:normal;
}
.border-format {
    border:solid 1px #333333;
    height:180px;
    overflow-y:auto;
    border-radius:2px;
    padding:8px;
}
.rec_login_bg {
    background:#ffffffdb;
    margin:15% 0 5% 0;
}
.rec_info {
    color:#fff;
   text-align:center;
   font-size:13px;
   padding-top:10px;
}

/*LOGIN CONFIGURATION PAGE*/
.form-login {
	max-width: 380px;
	margin: 5% auto 0;
	background: #fff;
	border-radius: 5px;
	-webkit-border-radius: 5px;
}
/*Helpers*/

.centered {
	text-align: center;
}

.goleft {
	text-align: left;
}

.goright {
	text-align: right;
}

.mt {
	margin-top: 17px;
}

.mb {
	margin-bottom: 25px;
    color: #e16c44;
}

.ml {
	margin-left: 5px;
	}

.no-padding {
	padding: 0 !important;
}

.no-margin {
	margin: 0 !important;
}
.eligibility_registration_step {
    width:80%;
    background:#fff;
    margin:0 auto;
}
.font-weight-normal {
    font-weight:normal;
}
.text-left-custom {
    text-align:left !important;
}
.tab-broder-lft-rgt {
    border-right: solid 1px #ccc;
    border-left: solid 1px #ccc;
}
.hostel_room {
    font-weight:bold;
    text-align:center;
    margin-bottom:10px;
    cursor: pointer;
    font-size:12px;
}
.no_of_bed {
    padding: 5px;
    margin-right: 3px;
    display: inline-block;
    margin-bottom: 5px;
    cursor: pointer;
    font-size:12px;
    border-radius:5px;
    box-shadow: 0px 1px 2px #3a3a3a;
}
.no_of_bed:hover {background:#aaa; color:#fff;}
.allocation {background:#ff7070; color:#fff;}
.pending {background:#ffb55e; color:#fff;}
.vacant {background:#75bb41;color:#fff;}
.reserved {background: #ac9dff;color: #fff;}
.maintenance {background: #a97777; color:#fff;}
.housekeeping {background: #ff8fec; color:#fff;}
.tvRoom {background: #ffbc00; color:#fff;}
.info-box.hostel-icon1, .info-box.hostel-icon2, .info-box.hostel-icon3, .info-box.hostel-icon4, .info-box.hostel-icon5, .info-box.hostel-icon6 {
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
    border: solid 1px #ccc;
    min-height: 63px;
}
.info-box.hostel-icon1 .info-box-icon, .info-box.hostel-icon2 .info-box-icon, .info-box.hostel-icon3 .info-box-icon, .info-box.hostel-icon4 .info-box-icon,
.info-box.hostel-icon5 .info-box-icon, .info-box.hostel-icon6 .info-box-icon {
    height:61px;
    font-size: 30px;
    line-height: 64px;
}
/*Student registration login page css*/
.header-login {
    background: #0b1d45cc;
    padding: 7px;
    display:inline-block;
    width:100%;
}
.login-box-body-reg .logo {
    margin-bottom:30px;
}
.logo .logoimg img {
    width: 80px;
    margin-bottom:6px;
}
.has-feedback .form-control {
    padding: 5px 42.5px 5px 10px;
    height: 34px;
    background: #fff;
}
.forgot_link a {
    color:#b8c3e0;
}
.login-box-body-reg .form-control {
    background:#fff;
}
.login-box-body-reg {
    color: #b8c3e0;
    text-shadow: 1px 1px 1px #000;
}
.login-box-msg-reg {
    border-bottom: 1px dotted #b8c3e0;
    color: #b8c3e0;
    font-size: 19px;
    font-weight: bold;
    margin: 0 0 15px;
    padding: 0 0 6px;
}
/*.login-box-body-reg .btn-primary {
    background-color: #9c2e32;
    border-color: #9c2e32;
}
.login-box-body-reg .btn-primary:hover, .login-box-body-reg .btn-primary:focus, .login-box-body-reg .btn-primary.focus {
	background-color:#8b2629;
    border-color:#8b2629;
}*/
.loginfooter-lgn {
    background: #005393d9;
    padding: 12px 0px;
    position: absolute;
    font-size: 0px;
    text-align: center;
    width: 100%;
    bottom: 0;
    left: 0;
}
.form-control-feedback {
    color:#666;
    text-shadow:none;
}
.login-box-reg {
    width: 330px;
    margin: 4% 10% 0 auto;
}
.uni_name {
    font-size: 23px;
    font-weight: 600;
    text-transform: capitalize;
}
.table-grid-scroll {
    height:350px;
    overflow-y:scroll;
}
.modal {
	background:rgba(0, 0, 0, 0.81) !important;
}
ul.dropdown-menu{
	animation: flipInX 1s ease;
	-moz-animation: flipInX 1s ease;
	-webkit-animation: flipInX 1s ease;
	-webkit-backface-visibility: visible !important;
	-ms-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-moz-backface-visibility: visible !important;
	data-wow-delay:".1s";
}
.form-control {
	background: no-repeat center bottom, center calc(100% - 0px);
	background-size: 0 100%, 100% 100%;
	-webkit-transition: background 0s ease-out;
	transition: background 0s ease-out;
}
.form-control:focus {
	background-size: 100% 100%, 100% 100%;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.form-control {
	background-image: linear-gradient(to top, #0790d2 1px, rgba(156, 39, 176, 0) 1px), linear-gradient(to top, #FFFFFF 1px, rgba(210, 210, 210, 0) 1px);
}

#lidvModuleName a img {
    /* filter: contrast(450%); */
	filter:brightness(5)
}
.custom-text-left {
    text-align:left !important;
    font-weight: normal;
}
.table-header th, .table-header td {
    background: #f6f8f9;
    background: -moz-linear-gradient(top, #f6f8f9 0%, #e5ebee 50%, #d7dee3 51%, #f5f7f9 100%); 
    background: -webkit-linear-gradient(top, #f6f8f9 0%,#e5ebee 50%,#d7dee3 51%,#f5f7f9 100%);
    background: linear-gradient(to bottom, #f6f8f9 0%,#e5ebee 50%,#d7dee3 51%,#f5f7f9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6f8f9', endColorstr='#f5f7f9',GradientType=0 );
}
.recruitment-footer {
    display: block !important; margin-left:0 !important; background:#36424e !important; border-top:none !important; padding: 7px !important;
    position:absolute;
    bottom:0;
    width:100%;
}
.rec-reg-captcha {
    margin:0 auto;
    width:50%;
}
.recruitment-footer {
        position:fixed;
        bottom:0;
}
.scroll-grid {
    overflow-y:scroll;
    height:350px;
}
.header-login .logo {
    text-align: center;
}
.header-login a {
    color: #fff;
    font-size: 30px;
}
.login-pg-notification-link {
    font-size:18px;
    color:#fff;
    padding:8px;
}

@media (min-width:769px) and (max-width:1024px) {
    .login-box-reg {
        margin-right: 7%;
    }
}
@media (max-width:736px) and (min-width:240px) {
    .backstretch {
        background:#1b2642;
    }
	.backstretch img {
        display:none !important;
	}
    .login-pg-notification-link {
        font-size: 15px;
        display: block;
        text-align: center;
    }
    .login-pg-notification-link i {
        font-size:15px;
    }
}