*, *:focus, *:active, a, a:active, a:focus {
    outline: none;
    outline: 0;
}
a, a:hover, a:active, a:focus {
    text-decoration: none;
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline: none;
    outline: 0;
    box-shadow: none;
    transition: all 0.3s;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
}


/** Login Page ********************/
.login-page {
    width: 100%;
    min-height: 100vh;
    background-image: url(../img/bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.login-page .brand-logo {
    display: block;
    width: 342px;
    margin: 20px 0;
}
.login-page .login-box {
    width: 100%;
    max-width: 400px;
    margin: 100px auto 30px auto;
    padding: 20px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.7);
}
.login-page .login-box h2 {
    margin: 0 0 20px 0;
    color: #484848;
    text-align: center;
}
.login-page .login-box .form-control {
    height: 40px;
}
.login-page .login-box .input-group-addon {
    background-color: #fff;
}
.login-page .login-box .input-group-addon .fa {
    width: 15px;
    font-size: 20px;
    text-align: center;
}
.login-page .login-box .forgot-pass {
    float: left;
    margin: 10px 0;
    color: #333;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}
.login-page .login-box .forgot-pass:hover {
    border-bottom: 1px solid #333;
}
.login-page .login-box .btn  {
    height: 40px;
    background-color: #00ACD5;
    border: 2px solid #00ACD5;
    color: #fff;
    box-shadow: none;
    padding: 6px 15px;
    width: 100px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
}
.login-page .login-box .btn:hover {
    background-color: transparent;
    color: #00ACD5;
}
.login-page .footer-text {
    text-align: center;
    color: #fff;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    position: fixed;
    bottom: 20px;
    left: 10px;
    right: 10px;
}

/** Nav Bar ********************/
.navbar-main {
    margin: 0;
    padding: 15px 0;
    background-color: transparent;
    border: 0;
    border-radius: 0;
}
.navbar-main .container {
    position: relative;
}
.navbar-main .navbar-brand {
    display: block;
    width: 130px;
    height: auto;
    padding: 0 15px;
}
.navbar-main .navbar-collapse {
    padding-top: 25px;
}
.navbar-main .nav-middle {
    margin-left: 20px;
    width: calc(100% - 200px);
    background-color: #f5f5f5;
    border-radius: 4px;
}
.navbar-main .nav-middle > li > a {
    font-weight: 600;
}
.navbar-main .nav-middle > .active > a,
.navbar-main .nav-middle > .active > a:focus,
.navbar-main .nav-middle > .active > a:hover {
    background-color: transparent;
    color: #00ACD5;
}
.navbar-main .navbar-nav > .open > a,
.navbar-main .navbar-nav > .open > a:focus,
.navbar-main .navbar-nav > .open > a:hover {
    color: #555;
    background-color: transparent;
}
/**/
.navbar-main .user-dropdown {
    position: absolute;
    right: 15px;
    top: 25px;
}
.navbar-main .user-dropdown .dropdown-toggle {
}
.navbar-main .user-dropdown .dropdown-toggle img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s;
}
.navbar-main .user-dropdown .dropdown-toggle:hover img {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}
.navbar-main .dropdown-menu li a {
    padding: 5px 15px;
    font-weight: 600;
}
.navbar-main .dropdown-menu > .active > a,
.navbar-main .dropdown-menu > .active > a:focus,
.navbar-main .dropdown-menu > .active > a:hover {
    background-color: transparent !important;
    color: #00ACD5 !important;
}

/** Main *************************/
.main {
    padding: 5px 0 20px 0;
    min-height: calc(100vh - 216px);
}

/** Footer ***********************/
.footer {
    padding: 20px 0;
    background-color: #1e2742;
}
.footer ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
}
.footer li .footer-link img {
    width: 70px;
    height: auto;
}
.footer li .footer-text {
    margin: 0;
    color: #fff;
    font-weight: 300;
}

