@font-face {
    font-family: 'lato-regular';
    src: url('/content/fonts/lato-regular.woff2') format('woff2'), url('/content/fonts/lato-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'lato-bold';
    src: url('/content/fonts/lato-bold.woff2') format('woff2'), url('/content/fonts/lato-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'lato-light';
    src: url('/content/fonts/lato-light.woff2') format('woff2'), url('/content/fonts/lato-light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'lato-medium';
    src: url('/content/fonts/lato-medium.woff2') format('woff2'), url('/content/fonts/lato-medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'lato-black';
    src: url('/content/fonts/lato-black.woff2') format('woff2'), url('/content/fonts/lato-black.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'lato-regular', Arial;
}

body, h1, h2, h3, h4, h5, h6, p, ul {
    margin: 0;
    padding: 0;
}

header {
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 9999;
    top: 0;
    left: 0;
}

body {
    font-size: 18px;
    padding-top: 81px;
}

ul, li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

input[type="text"], input[type="password"],
select,
textarea {
    padding: 10px 10px 11px;
    width: 100%;
    border: 1px solid #ebebeb;
    outline: none;
    font-family: 'lato-light', Arial;
    color: #222222;
    margin-bottom: 10px;
    font-size: 18px;
}

input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.51);
}

input::-moz-placeholder { /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.51);
}

input:-ms-input-placeholder { /* IE 10+ */
    color: rgba(0, 0, 0, 0.51);
}

input:-moz-placeholder { /* Firefox 18- */
    color: rgba(0, 0, 0, 0.51);
}

select {
    appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

    select::-ms-expand {
        display: none;
    }

.date-picker input[type="text"] {
    background-image: url(../img/cal-icon.png);
    background-repeat: no-repeat;
    background-position: calc(100% - 6px) 7px;
}

select {
    background-image: url(../img/selectArrow.png);
    background-repeat: no-repeat;
    background-position: calc(100% - 6px) center;
}

.table {
    display: table;
}

.table-cell {
    display: table-cell;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.white-bg {
    background-color: #fff;
}

.btn, .btn:hover {
    background: gray;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    height: 44px;
    display: inline-block;
    margin: 0;
    vertical-align: top;
    padding: 0 20px;
    line-height: 44px;
    text-align: center;
}

    .btn + .btn {
        margin-left: 10px;
    }

.btn-wrap {
    padding: 0 15px;
    margin-bottom: 15px;
    margin-top: 10px;
}

.btn-blue, .btn-blue:hover {
    background: #015ea1;
    color: #fff;
}

.btn .icon {
    vertical-align: sub;
    margin-right: 10px;
}

.custom-checkbox input {
    display: none;
}

.custom-checkbox label {
    display: inline-block;
    background: url(../img/check-bg.png);
    cursor: pointer;
    background-repeat: no-repeat;
    padding: 0 0 0 35px;
    color: #666666;
}

.form .custom-checkbox label {
    padding: 4px 0 4px 35px;
    background-position: left center;
}

.custom-checkbox input:checked + label {
    background: url("../img/checked-bg.png");
    background-repeat: no-repeat;
    background-position: left center;
}

.custom-checkbox.v1 {
    display: inline-block;
    vertical-align: middle;
    padding-top: 10px;
    margin-right: 15px;
}

.main-nav {
    position: relative;
    min-height: 77px;
    box-shadow: 0px 0px 12px 2px #d6d6d6;
    -o-box-shadow: 0px 0px 12px 2px #d6d6d6;
    -ms-box-shadow: 0px 0px 12px 2px #d6d6d6;
    -moz-box-shadow: 0px 0px 12px 2px #d6d6d6;
    -webkit-box-shadow: 0px 0px 12px 2px #d6d6d6;
}

.brand-logo {
    position: absolute;
    left: 15px;
    height: 100%;
    top: 0;
    overflow: hidden;
}

.nav-links {
    text-align: center;
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
}

.menu-lvl1 > li {
    display: inline-block;
    padding: 0 15px 0px;
}

    .menu-lvl1 > li > a {
        color: #80889a;
        padding: 45px 10px 15px;
        display: block;
        background-repeat: no-repeat;
        background-position: center 15px;
        position: relative;
    }

        .menu-lvl1 > li > a:hover:before, .menu-lvl1 > li.active > a:before {
            content: "";
            display: block;
            height: 15px;
            background-image: url(../img/link-btm.png);
            background-repeat: no-repeat;
            background-size: 100% 15px;
            position: absolute;
            bottom: -14px;
            left: 0;
            width: 100%;
            z-index: 10;
        }

.has-menu > a:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-top-color: #969696;
    position: relative;
    top: 1px;
    left: 4px;
}

.has-menu > a:hover:after {
    border-top-color: #fff;
}

.menu-lvl1 > li > a:hover,
.menu-lvl1 > li.active > a {
    background-color: #015ea1;
    color: #fff;
}

.menu-lvl1 .home-link {
    background-image: url('../img/home.png');
}

    .menu-lvl1 .home-link:hover,
    .menu-lvl1 .active .home-link {
        background-image: url('../img/home-w.png');
    }

.menu-lvl1 .cases-link {
    background-image: url('../img/cases.png');
}

    .menu-lvl1 .cases-link:hover,
    .menu-lvl1 .active .cases-link {
        background-image: url('../img/cases-w.png');
    }

.menu-lvl1 .suppliers-link {
    background-image: url('../img/suppliers.png');
}

    .menu-lvl1 .suppliers-link:hover,
    .menu-lvl1 .active .suppliers-link {
        background-image: url('../img/suppliers-w.png');
    }

.menu-lvl1 .tasks-link {
    background-image: url('../img/tasks.png');
}

    .menu-lvl1 .tasks-link:hover,
    .menu-lvl1 .active .tasks-link {
        background-image: url('../img/tasks-w.png');
    }

.menu-lvl1 .brands-link {
    background-image: url('../img/tag.png');
}

    .menu-lvl1 .brands-link:hover,
    .menu-lvl1 .active .brands-link {
        background-image: url('../img/tag-w.png');
    }

.menu-lvl1 .cp-link {
    background-image: url('../img/gear.png');
}

    .menu-lvl1 .cp-link:hover,
    .menu-lvl1 .active .cp-link {
        background-image: url('../img/gear-w.png');
    }

.menu-lvl2 {
    position: absolute;
    left: 0;
    right: 0;
    background-color: #cccccc;
    z-index: 9;
    display: none;
    padding: 15px 10px;
    width: 100%;
    text-align: left;
}

.has-menu:hover .menu-lvl2 {
    display: table;
}

.menu-lvl2 > ul {
    display: table-cell;
}

    .menu-lvl2 > ul + ul {
        padding-left: 20px;
    }

.menu-lvl2 a {
    color: #fff;
    padding: 4px 0 4px 30px;
    display: inline-block;
    background-image: url('../img/list-style.png');
    background-repeat: no-repeat;
    background-position: left 8px;
}

    .menu-lvl2 a:hover {
        color: #015ea1;
        text-decoration: underline;
    }

.clearfix:before, .clearfix:after, .row:before, .row:after, .form-row:before, .form-row:after {
    content: "";
    display: table;
    clear: both;
}

aside {
    width: 420px;
    display: table-cell;
    background-color: #fff;
    border: 1px solid #d2d2d2;
    box-shadow: 0px 0px 7px 1px #d6d6d6;
    -o-box-shadow: 0px 0px 7px 1px #d6d6d6;
    -ms-box-shadow: 0px 0px 7px 1px #d6d6d6;
    -moz-box-shadow: 0px 0px 7px 1px #d6d6d6;
    -webkit-box-shadow: 0px 0px 7px 1px #d6d6d6;
}

.main-wrap {
    padding: 30px 10px 10px;
    background-color: #f9f9f9;
    /*min-height: calc( 100vh - 81px);*/
}

.homePage {
    display: table;
    width: 100%;
}

.main-content {
    display: table-cell;
    padding-left: 30px;
    background: #f9f9f9;
}

.grayBlock {
    background-color: #fff;
    box-shadow: 0px 0px 7px 1px #d6d6d6;
    -o-box-shadow: 0px 0px 7px 1px #d6d6d6;
    -ms-box-shadow: 0px 0px 7px 1px #d6d6d6;
    -moz-box-shadow: 0px 0px 7px 1px #d6d6d6;
    -webkit-box-shadow: 0px 0px 7px 1px #d6d6d6;
    filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30);
    -ms-filter: "progid:DXImageTransform.Microsoft.Blur(PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30)";
    zoom: 1;
}

.form-group-small {
    float: left;
    width: 50%;
    padding: 0 15px;
}

.form-row .form-group-small:first-child {
    padding-right: 30px;
}

.form-row .form-group-small:nth-child(2) {
    padding-left: 30px;
}

.form label {
    padding-top: 10px;
}

.form-row label {
    width: 150px;
    float: left;
    position: relative;
    font-family: 'lato-light', Arial;
}

.form-group {
    position: relative;
}

.rightContent, .form-group {
    width: calc(100% - 150px);
    float: left;
    padding-left: 15px;
}

.blockTitle {
    padding: 10px 15px;
    border-bottom: 1px solid #dbdbdb;
    text-transform: capitalize;
    font-weight: normal;
    position: relative;
}

.subTitle {
    border: none;
    margin: 10px 0;
}

.blockTitle .blue-txt {
    color: #015ea1;
    position: relative;
    padding: 9px 15px;
    border-bottom: 2px solid #015ea1;
    left: -15px;
}

.task-list {
    overflow-y: auto;
    color: #666666;
    font-size: 16px;
}

.item-title {
    position: relative;
    white-space: nowrap;
    width: 100%;
    padding-right: 55px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #222222;
    font-size: 18px;
    margin-bottom: 10px;
}

.case-actions {
    position: absolute;
    right: 13px;
    top: 12px;
}

.title-tooltip {
    position: absolute;
    width: 100%;
    background: #b0b0b0;
    top: 35px;
    left: 0;
    color: #fff;
    padding: 5px 10px;
    display: none;
    font-size: 18px;
}

.item-title:hover + .title-tooltip {
    display: block;
}

.case-actions a {
    display: inline-block;
}

    .case-actions a + a {
        margin-left: 5px;
    }

.task-item {
    background: #f5f5f5;
    padding: 10px;
    border-left: 2px solid #eb1618;
    font-size: 16px;
    position: relative;
}

    .task-item.open {
        border-left: 2px solid #76b104;
    }

    .task-item + .task-item {
        margin-top: 10px;
    }

.caseStatus {
    margin-top: 10px;
}

.caseStatus {
    margin-top: 10px;
    display: table;
    width: 100%;
}

    .caseStatus span {
        display: table-cell;
    }

.right-nav {
    position: absolute;
    top: 0;
    right: 15px;
    height: 100%;
    padding-top: 20px;
    z-index: 15;
}

.userAccount {
    text-align: right;
    color: #015ea1;
    margin-bottom: 16px;
}

.userImg, .userName {
    cursor: pointer;
}

.userImg {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
}

.userActions {
    background: #f5f5f5;
    display: none;
}

.right-nav:hover .userActions {
    display: block;
}

.userActions li {
    padding: 10px;
}

    .userActions li + li {
        border-top: 1px solid #ddd;
    }

.userActions a {
    color: #222222;
    display: inline-block;
    padding-right: 10px;
}

.userActions .icon {
    display: inline-block;
    vertical-align: middle;
    width: 35px;
}

/*caseList page starts*/
.caseList-page .blockTitle {
    font-size: 20px;
}

.search-txt {
    position: absolute;
    left: 15px;
    color: #80889a;
}

.tabs {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
}

    .tabs .item {
        display: inline-block;
    }

        .tabs .item + .item {
            border-left: 1px solid #ccc;
        }

        .tabs .item a {
            color: #80889a;
            position: relative;
            padding: 9px 15px;
        }

    .tabs .active a {
        color: #015ea1;
        border-bottom: 2px solid #015ea1;
    }

.table-full {
    width: 100%;
}

    .table-full th, .table-full td {
        padding: 15px 3px;
        font-weight: normal;
        text-align: left;
        font-size: 16px;
        line-height: 22px;
    }

    .table-full th {
        white-space: nowrap;
    }

        .table-full th img {
            vertical-align: text-bottom;
            margin-left: 7px;
            margin-right: 15px;
        }

    .table-full tbody tr:first-child td {
        border-top: 1px solid #e3e5e6;
    }

    .table-full tbody td {
        border-bottom: 1px solid #e3e5e6;
        font-family: 'lato-light', Arial;
    }

    .table-full tbody tr:nth-child(2n+1) {
        background-color: #fcfdfd;
    }

    .table-full tbody tr td:first-child {
        position: relative;
        padding-right: 30px;
    }

        .table-full tbody tr td:first-child a {
            float: right;
            margin: 1px 5px 0;
        }

        .table-full tbody tr td:first-child span {
            position: absolute;
            right: 3px;
            /*top: 50%;
            margin-top: -11px;*/
        }

.caseList-page {
    padding-bottom: 1px;
}

.pagination {
    margin: 20px auto;
    text-align: center;
    position: relative;
}

    .pagination .controls {
        display: inline-block;
    }

    .pagination .pagging-item {
        display: inline-block;
        width: 50px;
        height: 50px;
        padding: 10px 10px 11px;
        border: 1px solid #ebebeb;
        vertical-align: middle;
        margin: 0;
        background-repeat: no-repeat;
        background-position: center;
        float: left;
        color: #666666;
    }

.pagging-item + .pagging-item {
    border-left: 0;
}

input.pagging-item {
    width: 65px;
    font-family: 'lato-regular', Arial;
}

.pagination span {
    float: left;
    line-height: 50px;
    padding: 0 10px;
    color: #666666;
}

.pageCount {
    border-right: 1px solid #ebebeb;
}

.pager-not-active {
    cursor: not-allowed;
    /* pointer-events: none; */
}

.pagination .next, .pagination .next.pager-not-active:hover {
    background-image: url('../img/next.png');
}

    .pagination .next:hover {
        background-image: url('../img/next-b.png');
    }

    .pagination .next.active ,.pagination .next.active:hover {
        background-image: url('../img/next-b.png');
    }

.pagination .prev, .pagination .prev.pager-not-active:hover {
    background-image: url('../img/prev.png');
}

    .pagination .prev:hover {
        background-image: url('../img/prev-b.png');
    }

.pagination .first, .pagination .first.pager-not-active:hover {
    background-image: url('../img/first.png');
}

    .pagination .first:hover, .pagination .first.active {
        background-image: url('../img/first-b.png');
    }

.pagination .last, .pagination .last.pager-not-active:hover {
    background-image: url('../img/last.png');
}

    .pagination .last:hover, .pagination .last.active {
        background-image: url('../img/last-b.png');
    }

.deleteCase {
    position: relative;
    margin-right: 10px;
    height: 18px;
    /*padding-bottom: 2px;*/
}

.case-tooltip {
    position: absolute;
    right: 25px;
    top: -3px;
    white-space: nowrap;
    background: #b0b0b0;
    padding: 5px;
    color: #fff;
    text-transform: uppercase;
    display: none;
}

.deleteCase:hover .case-tooltip {
    display: block;
}

.pagination .btn {
    position: absolute;
    margin-top: 7px;
    right: 25px;
    top: 0;
}

.login-page {
    min-height: calc(100vh - 81px);
    position: relative;
}

.login-button {
    color: white;
    background-color: #015ea1;
    width: 150px;
    margin-left: 30px;
}

.login-form {
    width: 420px;
    background: #fff;
    padding: 15px 35px;
    position: absolute;
    left: 50%;
    margin-left: -210px;
    top: 50%;
    margin-top: -190px;
    box-shadow: -1px 3px 11px 1px #d6d6d6;
    -o-box-shadow: -1px 3px 11px 1px #d6d6d6;
    -ms-box-shadow: -1px 3px 11px 1px #d6d6d6;
    -moz-box-shadow: -1px 3px 11px 1px #d6d6d6;
    -webkit-box-shadow: -1px 3px 11px 1px #d6d6d6;
}

.login-page .form-row label {
    padding: 15px 0 10px;
    font-size: 18px;
    font-family: 'lato-regular', Arial;
}

.login-page input[type="text"], .login-page input[type="password"]
/*.login-page input*/ {
    height: 44px;
    font-family: 'lato-regular', Arial;
}

.login-page input[type="password"] {
    color: #a3a5a7;
    font-size: 25px;
    padding: 0 10px;
}

.login-page .btn-wrap {
    position: relative;
    font-size: 18px;
    padding: 0;
}

.login-page .btn {
    float: right;
    min-width: 150px;
}

.btnResetCancel, .btnResetCancel:hover {
    margin-right: 10px;
}

.login-page .custom-checkbox.v1 {
    padding: 5px 0;
}

.footer {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    padding: 15px 0;
    background-color: #eee;
    text-align: center;
    font-size: 18px;
}

.no-search {
    min-height: calc(100vh - 170px);
    color: #666666;
    font-size: 18px;
    text-align: center;
    padding: 20px;
}

    .no-search a {
        font-family: 'lato-italic', Arial;
        color: #015ea1;
        font-style: italic;
        text-decoration: underline;
    }

.mgt-control {
    min-height: inherit;
    padding: 20px 15px;
}

.reqUnlockUser {
    font-size: 14px;
    top: 25px;
    display: block;
    position: relative;
    color: #015ea1;
    margin-bottom: 20px;
    text-decoration: underline;
}

/** initial setup **/
.nano {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    min-height: 710px;
    margin-top: 20px;
}

    .nano > .nano-content {
        position: absolute;
        overflow: scroll;
        overflow-x: hidden;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        padding-right: 10px;
    }

        .nano > .nano-content:focus {
            outline: thin dotted;
        }

        .nano > .nano-content::-webkit-scrollbar {
            display: none;
        }

.has-scrollbar > .nano-content::-webkit-scrollbar {
    display: block;
}

.nano > .nano-pane {
    position: absolute;
    width: 7px;
    right: 0;
    top: 0;
    bottom: 0;
    visibility: hidden\9; /* Target only IE7 and IE8 with this hack */
    opacity: .01;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

    .nano > .nano-pane > .nano-slider {
        background: #222;
        position: relative;
        margin: 0 1px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
    }

.nano:hover > .nano-pane, .nano-pane.active, .nano-pane.flashed {
    visibility: visible\9; /* Target only IE7 and IE8 with this hack */
    opacity: 0.99;
}

/*Chgange Password screen*/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.52);
    z-index: 99;
}

    .modal .main-wrap {
        padding: 0;
    }

    .modal .cgPwd-page {
        width: 420px;
        background: #fff;
        padding: 30px 30px 15px 30px;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -o-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }

.cgPwd-page .form-row label {
    padding: 5px 0px;
    font-size: 18px;
    font-family: 'lato-regular', Arial;
}

.cgPwd-page input {
    height: 44px;
    font-family: 'lato-regular', Arial;
}

    .cgPwd-page input[type="password"] {
        color: #a3a5a7;
        font-size: 25px;
        padding: 0 10px;
    }

.cgPwd-page .btn-wrap {
    position: relative;
    font-size: 18px;
    padding: 0;
    text-align: right;
}

.modal-title {
    text-align: center;
}

    .modal-title h4 {
        font-family: 'lato-regular',Arial;
        font-size: 22px;
        font-weight: normal;
        text-transform: uppercase;
        color: #015ea1;
        margin: 25px 0;
    }

.modal .btn + .btn {
    margin-left: 20px;
}

/*Chgange Password screen*/
.btn-disabled, .btn-disabled:hover {
    background-color: #adadad;
    cursor: not-allowed;
}

.login-form {
    padding-top: 35px;
}

.error, .formInvalid {
    position: relative;
}

    .error input {
        border: 1px solid #e04646;
    }

    .formInvalid input[type="text"], .formInvalid input[type="password"] {
        background-color: #eccacf;
        border: 1px solid #eccacf;
        color: #222;
    }

.errorMsg, .formInvalid-msg {
    display: none;
    position: absolute;
    font-size: 14px;
    margin-top: -6px;
    color: #e04646;
}

.formInvalid-msg {
    margin-top: -15px;
}

.error .errorMsg, .formInvalid .formInvalid-msg {
    display: block;
}

.formInvalid {
    position:;
}

.modal .modalBox {
    width: 450px;
    background: #fff;
    padding: 30px 30px 15px 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 18px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.modal .warningBox {
    text-align: center;
    width: 530px;
}

.modal-text {
    color: #80889a;
    line-height: 28px;
    font-size: 18px;
    margin-bottom: 20px;
}

.warningBox .modal-title h4, .error-modal .modal-title h4 {
    margin-bottom: 10px;
}

.error-modal {
    text-align: center;
}

.myTaskError, .noActiveTasks {
    text-align: center;
    padding: 0 30px;
    margin-top: 150px;
    display: none;
}

    .noActiveTasks .modal-text {
        color: #015ea1;
        margin-top: 22px;
    }

.noCaseFound {
    text-align: center;
    padding: 0 30px;
    min-height: calc(100vh - 170px);
    padding-top: 150px;
}

    .noCaseFound .modal-text {
        color: #015ea1;
        margin-top: 22px;
    }

/*datepicker css*/

.ui-datepicker {
    padding: 0 15px 15px;
    border-radius: 0;
    font-family: 'lato-regular', Arial;
    z-index: 99 !important;
    background: #f9f9f9;
    width: calc( 50% - 445px);
}

.ui-widget.ui-widget-content {
    border: 1px solid #e3e3e3;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
    border-radius: 0;
}

.ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: 5px 15px;
    margin: 0 -15px 15px;
    background-color: #e3e3e3;
}

.ui-datepicker td {
    border: 1px solid #e3e3e3;
    padding: 0px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: none;
    background: #fff;
    font-weight: normal;
    text-align: left;
    min-height: 50px;
    padding: 4px;
    color: rgba(2,2,2,0.66);
}

    .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus,
    .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
        border: none;
        background: #015ea1;
        font-weight: normal;
        color: #fff;
    }