/** Landing Page ********************/
.landing-page .main {

}
/*Search Bar*/
.main .search-box {
    width: 100%;
    max-width: 500px;
    margin-bottom: 10px;
}
.main .search-box .form-control {
    height: 40px;
    font-size: 16px;
    line-height: 26px;
}
.main .search-box .input-group-btn .btn {
    margin: 0;
    height: 40px;
    min-width: 40px;
    padding: 6px 10px;
    border: 1px solid #39669a;
    background-color: #39669a;
    color: #fff;
    transition: all 0.3s;
}
.main .search-box .input-group-btn .btn:hover {
    color: #f2f2f2;
}
/*Filter Btns*/
.main .filter-btns .list-inline {
    margin: 0;
}
.main .filter-btns li {
    padding: 0 4px;
}
.main .filter-btns .btn {
    padding: 3px 6px;
    margin-bottom: 5px;
    min-width: 50px;
    background-color: #fff;
    border-color: #fff;
    border-radius: 2px;
    font-size: 13px;
    color: #666666;
}
.main .filter-btns .btn .fa {
    margin-right: 5px;
}
.main .filter-btns .btn:hover {
    background-color: #fff;
    color: #333;
}
/**/
.landing-page .main .box-links {
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: center;
}
.landing-page .main .box-links .link-block {
    display: inline-block;
    width: 100%;
    max-width: 280px;
    margin: 10px;
    border-radius: 5px;
    background-color: #f2f2f2;
    transition: all 0.3s;
}
.landing-page .main .box-links .link-block:hover {
    cursor: pointer;
    background-color: #2b78c2;
}
.landing-page .main .box-links .link-block a {
    display: block;
    width: 100%;
    padding: 45px 30px;
    text-align: center;
}
.landing-page .main .box-links .link-block a .img-box {
    width: 75px;
    height: 75px;
    padding: 15px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #fff;
}
.landing-page .main .box-links .link-block a h4 {
    margin: 0;
    padding-top: 15px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    transition: all 0.3s;
}
.landing-page .main .box-links .link-block:hover a h4 {
    color: #fff;
}

/** Requisitions New Page *************************/
/*title box*/
.main .title-box {
    padding-bottom: 10px;
}
.main .title-box .page-title {
    display: inline-block;
    margin: 0;
    text-transform: uppercase;
}
.main .title-box .page-title span {
    display: inline-block;
    margin-right: 30px;
    vertical-align: middle;
}
.main .title-box .title-link {
    text-align: right;
}
.main .title-box .title-link a {
    display: inline-block;
    margin: 4px 0;
    padding: 2px 6px;
    border: 1px solid #5b9bd5;
    border-radius: 4px;
    color: #5b9bd5;
    transition: all 0.3s;
}
.main .title-box .title-link a .fa {
    margin-right: 4px;
}
.main .title-box .title-link a:hover {
    background-color: #5b9bd5;
    color: #fff;
}
/*Breadcrumb*/
.breadcrumb-box {
    display: inline-block;
    margin-right: 30px;
}
.breadcrumb-box .breadcrumb {
    margin: 0;
    padding: 3px 8px;
}
.breadcrumb-box .breadcrumb li {
    font-size: 13px;
}

/** progressbar **/
.main .step-form .form-head .progressbar {
    margin: 10px 0 20px 0;
    counter-reset: step;
}
.step-form .form-head .progressbar > li {
    position: relative;
    list-style-type: none;
    width: 200px;
    height: 40px;
    float: left;
    padding: 6px;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-right: 0;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
}
.step-form .form-head .progressbar > li::before,
.step-form .form-head .progressbar > li::after {
    content: '';
    display: block;
    position: absolute;
    left: 100%;
    border: solid transparent;
}
.step-form .form-head .progressbar > li::before {
    top: -1px;
    border-width: 20px;
    border-color: transparent;
    border-left-color: #ccc;
    z-index: 9;
}
.step-form .form-head .progressbar > li::after {
    top: 0;
    border-width: 19px;
    border-color: transparent;
    border-left-color: #f5f5f5;
    z-index: 10;
}
.step-form .form-head .progressbar > li.active {
    background-color: #a9d18e;
    border-color: #a9d18e;
    color: #fff;
}
.step-form .form-head .progressbar > li.active::before,
.step-form .form-head .progressbar > li.active::after {
    border-left-color: #a9d18e;
}
/**/
.step-form .form-txt p {
    margin-bottom: 20px;
}
/*Step Form*/
.step-form .form-body fieldset:not(:first-of-type) {
    display: none;
}
.step-form .form-body .form-group label {
    font-weight: 600;
}
.step-form .form-body .form-control,
.timesheets-box .form-control {
    height: 40px;
}
.step-form .form-body textarea.form-control {
    height: 100px;
}
/**/
.step-form .form-body .form-inline .form-group:not(:last-child) {
    padding-right: 10px;
}
.step-form .form-body .form-inline .form-group label {
    display: block;
}
.step-form .form-body .form-inline .form-group .form-control {
    width: 100%;
}
.step-form .form-body .form-inline .small-input {
    width: 16%;
}
.step-form .form-body .form-inline .large-input {
    width: 32%;
}
.step-form .form-body .inline-form .form-group {
    width: 16%;
}
.step-form .form-body .inline-form .radio-box {
    width: 110px;
    vertical-align: top;
}
.step-form .form-body .inline-form .radio-box .radio {
    display: inline-block;
    margin: 10px 10px 0 0;
}
select.form-control,
select.select-arrow {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../img/down-arrow.png);
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 10px 10px;
    background-color: #fff;
    padding-right: 25px;
}
.step-form .form-body .form-control:disabled {
    background-color: #fff;
}
/**/
.step-form .form-body .add-box {
    margin: 20px 0;
}
.step-form .form-body .add-box .add-line {
    margin-right: 20px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s;
}
.step-form .form-body .add-box .add-line .fa {
    margin-right: 5px;
    font-size: 24px;
    color: #5b9bd5;
    vertical-align: middle;
    transition: all 0.3s;
}
.step-form .form-body .add-box .add-line span {
    vertical-align: middle;
}
.step-form .form-body .add-box .add-line:hover .fa {
    color: #333;
}
/**/
.step-form .form-body .tab-btns {
    margin-top: 15px;
}
.step-form .form-body .tab-btns .btn-left {
    float: left;
}
.step-form .form-body .tab-btns .btn-right {
    float: right;
}
.step-form .form-body .tab-btns .btn,
.main .title-box .ticket-btn,
.main .main-btn {
    height: 40px;
    margin: 10px 0;
    box-shadow: none;
    min-width: 120px;
    background-color: #bfbfbf;
    border: 0;
    font-weight: 600;
    color: #fff;
    line-height: 26px;
    transition: all 0.3s;
}
.step-form .form-body .tab-btns .btn:hover,
.main .title-box .ticket-btn:hover,
.main .main-btn:hover {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}
.step-form .form-body .tab-btns .next-btn,
.step-form .form-body .tab-btns .submit-btn,
.main .title-box .ticket-btn,
.main .main-btn {
    background-color: #5b9bd5;
}
.step-form .form-body .tab-btns .next-btn .fa {
    margin-left: 5px;
}
.step-form .form-body .tab-btns .back-btn .fa {
    margin-right: 5px;
}

/** Requisitions Pre Page ******************/
.main .title-box .page-title .add-new-btn {
    display: inline-block;
    padding: 3px 8px;
    background-color: #5b9bd5;
    border: 1px solid #5b9bd5;
    vertical-align: middle;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    transition: all 0.3s;
}
.main .title-box .page-title .add-new-btn:hover {
    background-color: #fff;
    color: #5b9bd5;
}
/*Status Filter*/
.status-filter .list-inline {
    margin: 0;
}
.status-filter li:first-child span {
    display: inline-block;
    vertical-align: middle;
    font-weight: 600;
}
.status-filter li a {
    display: inline-block;
    margin-bottom: 5px;
    padding: 3px 0px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 13px;
    color: #666666;
    transition: all 0.3s;
}
.status-filter li a:hover {
    color: #333;
}
.status-filter .stat-name,
.project-dots .stat-name {
    vertical-align: middle;
}
.status-filter .stat-dot,
.table .stat-dot,
.project-dots .stat-dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 3px;
    background-color: blue;
    vertical-align: middle;
}
.status-filter .stat-dot.stat-open,
.table .stat-dot.stat-open,
.project-dots .stat-dot.stat-open {
    background-color: #ed1c24;
}
.status-filter .stat-dot.stat-staged,
.table .stat-dot.stat-staged,
.project-dots .stat-dot.stat-staged {
    background-color: #ff7f27;
}
.status-filter .stat-dot.stat-issued,
.table .stat-dot.stat-issued,
.project-dots .stat-dot.stat-issued {
    background-color: #22b14c;
}
/* Table */
.table-bordered, .table.table-bordered tr > th,
.table.table-bordered tr > td {
    border: 1px solid rgba(221, 221, 221, 0.5);
}
.table tr > th, .table.table-bordered tr > th {
    vertical-align: middle;
    text-align: center;
    font-weight: 600;
}
.table-bordered, .table.table-bordered tr > th,
.table.table-bordered tr > td {
    border: 1px solid rgba(221, 221, 221, 0.5);
}
/**/
.table.checkbox-1st tr > th:first-child,
.table.checkbox-1st tr > td:first-child {
    width: 30px;
}