.ui-datepicker th {
    padding: 4px 5px 8px;
    text-align: left;
    font-weight: normal;
    border: 1px solid #e3e3e3;
    color: #222;
}

.ui-datepicker table {
    font-size: 10px;
    margin: 0;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    background-repeat: no-repeat;
    background-position: center;
    width: 18px;
    height: 18px;
    background-color: transparent !important;
    border: none !important;
    position: static;
    display: inline-block;
    background-size: 7px;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-title {
    float: left;
}

.ui-datepicker .ui-datepicker-title {
    display: inline-block;
    margin: 0 5px;
    font-size: 10px;
    line-height: 19px;
    color: rgba(2,2,2,0.66);
}

.ui-datepicker .ui-datepicker-prev {
    left: 2px !important;
}

.ui-datepicker .ui-datepicker-next {
    right: 2px !important;
}

.ui-datepicker .ui-datepicker-prev {
    background-image: url(../img/prev.png);
}

.ui-datepicker .ui-datepicker-next {
    background-image: url(../img/arrowIco.png);
}

.ui-datepicker table {
    background: #fff;
}

/*datepicker css*/

@media screen and (max-width: 1400px) {
    body, input, select, textarea, .item-title, .title-tooltip, .footer {
        font-size: 15px;
    }

    .caseList-page .blockTitle {
        font-size: 18px;
    }

    .task-list, .task-item {
        font-size: 13px;
    }

    .table-full th, .table-full td {
        font-size: 14px;
    }

    .menu-lvl1 > li > a:hover:before, .menu-lvl1 > li.active > a:before {
        bottom: -15px;
    }

    .case-tooltip {
        font-size: 12px;
    }

    .btn, .btn:hover {
        height: 38px;
        line-height: 37px;
    }

    aside {
        width: 365px;
    }

    .main-content {
        padding-left: 20px;
    }

    .main-wrap {
        padding-top: 20px;
    }

    .subTitle {
        margin: 5px 0;
    }

    .case-actions {
        right: 10px;
        top: 10px;
    }

    .remove-case {
        display: inline-block;
        width: 15px;
    }

    .nano {
        min-height: 645px;
    }

    /*datepicker css*/
    .ui-datepicker {
        width: calc( 50% - 412px);
    }

    .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default,
    .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
        min-height: 30px;
    }

    .noCaseFound {
        min-height: calc(100vh - 160px);
    }
    /*datepicker css*/
}
/*dev css*/
.redBrd {
    border: 1px solid #E44646 !important;
}