/** Inventory Page ****************************/


/** Date Picker *******************************/
.datepicker .datepicker-days .dow {
    font-weight: 600;
}
.datepicker .datepicker-days .day {
    border-radius: 2px;
    font-size: 13px;
    text-shadow: none;
}
.datepicker .datepicker-days .day.today {
    background-color: #fdf59a !important;
    background-image: none !important;
}
.datepicker .datepicker-days .day.active,
.datepicker table tr td span.active {
    background-color: #00ACD5 !important;
    background-image: none !important;
    color: #fff;
}
/** Multi Input *********************************/
.multi-input-box .pincode-input-container{
    display: block;
    width: 100%;
}
.multi-input-box .pincode-input-container .pincode-input-text {
    float: left;
    width: calc(100% / 10);
    padding: 6px;
    text-align: center;
}
.multi-input-box.small-box .pincode-input-container .pincode-input-text {
    width: calc(100% / 4);
}
/**/
.multi-input-box p {
    margin: 2px 0 0 0;
    text-align: center;
    font-size: 12px;
}
.multi-input-box.small-box {
    padding-top: 25px;
}

/** Request New Page ***********************/


/** Note Modal ****************************/
.note-modal .modal-dialog {
    width: auto;
    max-width: 420px;
    margin: 120px auto 30px auto;
    padding: 0 15px;
}
.note-modal .close {
    font-size: 30px;
    font-weight: 400;
    color: #ed1c24;
    line-height: 20px;
    opacity: 1;
    transition: all 0.3s;
}
.note-modal .close:hover {
    color: #333;
}
.note-modal .note-form textarea {
    height: 150px;
}
.note-modal .btn {
    box-shadow: none;
    min-width: 80px;
    background-color: #5b9bd5;
    border: 2px solid #5b9bd5;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s;
}
.note-modal .btn:hover {
    background-color: #fff;
    color: #5b9bd5;
}