/*Change Password Screen Error Msg*/
.errorMsgPwd {
    display: none;
    font-size: 14px !important;
    color: #e04646;
    width: 310px !important;
}

.case-view-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('/content/internal/img/arrowIco.png');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.grid-sort {
    cursor: pointer;
}

.focused-ddl {
    border-color: #959595 !important;
}

.GridClass {
    position: relative;
    padding-bottom: 80px;
    min-height: calc(100vh - 170px);
}

.pagination {
    margin: auto;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-bottom: 10px;
}

.scrollable {
    width: 100%;
    overflow-y: auto;
    max-width: calc( 100vw - 40px);
}

.table-full {
    width: auto;
    min-width: 100%;
}

.deleteCase a {
    display: block;
    width: 18px;
}

.input::-ms-clear, input::-ms-reveal {
    display: none;
}

.blockLoader .blockUI.blockOverlay {
    position: fixed !important;
}

.blockLoader .blockUI.blockMsg.blockElement {
    top: 50% !IMPORTANT;
    position: fixed !important;
    margin-top: -25px;
}

.pagination input.pagging-item {
    width: 60px;
    text-align: center;
}

/*region start client list styles form client management*/

.form-group-input {
    float: left;
    width: 38%;
    padding: 5px 15px;
}
.form-group-btn {
    float: left;
    width: 24%;
    padding: 5px 15px;
}
.btn-gray, .btn-gray:hover {
    background: #999;
    color: #fff;
}
.action-btns {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}
.add-btn-wrap {
    padding: 20px 0px 20px 0px;
}
.client-modal .modal-title h4 {
    margin-top: 15px;
}
.client-modal .input-label {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}
.client-modal .btn-wrap {
    padding: 0;
    margin-top: 15px;
}

/*region end client list styles form client management*/