/** Change Password Page **************************/
.change-password .password-box {
    padding: 30px 0;
}
.change-password .password-box .password-form {
    margin: 0 auto;
    width: 100%;
    max-width: 450px;
}
.change-password .password-form label {
    width: 210px;
    padding-right: 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: right;
}
.change-password .password-form .pass-email {
    font-size: 16px;
}
.change-password .password-form .form-control {
    height: 40px;
}
.change-password .password-form .pass-btn {
    padding-left: 2`13px;
}


/** Setup User Page ***************************************/
.setup-user .table-box table .status-checkbox {
    position: relative;
    display: inline-block;
    width: 86px;
    height: 20px;
    vertical-align: middle;
}
.setup-user .table-box table .status-checkbox label {
    margin: 0;
    width: 100%;
    padding: 3px 6px;
    border: 1px solid #bbb;
    border-radius: 2px;
    background-color: #eee;
    cursor: pointer;
    transition: all 0.3s;
}
.setup-user .table-box table .status-checkbox label:hover {
    background-color: #fff;
}
.setup-user .table-box table .status-checkbox input {
    position: absolute;
    left: -9999px;
    visibility: hidden;
    opacity: 0;
}
.setup-user .table-box table .status-checkbox .status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
    background-color: #ed1c24;
    vertical-align: middle;
}
.setup-user .table-box table .status-checkbox .status-txt {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
    font-weight: 400;
    line-height: 11px;
}
.setup-user .table-box table .status-checkbox .status-active {
    display: none;
}
.setup-user .table-box table .status-checkbox input:checked ~ .status-dot {
    background-color: #22b14c;
}
.setup-user .table-box table .status-checkbox input:checked ~ .status-active {
    display: inline-block;
}
.setup-user .table-box table .status-checkbox input:checked ~ .status-de-active {
    display: none;
}


/** Timesheets Page ***********************/
.timesheets-page .timesheets-top p {
    font-size: 16px;
}
.timesheets-page .timesheets-top p span {
    display: inline-block;
    width: 135px;
}
.timesheets-page .timesheets-top p b {
    font-weight: 600;
}
.timesheets-page .timesheets-top .form-inline label {
    font-size: 16px;
    font-weight: 400;
    width: 135px;
}
.timesheets-page .timesheets-top .form-inline select.form-control {
    min-width: 120px;
}
.timesheets-page .timesheets-top .txt-line2 p span {
    width: auto;
    margin-right: 10px;
}
.timesheets-page .timesheets-top .txt-line2 p a {
    margin-left: 15px;
    font-size: 14px;
    text-decoration: underline;
}
/**/
.timesheets-page .timesheets-box .table thead tr:first-child th {
    background-color: #eee;
}
.timesheets-page .timesheets-box .table tr td.week-ending {
    color: #000;
    font-weight: 600;
}
.timesheets-page .timesheets-box .table tr td.col-bg {
    background-color: #d9e1f2;
}
.timesheets-page .timesheets-box tr td.table-total {
    background-color: #ccc;
}
.timesheets-page .timesheets-box .table td select.select-arrow {
    width: 100%;
    min-width: 36px;
    border: 0;
    background-color: transparent;
    background-image: none;/*
    background-position: right center;
    padding: 0 14px 0 4px;*/
    padding: 0 4px;
    text-align: center;
    cursor: pointer;
}
.timesheets-page .timesheets-box .table td input {
    width: 100%;
    padding: 0;
    border: 0;
    background-color: transparent;
    text-align: center;
}
.timesheets-page .timesheets-box .table td.status-box span {
    display: none;
    width: 66px;
    padding: 2px 5px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}
.timesheets-page .timesheets-box .table td.status-box span.status1 {
    background-color: #d9d9d9;
    color: #000;
}
.timesheets-page .timesheets-box .table td.status-box span.status2 {
    background-color: #009D57;
    color: #fff;
}
.timesheets-page .timesheets-box .table .status-box.s-1 .status1,
.timesheets-page .timesheets-box .table .status-box.s-2 .status2 {
    display: inline-block;
}
/**/
.timesheets-page .timesheets-box .btn-box .btn-update {
    background-color: #009D57;
}
.timesheets-page .timesheets-box .btn-box select.form-control {
    min-width: 250px;
}





/***************
media query
****************/
@media screen and (min-width: 1200px) {
    .container {
        width: 90%;
    }
}
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 991px) {
    .navbar-main .nav-middle > li > a {
        padding: 10px 7px;
    }
    /**/
    .main .title-box .title-link {
        text-align: left;
    }
    /**/
    .main .filter-btns {
        padding-top: 10px;
        text-align: left;
    }
    .main .status-filter  {
        text-align: left;
    }
}
@media screen and (min-width: 768px){
    .navbar-main .nav-middle .dropdown:hover .dropdown-menu {
      display: block;
    }
}
@media screen and (max-width: 767px) {
    .navbar-main .navbar-toggle {
        position: absolute;
        top: 32px;
        right: 80px;
        margin: 0;
    }
    .navbar-main .navbar-collapse {
        padding-top: 0;
        background-color: #f5f5f5;
    }
    .navbar-main .navbar-nav {
        margin: 0;
        width: auto;
    }
    .navbar-main .nav-middle > li > a,
    .navbar-main .navbar-right .user-dropdown .dropdown-toggle {
        padding: 10px 15px;
    }
    .navbar-main .navbar-nav .dropdown-menu li a {
        padding-left: 25px;
    }
    /**/
    .footer ul {
        flex-direction: column;
    }
    .footer li .footer-text {
        padding-top: 20px;
    }
    /**/
    .step-form .form-head .progressbar > li {
        width: auto;
    }
    .step-form .form-head .progressbar > li:not(:first-child) {
        padding-left: 26px;
    }
    /**/
    .step-form .form-body .form-inline .form-group:not(:last-child) {
        padding: 0;
    }
    .step-form .form-body .form-inline .small-input,
    .step-form .form-body .form-inline .large-input,
    .step-form .form-body .inline-form .form-group {
        width: 100%;
    }
    /**/
    .multi-input-box.small-box {
        padding: 0;
    }
    /**/
    .change-password .password-form label {
        width: 100%;
        text-align: left;
    }
    .change-password .password-form .pass-email {
        display: block;
    }
    .change-password .password-form .pass-btn {
        padding-left: 0;
        text-align: center;
    }
    /**/
    .timesheets-page .timesheets-box .btn-box .pull-left,
    .timesheets-page .timesheets-box .btn-box .pull-right {
        float: none !important;
    }
}
@media screen and (max-height: 600px) {
    .login-page .login-box {
        margin-top: 50px;
    }
    .login-page .footer-text {
        position: static;
    }
}
