﻿/*
    Site Colours

    * Main: #f8f8f8;
    * Accent: #003f45; ##OLD #05205E
    * Hover: #00688D;
    * Font: #444;
    * Error/Red: #cf110e;
    * Grey: #666;
    * Selected: #A75600;
    * Border: #b9b9b9;
    * Orange: #ff9600;
    * Green: Green;
*/

@import 'https://fonts.googleapis.com/css?family=Open+Sans';


/* Clearfix */
/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
    *zoom: 1;
}

/* Default site styles */

html, body {
    height: 100%;
    width: 100%;
}

body {
    padding: 0;
    margin: 0;
    color: #444;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    /*background: #f8f8f8;*/
    -webkit-font-smoothing: antialiased;
    overflow-y: scroll;
}

.ui-widget-content {
    color: #444;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    /*background: #f8f8f8;*/
    -webkit-font-smoothing: antialiased;
}

[id^=dialog-] {
    display: none;
}

.ui-dialog [id^=dialog-] {
    display: block !important; /*Override the display none property once the dialog is inside the jquery wrapper*/
}

hr.divider {
    border-top-color: #003f45;
    border-top-width: 2px;
}

.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.dl-horizontal dt {
    white-space: normal;
}

[disabled], .disabled, .disabled-group input {
    background-color: #fff;
    background-image: none;
    border: 1px solid #e9e9e9;
    color: #e4e4e4;
    cursor: not-allowed !important;
    color: #b9b9b9;
}

    [disabled]:hover, .disabled:hover {
        background-color: #fff;
        background-image: none;
        border: 1px solid #e9e9e9;
        color: #e4e4e4;
        cursor: not-allowed;
        color: #b9b9b9;
    }

    [disabled] a, .disabled a {
        pointer-events: none;
        background-color: #fff !important;
        background-image: none;
        border: 1px solid #e9e9e9;
        color: #e4e4e4;
        cursor: not-allowed !important;
        color: #b9b9b9 !important;
    }

        [disabled]:hover a, .disabled:hover a, [disabled] a:hover, .disabled a:hover {
            pointer-events: none;
            background-color: #fff;
            background-image: none;
            border: 1px solid #e9e9e9;
            color: #e4e4e4;
            cursor: not-allowed !important;
            color: #b9b9b9;
        }


.info {
    position: relative;
    top: 2px;
    left: 4px;
    color: #666;
}

.hide {
    display: none;
}

label.block {
    display: block;
}

.error {
    color: #cf110e;
}

.success {
    color: #0ECF11;
}

.ui-widget-content a.btn-primary {
    color: #fff;
}

#menu {
    display: none;
}

.page-title {
    width: 100%;
    text-align: center;
    display: block;
    text-transform: uppercase;
    font-weight: 100;
    /*margin-top: 0;*/
    margin-bottom: 0px;
    font-size: 2em;
}

.row {
    margin: 0px;
}

.col-padding-top div[class*='col-md-'] {
    padding-top: 10px;
}


i.glyphicon {
    top: 0px;
}



h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 100;
    /*text-shadow: 1px 1px 1px rgba(0,0,0,0.004);*/
}

.hide-text-overflow {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    word-wrap: normal !important; /* Overwrite any elements that has 'word-wrap: break-word;' on them to allow the '...' to take effect instead. - Josh  */
}

.no-padding {
    padding: 0;
}

.no-padding-top {
    padding-top: 0px;
}

.no-padding-top-important {
    padding-top: 0px !important;
}

.no-padding-bottom {
    padding-bottom: 0px;
}

.no-padding-bottom-important {
    padding-bottom: 0px !important;
}


.no-padding-right {
    padding-right: 0px;
}

.no-padding-left {
    padding-left: 0px;
}

.margin-right-15-important {
    margin-right: 15px !important;
}

.no-margin {
    margin: 0px;
}

.no-margin-top-important {
    margin-top: 0px !important;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.var-align {
    vertical-align: middle;
}

.margin-left-8 {
    margin-left: 8px;
}



/*Breadcrumb*/

.breadcrumb {
    text-align: left;
    background: rgba(177, 189, 197,.3);
    margin-bottom: 0;
    border-radius: 0;
}

    .breadcrumb:before {
        color: #444;
        content: "Path: ";
        margin-right: 5px;
        font-weight: bold;
    }

    .breadcrumb > li + li:before {
        font-family: 'icomoon' !important;
        color: #444;
        content: "\e940";
        position: relative;
        top: 1px;
    }

    .breadcrumb > li:last-of-type a {
        color: #999999;
        pointer-events: none;
    }


/* A link defaults */

a {
    color: #003f45;
    cursor: pointer;
}

    a:hover {
        color: #00688D;
        /*text-decoration: none;*/
    }

    a:focus {
        text-decoration: none;
    }

/* Input defaults */

select {
    width: 100%;
    padding: 5px;
    border: 1px solid #b9b9b9;
    box-shadow: inset 0 0px 1px rgba(0,0,0,.2);
    border-radius: 1px;
    background: #f8f8f8;
    background: #fff;
}

    select:hover {
        border: 1px solid #003f45;
    }

    select:focus {
        outline: none;
        border: 1px solid #003f45;
    }

input[type=text], input[type=password], input[type=number] {
    width: 100%;
    padding: 5px;
    border: 1px solid #b9b9b9;
    box-shadow: inset 0 0px 1px rgba(0,0,0,.2);
    border-radius: 1px;
    /*padding-left: 30px;*/
    background: #f8f8f8;
    background: #fff;
}

    input[type=text]:hover, input[type=password]:hover, input[type=number]:hover {
        border: 1px solid #003f45;
    }

    input[type=text]:focus, input[type=password]:focus, input[type=number]:focus {
        outline: none;
        border: 1px solid #003f45;
    }

    input[type=text]:disabled, input[type=password]:disabled, input[type=number]:disabled {
        background-color: #fff;
        background-image: none;
        border: 1px solid #e9e9e9;
        color: #e4e4e4;
        cursor: not-allowed;
        color: #b9b9b9;
    }


textarea {
    width: 100%;
    height: 112px;
    padding: 5px;
    border: 1px solid #b9b9b9;
    box-shadow: inset 0 0px 1px rgba(0,0,0,.2);
    border-radius: 1px;
    /*padding-left: 30px;*/
    background: #f8f8f8;
    background: #fff;
    resize: vertical;
}

    textarea:hover {
        border: 1px solid #003f45;
    }

    textarea:focus {
        outline: none;
        border: 1px solid #003f45;
    }


.inputIconBox {
    position: relative;
}

    .inputIconBox input {
        padding-left: 30px;
    }

    .inputIconBox i {
        position: absolute;
        left: 25px;
        top: 10px;
        color: #003f45;
    }

.details .inputIconBox input {
    padding-left: 30px;
}

.details .inputIconBox i {
    position: absolute;
    left: 10px;
    top: 9px;
    color: #003f45;
    font-size: 1.2em;
}

.details .inputIconB.ox-right input {
    padding-left: 5px;
}

.details .inputIconBox-right i {
    left: 95%;
}


.details .button {
    padding-top: 25px;
}

    .details .button .btn {
        width: 100%;
    }

.details.tabs .save {
    padding-right: 30px;
    padding-top: 20px;
}

.details p {
    padding-bottom: 10px;
}

/*.details span {
    padding-top: 7px;
    display: inline-block;
}*/

.details ul {
    padding: 0;
}

    .details ul li {
        margin-top: 0px;
        /*margin-bottom: 5px;*/
        border-bottom: 1px solid #b9b9b9;
        padding: 7px 5px;
        list-style: none;
        background: #a4e2d4;
    }

        .details ul li:last-of-type {
            border-bottom: none;
        }

        .details ul li:nth-child(2n+1) {
            background: #f8f8f8;
        }


.cursor-pointer {
    cursor: pointer;
}


/* System buttons */


.action-btn {
    /*text-shadow: 0 0 2px #111, 2px 2px 2px #444;*/
}

.btn {
    border-radius: 1px;
}

.btn-primary {
    background: #0F3F44;
    
}

    .btn-primary:hover {
        background: #87b0af;
    }

.btn-danger {
    background: none;
    color: #cf110e;
    border: 1px solid #cf110e;
}

    .btn-danger:hover {
        background: #cf110e;
        color: #fff;
        border: 1px solid #cf110e;
    }

    .btn-danger:focus {
        outline: none;
    }

.btn-secondary {
    background: none;
    color: #666;
    border: 1px solid #666;
}

    .btn-secondary:hover {
        background: #a4e2d4;
        color: #fff;
        border: 1px solid #666;
    }

    .btn-secondary:focus {
        outline: none;
    }


.icon-btn {
    color: #666;
    text-decoration: none;
    padding-top: 7px;
    display: inline-block;
    font-size: 1.2em;
}

    .icon-btn:hover {
        color: #666;
        text-decoration: none;
    }

.icon-btn-danger {
    color: #cf110e;
    text-decoration: none;
    padding-top: 7px;
    display: inline-block;
    font-size: 1.2em;
}

    .icon-btn-danger:hover {
        color: #cf110e;
        text-decoration: none;
    }

/* Header */
header {
    height: 92px;
    border-bottom: 1px solid #444;
    /*overflow: hidden;*/
}

    header .logo {
        display: inline-block;
        width: 50px;
        vertical-align: top;
        margin: 20px 10px;
        margin-left: 10px;
        height: 52px;
    }

        header .logo img {
            width: 100%;
            height: auto;
        }

    header h1 {
        margin: 0px;
        padding: 0px;
        font-weight: 100;
        font-family: 'Open Sans', sans-serif;
        font-size: 1.9em;
        display: inline-block;
        line-height: 92px;
        height: 80px;
        vertical-align: top;
        /*text-transform: uppercase;*/
    }

    header .user-details {
        /*margin: 25px 5px;*/
        margin: 25px 0px;
        /*display: inline-block;*/
        /*width: auto;*/
        text-align: right;
    }

        header .user-details span {
            display: block;
        }

    header #dropdown {
        display: inline-block;
        padding: 10px 16px;
        width: 230px;
        /*margin: 0 auto;*/
        text-align: left;
        position: relative;
        cursor: pointer;
        /*border-bottom: 1px solid #739cda;*/
        border-left: 4px solid #003f45;
        border-radius: 1px;
        background: #fff;
        font-size: 1em;
        color: #656565;
        font-weight: normal;
        -webkit-box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
        -moz-box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
        box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
        -webkit-transition: all 0.15s linear;
        -moz-transition: all 0.15s linear;
        -ms-transition: all 0.15s linear;
        -o-transition: all 0.15s linear;
        transition: all 0.15s linear;
        user-select: none;
    }

        header #dropdown:after {
            font-family: 'icomoon' !important;
            content: '\ea33';
            position: absolute;
            top: 11px;
            right: 6px;
            /*font-size: 16px;*/
            /*line-height: 0.8;*/
            color: #003f45;
            transition: all .2s;
        }

        header #dropdown:hover {
            color: #898989;
        }

        header #dropdown.open {
            background: #003f45;
            color: #fff;
            border-left-color: #8e9196;
        }

            header #dropdown.open:after {
                /*background: #003f45;*/
                color: #fff;
                /*border-left-color: #8e9196;*/
            }

        header #dropdown ul {
            position: absolute;
            top: 100%;
            left: -4px; /* move content -4px because of container left border */
            width: 230px;
            padding: 0px 0px;
            display: none;
            border-left: 4px solid #8e9196;
            background: #fff;
            -webkit-box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
            -moz-box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
            box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
            z-index: 99999;
        }

            header #dropdown ul li {
                font-size: 0.9em;
                list-style: none;
            }

                header #dropdown ul li span {
                    text-decoration: none;
                    display: block;
                    background: #e9e9e9;
                    color: #444;
                    padding: 7px 15px;
                    cursor: default;
                    border-bottom: 1px solid #8e9196;
                }

                header #dropdown ul li a {
                    text-decoration: none;
                    display: block;
                    color: #003f45;
                    padding: 7px 15px;
                }

                    header #dropdown ul li a:hover {
                        color: #fff;
                        background: #003f45;
                    }



    header #previewSystem {
        display: inline-block;
        padding: 10px 16px;
        margin-right: 20px;
        width: 230px;
        /*margin: 0 auto;*/
        text-align: left;
        position: relative;
        cursor: pointer;
        /*border-bottom: 1px solid #739cda;*/
        border-left: 4px solid #00bf94;
        border-radius: 1px;
        background: #fff;
        font-size: 1em;
        color: #656565;
        font-weight: normal;
        -webkit-box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
        -moz-box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
        box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
        -webkit-transition: all 0.15s linear;
        -moz-transition: all 0.15s linear;
        -ms-transition: all 0.15s linear;
        -o-transition: all 0.15s linear;
        transition: all 0.15s linear;
        user-select: none;
    }

        header #previewSystem:after {
            font-family: 'icomoon' !important;
            content: '\ea33';
            position: absolute;
            top: 11px;
            right: 6px;
            /*font-size: 16px;*/
            /*line-height: 0.8;*/
            color: #00bf94;
            transition: all .2s;
        }

        header #previewSystem:hover {
            color: #898989;
        }

        header #previewSystem.open {
            background: #4bafd4;
            color: #444;
            border-left-color: #8e9196;
        }

            header #previewSystem.open:after {
                /*background: #003f45;*/
                color: #fff;
                /*border-left-color: #8e9196;*/
            }

        header #previewSystem ul {
            position: absolute;
            top: 100%;
            left: -4px; /* move content -4px because of container left border */
            width: 230px;
            padding: 0px 0px;
            display: none;
            border-left: 4px solid #8e9196;
            background: #fff;
            -webkit-box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
            -moz-box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
            box-shadow: 0px 0px 2px rgba(0,0,0,0.3);
            z-index: 99999;
            max-height: 500px;
            overflow-y: auto;
            overflow-x: hidden;
        }

            header #previewSystem ul li {
                font-size: 0.9em;
                list-style: none;
            }

                header #previewSystem ul li span {
                    text-decoration: none;
                    display: block;
                    background: #e9e9e9;
                    color: #444;
                    padding: 7px 15px;
                    cursor: default;
                    border-bottom: 1px solid #8e9196;
                }

                header #previewSystem ul li a {
                    text-decoration: none;
                    display: block;
                    color: #444;
                    padding: 7px 15px;
                }

                    header #previewSystem ul li a:hover {
                        color: #444;
                        background: #4bafd4;
                    }

    header a.btn.btn-secondary {
        padding: 10px 16px;
    }


        header a.btn.btn-secondary:last-of-type {
            margin-right: 20px;
        }

/* TABS */
.nav-tabs.default {
    /*background: #f8f8f8;*/
    display: inline-table;
    width: 100%;
}

    .nav-tabs.default > li {
        display: table-cell;
        margin-right: 0;
        border-radius: 0;
    }

        .nav-tabs.default > li > a {
            border-radius: 0;
            margin-right: -1px;
            background: #e9e9e9;
            border: 1px solid #ddd;
            color: #444;
        }

            .nav-tabs.default > li > a:hover, .nav-tabs.defualt > li > a:focus {
                background: #eee;
                border: 1px solid #ddd;
            }

        .nav-tabs.default > li:first-of-type > a, .nav-tabs.default > li:first-of-type > a:hover, .nav-tabs.default > li:first-of-type > a:focus {
            /*border-left: none;*/
        }

        .nav-tabs.default > li.active > a, .nav-tabs.default > li.active > a:hover, .nav-tabs.default > li.active > a:focus {
            background: #fff;
            color: #003f45;
        }

.tab-content.default {
    margin-bottom: 40px;
}

    .tab-content.default .tab-pane {
        padding: 20px 10px;
        /*padding-top: 0;*/
        position: relative;
        /*top: -5px;*/
        margin: 0;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        border-top: 1px solid #ddd;
        height: 100%;
        margin-top: -5px;
        background: #fff;
    }


/* Login Page */
#loginForm {
    border: 1px solid #d9d9d9;
    padding: 0px 20px;
    background: #fff;
    /*box-shadow: 0 0 10px 1px rgba(68, 68, 68, 0.4);*/
}


    #loginForm .header {
        margin-bottom: 15px;
    }

    #loginForm h4 {
        margin: 0;
        padding: 0;
        padding-top: 30px;
        display: inline-block;
        font-size: 1.6em;
        text-transform: uppercase;
    }

    #loginForm hr {
        display: block;
        height: 1px;
        border: 0;
        border-top: 1px solid #d9d9d9;
        margin: .7em 0;
        margin-bottom: 1.5em;
        padding: 0;
    }

    #loginForm .checkbox {
        padding-top: 0;
    }

    #loginForm input[type=text], #loginForm input[type=password] {
        background: #f8f8f8;
    }

    #loginForm input[type=submit] {
        width: 100%;
        margin-top: 10px;
    }

    #loginForm [type="checkbox"]:not(:checked) + label:before,
    #loginForm [type="checkbox"]:checked + label:before {
        background: #f8f8f8;
    }


.center {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 350px;
    width: 450px;
}


/* Access Denied */
#accessDenied {
    /*border: 1px solid #cf110e;*/
    /*padding: 0px 10px;*/
    /*background: #fff;*/
    /*box-shadow: 0 0 10px 1px rgba(68, 68, 68, 0.4);*/
}


    #accessDenied .header {
        /*margin-bottom: 15px;*/
    }

    #accessDenied h2 {
        margin: 0;
        padding: 20px 0px;
        display: inline-block;
        font-size: 3.2em;
        text-transform: uppercase;
        color: #cf110e;
        font-weight: 100;
        text-decoration: underline;
        letter-spacing: 0px;
    }

    #accessDenied p {
        margin: 0;
        padding: 5px 0px;
        display: inline-block;
        font-size: 1.4em;
        /*text-transform: uppercase;*/
    }


/* Paging */

.paging {
    /*margin-top: 40px;*/
    text-align: right;
}

.pagination {
    height: 32px;
    /*border-left: 1px solid #b9b9b9;*/
    border-radius: 1px;
    line-height: 32px;
    padding: 0px;
    display: inline-table;
    text-transform: uppercase;
    user-select: none;
    margin-top: 0;
}

    .pagination span {
        padding: 0 15px;
        border: 1px solid #b9b9b9;
        border-right: none;
        display: inline-table;
        box-shadow: inset 0 0px 1px rgba(0,0,0,.2);
        border-radius: 0px;
        height: 32px;
        background: #f8f8f8;
    }

        .pagination span:last-of-type {
            /*border-right: 1;*/
            border-left: 1px solid #b9b9b9;
            border-right: 1px solid #b9b9b9;
            border-radius: 0 1px 1px 0;
        }

        .pagination span:first-of-type {
            border-left: 1px solid #b9b9b9;
            border-right: none;
            border-radius: 1px 0px 0px 1px;
        }

    .pagination .prev, .pagination .next {
        cursor: pointer;
        border-radius: 0px;
        height: 34px;
        width: 33.5px;
        position: relative;
        vertical-align: top;
        border: none;
    }

        .pagination .prev a, .pagination .next a {
            cursor: pointer;
            height: 33.5px;
            width: 33px;
            display: inline-block;
            position: absolute;
            left: 0;
            top: 0;
            text-align: center;
            line-height: 32px;
            border: 1px solid #b9b9b9;
            border-right: none;
        }

    .pagination.pagination-small .prev a, .pagination.pagination-small .next a {
        border-right: 1px solid #b9b9b9;
    }

    .pagination .prev:hover, .pagination .next:hover, .pagination .prev:hover a, .pagination .next:hover a {
        background: #00688D;
        color: #fff;
        text-decoration: none;
    }

    .pagination input {
        padding: 1px 1px;
        border-right: none;
        /*border-right: 1px solid #b9b9b9;*/
        display: inline-table;
        height: 33.5px;
        width: 40px;
        box-shadow: inset 0 0px 1px rgba(0,0,0,.2);
        border-radius: 0px;
        background: #f8f8f8;
        background: #fff;
        text-align: center;
        vertical-align: top;
    }

        .pagination input:hover {
            border: 1px solid #b9b9b9;
            border-right: none;
        }

        .pagination input:focus {
            border: 1px solid #b9b9b9;
            border-right: none;
        }

/* Items Per Page */

.items-per-page {
    height: 32px;
    border: 1px solid #b9b9b9;
    border-radius: 1px;
    line-height: 32px;
    padding: 0px;
    display: inline-table;
    text-transform: uppercase;
}

    .items-per-page span {
        padding: 0 15px;
        border-right: 1px solid #b9b9b9;
        display: inline-table;
        height: 100%;
        box-shadow: inset 0 0px 1px rgba(0,0,0,.2);
        border-radius: 1px;
        background: #f8f8f8;
    }

    .items-per-page select {
        display: inline-table;
        text-transform: uppercase;
        border: none;
        width: 50px;
        padding: 0px;
        height: 32px;
        box-shadow: inset 0 0px 1px rgba(0,0,0,.2);
        border-radius: 1px;
        background: #f8f8f8;
        background: #fff;
    }

/* Filter */

.filterOpen {
    position: relative;
    padding: 10px;
    font-size: 1.2em;
    top: -21px;
    left: 15px;
    background: #003f45;
    color: #fff;
    display: inline-block;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    text-align: center;
    cursor: pointer;
}

    .filterOpen:hover {
        background: #87b0af;
    }

    .filterOpen.open {
        background: #87b0af;
    }

.filter {
    width: 100%;
    /*max-height: 0;*/
    height: 0;
    overflow: hidden;
    transition: all 1s;
    /*background: #444;*/
    /*margin-bottom: 25px;*/
    padding: 0;
    padding-top: 20px;
    color: #444;
    /*border-top: 1px solid #444;*/
    border-bottom: 1px solid #003f45;
}

    .filter.plain {
        border-bottom: none;
        padding-top: 0px;
        transition: all .8s;
    }

    .filter.open {
        /*animation-duration: 1s;
        animation-name: filter-open;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;*/
        /*max-height: 600px;*/
        /*height: 130px;*/
        padding: 30px 0;
        padding-top: 40px;
        /*overflow: visible;*/
    }

    .filter.filter-default {
        height: 130px;
        border-bottom: none;
    }

    .filter h4 {
        margin-bottom: 15px;
    }

    .filter .submit {
        padding-top: 20px;
    }


        .filter .submit .btn {
            width: 100%;
        }

    .filter .filter-checkbox {
        padding-top: 25px;
    }

        .filter .filter-checkbox label {
            left: 5px;
        }

    .filter .row {
        margin-top: 20px;
    }

        .filter .row:first-of-type {
            margin-top: 0px;
        }

    .filter .action-row {
        /* background: #e9e9e9; */
        margin: 0px;
        padding: 20px 0;
        /* margin: 0px 14px; */
        margin-top: 30px;
        border-top: 1px solid #003f45;
    }

    .filter input[type=text], .filter select, .filter .ms-choice, .filter input[type=checkbox] {
        border: 1px solid #003f45;
    }

    .filter .input-group-addon {
        border: 1px solid #003f45;
        border-left: none;
        border-right: none;
    }

    .filter [type="checkbox"]:not(:checked) + label:before {
        border: 1px solid #003f45;
    }

    .filter .search-info {
        text-transform: uppercase;
        text-align: center;
        /*display: inline-block;*/
        /*width: 100%;*/
        padding-top: 25px;
        float: left;
        position: absolute;
        left: -10px;
    }

    .filter .info {
        left: 10px;
        font-size: 1.2em;
    }

/* Data Table */

.data-table {
    /*margin-top: 40px;*/
}

    .data-table .headers {
        border-bottom: 1px solid #d9d9d9;
        padding: 5px 0px;
        color: #999;
        font-size: 1.1em;
        letter-spacing: 0.0035em;
    }

        .data-table .headers div {
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
        }

    .data-table .data {
        padding: 5px 0px;
        border-bottom: 1px solid #b9b9b9;
        background: #fff;
    }

        .data-table .data.clickable {
            cursor: pointer;
        }

        .data-table .data:nth-child(2n+1) {
            background: #a4e2d4;
        }

        .data-table .data:last-of-type {
            margin-bottom: 0px;
        }

        .data-table .data div {
            margin: 5px 0px;
            word-wrap: break-word;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
            word-wrap: normal; /* Overwrite any elements that has 'word-wrap: break-word;' on them to allow the '...' to take effect instead. - Josh  */
        }

            .data-table .data div.fr-box {
                overflow: visible;
            }

        .data-table .data .checkbox-align {
            padding-top: 6px;
        }


    .data-table .actions-info {
        font-size: 1.2em;
        padding: 0px;
        text-align: left;
    }

        .data-table .actions-info a {
            display: inline-block;
            margin: 0 2px;
        }

            .data-table .actions-info a:hover {
                text-decoration: none;
            }

            .data-table .actions-info a.status {
                color: #b4b4b4;
            }

            .data-table .actions-info a.attachments {
                color: #b4b4b4;
                width: 17px;
            }

                .data-table .actions-info a.attachments.no-attachments {
                    color: #ff0000;
                    width: 17px;
                }

    .data-table .actions {
        font-size: 1.2em;
        padding: 0px;
        text-align: right;
    }

        .data-table .actions a {
            display: inline-block;
            margin: 0 5px;
        }

            .data-table .actions a:last-of-type {
                margin-right: 20px;
            }

            .data-table .actions a:hover {
                text-decoration: none;
            }

            .data-table .actions a:focus {
                text-decoration: none;
            }

            .data-table .actions a.add {
                color: green;
            }

            .data-table .actions a.edit {
            }

            .data-table .actions a.delete {
                color: #cf110e;
            }


    .data-table .data.disabled {
        background: rgba(94, 102, 103, .1);
        /*border-bottom: 1px solid #d6d6d6;*/
        /*cursor: not-allowed;*/
    }

        .data-table .data.disabled div {
            /*pointer-events: none;*/
        }

        .data-table .data.disabled .actions a {
            /*pointer-events: none;*/
        }


/* Sorting */

.sortable {
    cursor: pointer;
}

    .sortable:hover {
        color: #00688D;
        /*font-weight: bold;*/
    }

    .sortable.current-sort {
        color: #003f45;
        /*font-weight: bold;*/
        /*border-bottom: 1px solid #00688D;*/
    }


/* Details */

.detals {
    padding-bottom: 40px;
}

.details h3 {
    padding-left: 15px;
}

.details .row {
    padding-top: 20px;
}

    .details .row div:not(.ms-trigger):not(.ms-res-ctn):not(.ms-res-item) {
        position: relative;
    }

    .details .row .row {
        padding-top: 23.2px;
    }

.details .password .btn {
    margin-top: 23px;
    width: 100%;
}

.details .row .languages select {
    margin-bottom: 7px;
}

.details .teams .multiteam-checkbox {
    padding-top: 30px;
}


.details .info {
    position: absolute;
    width: 20px;
    left: 100%;
    top: 29px;
    font-size: 1.6em;
}

.details .checkboxRow label {
    left: 5px;
    position: relative;
}


.details .actions {
    text-align: right;
}

    .details .actions a.delete {
        color: #cf110e;
    }

.details .button-align {
    padding-top: 25px;
}

.details .text-align {
    padding-top: 32px;
}

.details .checkbox-align {
    padding-top: 30px;
    padding-left: 20px;
}

.details .smaller-elements textarea {
    height: 90px;
}

.details .smaller-elements .dropzone {
    min-height: 100px;
}

.countersignatoryready {
    margin-top: 10px;
}

.details .smaller-elements .dropzone .dz-preview .dz-image {
    height: 100px;
    width: 100%;
}

/* Tabs */
.tab-pane {
    padding: 10px 0;
}

/* Dialogs */
.ui-dialog .ui-dialog-content {
    padding: 10px 10px;
    padding-top: 20px;
}

    .ui-dialog .ui-dialog-content input {
        margin: 10px 0px;
    }

    .ui-dialog .ui-dialog-content p {
        padding: 0;
        margin: 0;
    }

        .ui-dialog .ui-dialog-content p:last-child {
            padding: 0;
            margin: 0;
            padding-bottom: 20px;
        }

.ui-dialog .ui-dialog-buttonpane {
    padding: 0px;
    margin: 0;
    border-top: none;
}

.ui-dialog .ui-dialog-titlebar {
    background: none;
    border: none;
    font-size: 1.2em;
    padding: 10px 10px;
    border-bottom: 1px solid #b9b9b9;
    border-radius: 0;
}


    .ui-dialog .ui-dialog-titlebar button {
        display: none;
    }


.alert .ui-dialog-titlebar {
    border-color: #cf110e !important; /* Overwrite Default jQuery UI dialog styles, when custom class is added to the dialog */
    color: #cf110e !important; /* Overwrite Default jQuery UI dialog styles, when custom class is added to the dialog */
}

/* Tabs */

.tabs-left, .tabs-right {
    position: relative;
    padding-top: 0;
    z-index: 1;
}

    .tabs-left > li {
        margin-right: 0px;
        margin-bottom: 0;
        border-bottom: 1px solid #f8f8f8;
    }

        .tabs-left > li > a {
            border-radius: 0;
            margin-right: 0;
            display: block;
            background: #ddd;
        }

        .tabs-left > li:first-child > a {
            background: #a4e2d4;
        }

        .tabs-left > li:first-child {
            border-bottom: 1px solid #ddd;
        }

.nav-tabs > li.active:first-child > a {
    background: #fff;
}

.tabs-left > li.new-element > a {
    background: #106e58;
    color: white;
    margin-top: 20px;
}

    .tabs-left > li.new-element > a > i {
        float: right;
        margin-top: 3px;
    }

.tabs-left > li.DS-Markup > a {
    background: #1bb793;
    color: white;
}

    .tabs-left > li.DS-Markup > a > i {
        float: right;
        margin-top: 3px;
    }

.tabs-left > li.pdf-report > a {
    background: #169276;
    color: white;
}

    .tabs-left > li.pdf-report > a > i {
        float: right;
        margin-top: 3px;
    }

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    /*border: 1px solid transparent;*/
    border: 1px solid #ddd;
    border-right: none;
    /*border-right: 1px solid #ddd;*/
}


.nav-tabs > li:last-of-type.active > a, .nav-tabs > li:last-of-type.active > a:hover, .nav-tabs > li:last-of-type.active > a:focus {
    /*border: 1px solid transparent;*/
    border: 1px solid #ddd;
    border-right: 1px solid #ddd;
    /*border-right: 1px solid #ddd;*/
}


.tabs-left {
    /*min-height: 500px;*/
    /*background: #333;*/
    border-right: none;
}

.show-area {
    border-left: 1px solid #ddd;
    margin-bottom: 40px;
    /*background: #fff;*/
}

.inner-tabs {
    padding: 0;
    /*min-height: 500px;*/
    border-radius: 1px;
}

    .inner-tabs .nav-tabs {
        /*background: #f8f8f8;*/
        display: inline-table;
        width: 100%;
    }

        .inner-tabs .nav-tabs > li {
            display: table-cell;
            margin-right: 0;
        }

            .inner-tabs .nav-tabs > li > a {
                border-radius: 0;
                margin-right: -1px;
                background: #e9e9e9;
                border: 1px solid #ddd;
                color: #444;
            }

                .inner-tabs .nav-tabs > li > a:hover, .inner-tabs .nav-tabs > li > a:focus {
                    background: #eee;
                    border: 1px solid #ddd;
                }

            .inner-tabs .nav-tabs > li:first-of-type > a, .inner-tabs .nav-tabs > li:first-of-type > a:hover, .inner-tabs .nav-tabs > li:first-of-type > a:focus {
                border-left: none;
            }

            .inner-tabs .nav-tabs > li.active > a, .inner-tabs .nav-tabs > li.active > a:hover, .inner-tabs .nav-tabs > li.active > a:focus {
                background: #fff;
                color: #003f45;
            }


    .inner-tabs .tab-content .tab-pane {
        padding: 20px 10px;
        padding-top: 0;
        position: relative;
        /*top: -5px;*/
        margin: 0;
        border-right: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        border-top: 1px solid #ddd;
        height: 100%;
        margin-top: -5px;
        background: #fff;
    }


/* Progress */

/*.progress-item {
    margin-top: 0px;
    border-bottom: 1px solid #b9b9b9;
    padding: 7px 5px;
}

    .progress-item:last-of-type {
        border-bottom: none;
    }

    .progress-item:nth-child(2n+1) {
        background: #ddd;
    }*/

.progress-item i {
    position: relative;
    top: 2px;
    left: 6px;
    font-size: 1.2em;
}

.progress-item .icon-check {
    color: green;
}

.progress-item .icon-time-slot {
    color: #ff9600;
}

.progress-item .icon-cross {
    color: #cf110e;
    top: 4px;
}

/* Attachments, Comments & Logs */
.attachment, .comment, .log {
    border-bottom: 1px solid #b9b9b9;
    margin-top: 0px;
    background: #a4e2d4;
}

    .attachment:nth-child(2n+1), .comment:nth-child(2n+1), .log:nth-child(2n+1) {
        background: #f8f8f8;
    }

    .attachment:last-of-type, .comment:last-of-type, .log:last-of-type {
        border-bottom: none;
    }


.log {
    padding: 10px 0px;
}


/* Sortable Rows */
.handle {
    font-size: 1.6em;
    padding: 30px 0px;
    padding-bottom: 0px;
    display: inline-block;
    cursor: pointer;
}

    .handle:hover {
        color: #00688D;
    }

#reorderable .row {
    padding: 15px 0;
    padding-top: 5px;
}

    #reorderable .row:first-of-type {
        padding-top: 15px;
    }

    #reorderable .row:last-of-type {
        padding-top: 15px;
    }

.ui-dialog .ui-dialog-content input {
    margin: 0px;
}


/* Candidate Capture */

.candidateCapture-tabs li {
    background: #ddd;
}

    .candidateCapture-tabs li a {
        background: none;
    }

        .candidateCapture-tabs li a i {
            font-size: 1.5em;
            color: #cf110e;
        }

            .candidateCapture-tabs li a i.icon-hour-glass {
                font-size: 1.3em;
                color: #ff9600;
            }

            .candidateCapture-tabs li a i.icon-check {
                font-size: 1.3em;
                color: green;
            }

    .candidateCapture-tabs li .cc-progressBar {
        background: green;
        display: block;
        position: absolute;
        top: 0px;
        left: 0px;
        height: 43px;
    }

    .candidateCapture-tabs li .cc-progressBar {
        background: #a4e2d4;
        display: block;
        position: absolute;
        top: 0px;
        left: 0px;
        height: 42px;
    }


/*Reset password styling*/

#resetView #dialog-password .contentpassReset {
    margin-bottom: 10px;
}

#dialog-password #NewPassword {
    float: right;
}

#dialog-password #ConfirmPassword {
    float: right;
}

.validation-summary-errors ul {
    list-style: none;
    padding-left: 0px;
    color: #cf110e;
}

.text-danger {
    color: #cf110e;
}

/*model state styling*/
.details .validation-summary-errors ul li {
    background-color: #f8f8f8 !important;
    margin-left: 10px;
}

/* Element Items */

.advancedOptions {
    display: none;
}



.elementItems.elementEdit .elementItem {
    padding: 10px 0px;
    border-bottom: 1px solid #b9b9b9;
}

    .elementItems.elementEdit .elementItem .row:first-of-type {
        padding: 0px;
    }

    .elementItems.elementEdit .elementItem:nth-child(2n+1) {
        background: #a4e2d4;
    }

.elementItem:first-of-type {
    padding-top: 0;
}

.elementItem {
    padding-top: 20px;
}
/*Team styles*/

.teamTargets table tr td p {
    writing-mode: vertical-rl;
    padding: 0px;
    margin: 0px;
}

.teamTargets table tr td:focus {
    outline: #444;
}

.teamTargets #targetsButtonContainer {
    padding-top: 0px;
    float: right;
    padding-right: 0px;
}

.teamTargets #targetContainer {
    padding-right: 0px;
}
/*team targets dialog styles*/
.teamTargetsDialog {
    top: 100px !important;
}

    .teamTargetsDialog .targetDialogIntro {
        padding: 10px;
    }

        .teamTargetsDialog .targetDialogIntro h3 {
            margin: 0px;
            text-decoration: underline;
            text-align: center;
        }

.newRecord {
    width: 100%;
    display: block;
    border-right: 0px;
}

.ZeroPadding {
    padding: 0px !important; /*Important to overide td padding, be careful with use*/
}

.MonthPadding {
    vertical-align: middle !important;
    /* padding-left: 10px; */
    padding-bottom: 0px !important; /*Important to overide td padding, be careful with use*/
    padding-top: 0px !important; /*Important to overide td padding, be careful with use*/
}

.zeroBorder {
    border-top: 0px !important;
    border-bottom: 0px !important;
    border-left: 0px !important;
    border-right: 0px !important;
}

.addNewMonth {
    background-color: rgba(0,123,167, 0.2);
}

.AddNewMonthRow input {
    background-color: rgba(0,123,167, 0.2);
    height: 100%;
    text-align: right;
}

.targetHeaders {
    padding: 0px;
}

/*=============CaseCSS=============*/
.error-msg {
    color: #cf110e;
    font-weight: bold;
    margin-left: 2px;
}

.fixed-height > div {
    min-height: 78px;
}
/*=============CaseCSS=============*/

.showDetails {
    width: 110px;
}

.holidayHeaders {
    border-bottom: 1px solid black;
}

.width110 {
    width: 110px;
}

.holidayBody .data:nth-child(2n+1) {
    background-color: #eaeaea;
}

#dialog-targets td {
    vertical-align: middle;
}


.ms-drop {
    z-index: 99999;
    position: absolute;
}

.Holiday .data:nth-child(2n+1) {
    background: #f9f9f9;
}

#holidayDelete {
    float: left;
    margin-top: 7px !important; /*USed for holiday listing delete next to holidays*/
}

.dateIcon:hover span {
    border: 0px !important; /*custom check box is giving all spans a border */
}

.snippetButton {
    cursor: pointer;
}

.sortable.desc:after {
    content: "\25bc";
    padding-left: 5px;
}

.sortable.asc:after {
    content: "\25b2";
    padding-left: 5px;
}

.line-height-34 > span {
    line-height: 34px;
}

.dropzone-btn, .dropzone-btn-candidate {
    display: inline-block;
    width: 90%;
    height: 32px;
    background: #a4e2d4;
    border: 2px solid #003f45;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
}

.dz-preview.dz-file-preview {
    display: none;
}

.breakword {
    word-break: break-word;
}

#removeFiles {
    line-height: 32px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    color: crimson;
    position: absolute;
    margin-left: 5px;
}

.addDialogBackground {
    padding: 20px 10px;
    /* padding-top: 0; */
    position: relative;
    /* top: -5px; */
    margin: 0;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    height: 100%;
    margin-top: -5px;
    background: #fff;
}

.row.log.snippet {
    cursor: pointer;
}

.enquiry-log {
    margin-top: 20px;
}

    .enquiry-log .clearfix {
        z-index: -99999;
    }

    .enquiry-log .icon-circle-with-plus, .log .icon-circle-with-plus {
        color: green;
    }

    .enquiry-log .header-row {
        background-color: transparent;
        font-weight: bold;
    }

        .enquiry-log .header-row a {
            float: right;
        }

    .enquiry-log .row.limit-padding {
        padding: 5px 0px;
        padding-top: 5px;
        background: #a4e2d4;
    }

        .enquiry-log .row.limit-padding:nth-child(2n+1) {
            background: #f8f8f8;
        }

    .enquiry-log .row .timestamp {
        /*font-weight: bold;*/
    }

    .enquiry-log .buttons a, .log .buttons a {
        display: inline-block;
        float: right;
        margin-left: 4px;
    }

    .enquiry-log .icon-trash, .log .icon-trash {
        color: rgb(167, 34, 32);
    }

.dbsStatusCheckLog {
    margin-top: 20px;
}

    .dbsStatusCheckLog .clearfix {
        z-index: -99999;
    }

    .dbsStatusCheckLog .header-row {
        background-color: transparent;
        font-weight: bold;
    }

        .dbsStatusCheckLog .header-row a {
            float: right;
        }

    .dbsStatusCheckLog .row.limit-padding {
        padding: 5px 0px;
        padding-top: 5px;
        background: #a4e2d4;
    }

        .dbsStatusCheckLog .row.limit-padding.no-background {
            background: transparent;
        }

        .dbsStatusCheckLog .row.limit-padding:nth-child(2n+1) {
            background: #f8f8f8;
        }

.log i {
    font-size: 20px;
}

#new-Enq-Btn {
    float: right;
}

.full-enquiry-log .icon-circle-with-plus {
    color: green;
}

div.log.row.limit-padding {
    padding: 10px 0;
    margin-bottom: 0;
}

.snippet-dialog .snippet-select {
    border: 1px solid #b9b9b9;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

.snippet-dialog > .row {
    margin-bottom: 10px;
}

.snippet-dialog .snippet-select .row:hover {
    background-color: aliceblue;
    cursor: default;
}

.unitsSelect {
    background-color: white;
}

    .unitsSelect li {
        vertical-align: middle;
    }

        .unitsSelect li label {
            margin: 0px;
            vertical-align: middle;
        }

        .unitsSelect li input[type="checkbox"] {
            display: inline-block;
            margin: 0px;
            margin-left: 20px;
            vertical-align: middle;
        }

.subUnitsInputBox {
}

#reorderable > li.sortable:active {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

input.item-readonly, textarea.item-readonly {
    background-color: #f1f1f1;
}

.system-tabs span.element-summary {
    font-size: 0.8em;
    color: #444;
}

.hourglass-panel {
    text-align: center;
    margin-top: 200px;
    margin-bottom: 200px;
}

.progress-item .icon-progress-red {
    color: crimson;
}

.progress-item .icon-progress-orange {
    color: darkorange;
}

.progress-item .icon-progress-green {
    color: rgb(0, 148, 0);
}

i.icon-progress-empty.icon-progress-red {
    color: crimson;
}

i.icon-progress-two.icon-progress-orange {
    color: darkorange;
}

i.icon-progress-two.icon-progress-yellow {
    color: yellow;
}

i.icon-progress-empty.icon-progress-grey {
    color: #ccc;
}

i.icon-progress-full.icon-progress-green {
    color: green;
}

.ellipsis-wrap {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.details .chosen-select ul li {
    list-style: none;
    display: list-item;
    background-image: none;
    position: static;
    padding: 0;
    border: none;
    background: none;
}

.details .row div.ms-drop {
    position: absolute;
}



/* Dashboard ******************* */



/*.dashboard-element input[type=text], .dashboard-element select, .dashboard-element .ms-choice, .dashboard-element input[type=checkbox] {*/
/*border: 1px solid #003f45;
}*/

.sectionTitle {
    position: relative;
    margin-top: 30px;
    font-size: 1.4em;
}

.dashboard-elements .data-table .data div {
    margin: 3px 0px;
}

.dashboard-element {
    padding: 0;
    /*background: rgb(241, 241, 241);*/
    /*background: #E5E5E5;*/
    /*background: rgb(210, 237, 247);*/
    /*background: rgb(83, 84, 88);*/
    padding-top: 10px;
    margin-top: 20px;
}

    .dashboard-element .page-title {
        position: relative;
        z-index: 2;
        display: inline-block;
        padding-left: 1em;
        padding-right: 1em;
        /*color: #6f7890;*/
        vertical-align: middle;
        font-weight: 100;
        margin-top: 0px;
    }

    .dashboard-element .collapsableTitle {
        position: relative;
        display: block;
        /*text-align: center;*/
    }

        .dashboard-element .collapsableTitle h5 {
            /*background-color: rgb(241, 241, 241);*/
            /*background-color: #E5E5E5;*/
            /*background-color: rgb(210, 237, 247);*/
            background-color: #fff;
            width: auto;
            position: relative;
            display: inline-block;
            padding-right: 1em;
            margin: 10px 0;
        }

        .dashboard-element .collapsableTitle:before {
            content: "";
            width: 100%;
            height: 1px;
            border-bottom: 1px solid #999;
            position: absolute;
            left: 0px;
            top: 19px;
        }

        .dashboard-element .collapsableTitle:not(.collapsed) {
            color: #003f45;
        }

            .dashboard-element .collapsableTitle:not(.collapsed):before {
                border-bottom: 1px solid #003f45;
            }

        .dashboard-element .collapsableTitle.overdue:not(.collapsed) {
            color: crimson;
        }

            .dashboard-element .collapsableTitle.overdue:not(.collapsed):before {
                border-bottom: 1px solid crimson;
            }

        .dashboard-element .collapsableTitle.today:not(.collapsed) {
            color: #ff9600;
        }

            .dashboard-element .collapsableTitle.today:not(.collapsed):before {
                border-bottom: 1px solid #ff9600;
            }

    .dashboard-element h2, .dashboard-element h3, .dashboard-element h4 {
        color: #444;
    }

    .dashboard-element span {
        color: #444;
    }

    .dashboard-element .headers {
        color: #444;
        font-weight: bold;
        border-bottom: 1px solid #b9b9b9;
        /*background: #e9e9e9;*/
    }

    .dashboard-element a {
        color: #666;
    }

        .dashboard-element a:hover {
            color: #003f45;
        }

    .dashboard-element .data-table .data:nth-child(2n+1) {
        /*background: rgb(205, 234, 245);*/
    }


.red-important {
    color: #cf110e !important;
}

.amber-important {
    color: #f6980b !important;
}

.green-important {
    color: #1aaa08 !important;
}

.row.notification-user {
    background: rgba(26, 170, 8, 0.3) !important; /* override the default list background style */
}

.row.notification-client {
    background: rgba(246, 152, 11, 0.3) !important; /* override the default list background style */
}

.row.notification-file {
    background: #fff !important; /* override the default list background style */
}

.notifications .data-table .data:last-of-type {
    margin-bottom: 0px;
}

[data-href] {
    cursor: pointer;
}

    [data-href]:hover {
        background: #eee !important; /*Change row when hovering*/
    }

.data-table a h5 {
    /*border-bottom: 1px solid #b9b9b9;*/
    padding-bottom: 5px;
    margin: 0px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.tableSort div:hover {
    color: #003f45;
    cursor: pointer;
    user-select: none;
}

.kpis .filterSection {
    border-bottom: 1px solid #c9c9c9;
    padding-bottom: 20px;
}

.kpis .stats {
    padding: 10px 0px;
    padding-bottom: 0px;
    /*border-bottom: 1px solid #b9b9b9;*/
    letter-spacing: 0.03em;
}

    .kpis .stats h4 {
        font-weight: 100;
        color: #888;
        text-transform: uppercase;
        font-size: .9em;
    }

    .kpis .stats span {
        font-weight: bold;
        color: #003f45;
        font-size: 3em;
        -webkit-font-smoothing: antialiased;
    }

.notifications .data-table .data .col-md-12, .notifications .data-table .data .col-md-6 {
    font-size: .9em;
}

.notifications .highlight {
    font-weight: bold;
    font-style: italic;
    font-size: 1em;
}

.in {
    margin-bottom: 20px;
}
/*Edit element setup*/
.element-table {
    color: #444;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .element-table .element-table-header {
        font-weight: bold;
        border-bottom: 1px solid #b9b9b9;
        padding: 5px 0;
    }

    .element-table .element-table-body {
        max-height: 500px;
        overflow: auto;
    }

    .element-table .element-table-row {
        background: #f8f8f8;
        border-bottom: 1px solid #b9b9b9;
        padding: 15px 0px;
    }

        .element-table .element-table-row:nth-child(2n+1) {

            background: #a4e2d4;
        }


    .element-table .deleteEle {
        color: #cf110e;
        float: right;
    }


.element-add {
    margin-top: 20px;
}

    .element-add select {
        height: 33px;
    }

.no-title-bar.ui-dialog .ui-dialog-titlebar {
    display: none;
}

.new-element-dialog.ui-dialog .alignto-table {
    margin-right: 40px;
    margin-bottom: 20px;
}

.new-element-dialog.ui-dialog .ui-dialog-titlebar {
    display: none;
}


.cred-blue {
    color: #003f45;
}

.attachments.empty-attachments {
    width: 16.8px;
}

.amber {
    color: #f6980b;
}

.red {
    color: #cf110e;
}

.green {
    color: #1aaa08;
}

.place-holder {
    color: transparent;
}

input.input-validation-error {
    border-color: #cf110e;
}

span.field-validation-error {
    color: #cf110e;
}


/* Shortcuts **************************************/

.shortcuts-management i {
    color: #003f45;
    margin-right: 7px;
    font-size: 1.4em;
    /*top: 4px;*/
    position: relative;
    margin-top: 30px;
    display: block;
}

.shortcutsIcon {
    position: relative;
}

.iconPreview {
    position: absolute;
    right: 15px;
    top: 2px;
}


.shortcuts-management .actions {
    padding-top: 25px;
}

.data-table .shortcuts-management {
    margin-top: 15px;
}

    .data-table .shortcuts-management i {
        margin-top: 5px;
    }

    .data-table .shortcuts-management .actions {
        padding-top: 0px;
    }
/*Replicating filter but had to change a few styles*/
.InvoiceControl {
    width: 100%;
    /*max-height: 0;*/
    /*background: #444;*/
    /*margin-bottom: 25px;*/
    color: #444;
    /*border-top: 1px solid #444;*/
    border-bottom: 1px solid #b9b9b9;
}


    .InvoiceControl h4 {
        margin-bottom: 15px;
    }

    .InvoiceControl .submit {
        padding-top: 20px;
    }


.filter .submit .btn {
    width: 100%;
}

.InvoiceControl .InvoiceControl-checkbox {
    padding-top: 25px;
}

    .InvoiceControl .InvoiceControl-checkbox label {
        left: 5px;
    }

.InvoiceControl .row {
    margin-top: 20px;
}

.filter .row:first-of-type {
    margin-top: 0px;
}

.InvoiceControl .action-row {
    /* background: #e9e9e9; */
    margin: 0px;
    padding: 20px 0;
    /* margin: 0px 14px; */
    margin-top: 30px;
    border-top: 1px solid #003f45;
}

.InvoiceControl input[type=text], .InvoiceControl select, .InvoiceControl .ms-choice, .InvoiceControl input[type=checkbox] {
    border: 1px solid #003f45;
}

.InvoiceControl .input-group-addon {
    border: 1px solid #003f45;
    border-left: none;
    border-right: none;
}

.InvoiceControl [type="checkbox"]:not(:checked) + label:before {
    border: 1px solid #003f45;
}
/**/

/* Candidate Form Preview */

.candidateCapture-tabs li.tabLink {
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-right: none;
    /*border-bottom-color: #ddd;*/
}

    .candidateCapture-tabs li.tabLink:first-of-type {
        border-top: 1px solid #ddd;
    }

    .candidateCapture-tabs li.tabLink a, .candidateCapture-tabs li span {
        background: none;
        color: #111;
        text-align: center;
        display: block;
        padding: 10px 5px;
    }

    .candidateCapture-tabs li.tabLink:hover a {
        background: #eee;
    }

    .candidateCapture-tabs li.tabLink a:hover {
        border: 1px solid transparent;
    }

    .candidateCapture-tabs li.tabLink.active a {
        background: #ddd;
        border: none;
    }

    .candidateCapture-tabs li.tabLink i {
        font-size: 1.2em;
        color: grey;
        position: absolute;
        right: 10px;
        top: 14px;
        z-index: 99999;
    }

        .candidateCapture-tabs li.tabLink i.icon-progress-two {
            color: #ff9600;
        }

        .candidateCapture-tabs li.tabLink i.icon-progress-full {
            color: green;
        }

    .candidateCapture-tabs li.tabLink .cc-progressBar {
        background: green;
        display: block;
        position: absolute;
        top: 0px;
        left: 0px;
        height: 43px;
    }

    .candidateCapture-tabs li.tabLink .cc-progressBar {
        background: #18a2d3;
        background: rgba(24, 162, 211, .2);
        display: block;
        position: absolute;
        top: 0px;
        left: 0px;
        height: 42px;
    }

.candidateCapture-tabs li .btn-primary {
    background: #003f45;
}

    .candidateCapture-tabs li .btn-primary:hover {
        background: #87b0af;
    }


.candidateCapture .tab-pane.CaptureSection {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

    .candidateCapture .tab-pane.CaptureSection .row:first-of-type {
        padding-top: 0px;
    }

    .candidateCapture .tab-pane.CaptureSection .row {
        padding: 0px 0px;
    }

    .candidateCapture .tab-pane.CaptureSection form h4 {
        margin-top: 0px;
        margin-bottom: 20px;
        color: #003f45;
        font-weight: bold;
        padding: 0 14px;
    }

    .candidateCapture .tab-pane.CaptureSection .sections {
        padding: 30px 20px;
        border-bottom: 1px solid rgba(1, 153, 208, 01);
        border-top: 1px solid rgba(1, 153, 208, 01);
    }

        .candidateCapture .tab-pane.CaptureSection .sections:nth-child(2n+1) {
            background: rgba(1, 153, 208, 0.05);
        }

        .candidateCapture .tab-pane.CaptureSection .sections .row, .candidateCapture .tab-pane.CaptureSection .CandidateNamesSection .row {
            padding-top: 5px;
        }


    .candidateCapture .tab-pane.CaptureSection .AddElement {
        padding: 20px;
        background: #fff;
    }

    .candidateCapture .tab-pane.CaptureSection .MarkComplete, .candidateCapture .tab-pane.CaptureSection .RevertComplete {
        background: rgba(0, 109, 19, 0.24);
        font-size: .9em;
        border-top: 4px solid #006d13;
        padding: 20px;
    }

.candidateCapture .componentHeader {
    background: #fff;
    border-bottom: 4px solid rgba(1, 153, 208, 01);
}

.inline-block {
    display: inline-block;
}

.large-icon i {
    font-size: 20px;
}

.spacing-icon i {
    padding-left: 5px;
}

/*.row-item {
    display: inline-block;
}*/

.row.data-table td.row-item {
    white-space: nowrap;
    padding: 10px 20px;
    border-top: 1px solid #dddddd;
}

.row.data-table tr {
    padding: 5px 0px;
    border-bottom: 1px solid #b9b9b9;
    background: #fff;
}

.row.data-table tbody tr:nth-child(2n) {
    background: #a4e2d4;
}

.line-32 span {
    line-height: 32px;
}

i.icon-circle-with-plus {
    font-size: 20px;
}

/*SNIPPET ICOM*/
a.snippet-circle {
    float: left;
    background: #003f45;
    width: 20px;
    height: 20px;
    position: relative;
    border-radius: 20px;
}

i.snippet-icon {
    color: #fff;
    position: absolute;
    top: 1px;
    bottom: 0;
    left: 1px;
    right: 0;
    margin: auto;
    height: 15px;
    width: 15px;
}

label.has-snippet {
    float: left;
    padding-right: 5px;
}

.pagination select {
    width: auto;
    display: inline-table;
    height: 34px;
}

.text-area-style {
}

i.e-icon {
    color: limegreen;
    font-size: 26px;
    line-height: 0.2;
    font-family: helvetica;
}


#searchCriteria {
    padding-left: 20px;
}


.disabledCaseElement {
    pointer-events: none;
    background: #f3f3f3;
    cursor: not-allowed;
}

.inline-blocks > * {
    display: inline-block;
}

.ms-ctn {
    width: 100%;
    padding: 5px;
    border: 1px solid #b9b9b9;
    box-shadow: inset 0 0px 1px rgba(0,0,0,.2);
    border-radius: 1px;
    background: #f8f8f8;
    background: #fff;
}

    .ms-sel-ctn .ms-sel-text, .ms-ctn .ms-sel-item {
        margin-left: 3px;
    }

    .ms-ctn .ms-helper {
        color: transparent;
    }

    /*Don't allow hover boarder'*/
    .ms-ctn input {
        border: none !important;
    }

.noty_message .noty_text {
    white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
    white-space: -webkit-pre-wrap; /*Chrome & Safari */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    white-space: pre-wrap; /* css-3 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
    white-space: normal;
}

.dbsStatusCheckLog .showMore {
    text-align: center;
    display: block;
}

.width-30 {
    display: inline-block;
    width: 36.5%;
}

input.width-70 {
    display: inline-block;
    width: 61.5%;
}

#invoice-progress {
    top: 100px;
    width: 50%;
    position: fixed;
    left: 50%;
    margin-left: -25%;
    padding: 0 20px 20px 20px;
    z-index: 99999;
    background: white;
    box-shadow: 2px 2px 10px #333;
}

    #invoice-progress table {
        width: 100%;
    }

    #invoice-progress .invoice-status {
        padding: 5px;
    }

    #invoice-progress table tr * {
        padding: 5px;
    }

    #invoice-progress .invoice-tasks {
        max-height: 550px;
        overflow-y: auto;
    }

    #invoice-progress .buttons {
        padding: 20px 5px 5px 5px;
    }

    #invoice-progress .invoice-bar {
        padding: 20px 5px 0 5px;
    }

        #invoice-progress .invoice-bar .outter-bar {
            border: 1px solid gray;
            height: 20px;
        }

        #invoice-progress .invoice-bar .inner-bar {
            background: rgb(52, 202, 52);
            height: 18px;
            width: 0;
            color: #518bc3
        }

.overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    background: rgba(218, 218, 218, 0.5);
}

.dialog {
    width: 30%;
    background: white;
    border: 1px solid gray;
    margin: auto;
    padding: 0 20px;
    margin-top: 50px;
    border-top: 5px solid #003f45;
    transition: width 0.5s, height 0.5s;
    max-height: calc(100% - 100px); /* 100% - (heightTop + heightBot)*/
    overflow: auto;
}

    .dialog.dialog-error {
        border-top: 5px solid crimson;
    }

    .dialog.dialog-final {
        width: 50%;
    }

.text-right {
    text-align: right;
}

.error-list {
    color: crimson;
}

.referenceRequestTable .header-row {
    padding: 5px;
}


.referenceRow {
    padding: 5px 5px 5px 5px;
    /*border-left: 3px solid #003f45;*/
}

    .referenceRow:nth-child(even) {
        background: rgb(229, 242, 246);
    }

    .referenceRow .no-padding > div {
        line-height: 36px;
    }

    .referenceRow .no-padding, .referenceRequestTable .header-row {
        margin-left: -15px;
        margin-right: -15px;
    }



    .referenceRow .btn {
        margin-left: 5px;
        width: 75px;
        background: white;
    }

    .referenceRow .btn-secondary:hover {
        background: #666;
    }

    .referenceRow .btn-danger:hover {
        background: #cf110e;
    }

    .referenceRow.canceled .status-text {
        text-decoration: line-through;
    }

/* Added for changes made as per spec document 'credence_35_Various_Internal' */
.bg-ele-danger {
    background-color: #8DC7CB !important;
}


.validation-error {
    border: 1px solid crimson !important;
}

.emailInvalidError {
    display: none;
    margin-left: 10px;
}

.emailInvalidError_show {
    font-weight: bold;
    color: #cf110e;
    margin-left: 10px;
}

.phoneNumberField {
    position: relative;
    width: 66.66666667%;
    padding-left: 0px;
    padding-right: 0px;
}

.phoneNumberSelect {
    position: relative;
    width: 33.33333333%;
    padding-left: 0px;
    padding-right: 0px;
}

.fileDescValidation {
    border-color: red;
}

#duo_iframe {
    width: 100%;
    min-width: 304px;
    max-width: 620px;
    height: 330px;
    border: none;
}

/* Cases Overview */

#savedSearchPanel {
    padding-top: 7px;
}

.chosen-select-customFields {
    width: 73% !important;
}

#dlt-txt {
    padding-bottom: 10px;
    text-align: center;
}

#dlt-case {
    padding: 10px;
    border-top: .5px solid #b9b9b9;
    border-bottom: .5px solid #b9b9b9;
}

#dlt-table {
    width: 95%;
    font-size: 12px;
    text-align: center;
}

.dlt-cell {
    padding: 5px;
    width: 25%;
}

.dlt-cel-cli {
    padding: 5px;
    width: 30%;
}

.dlt-cel-id {
    padding: 5px;
    color: #cf110e;
    width: 20%;
}

/* Styling for new Trans Union form work */
.externalRequestFormLabel {
    padding-top: 5px;
}

.externalRequestFormField {
    padding: 15px;
}

.tu-summary {
    position: relative;
}

.tu-summary .tooltiptext {
    visibility: hidden;
    width: 95px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    margin-left: -60px;
    margin-bottom: 5px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 15.5px;
}

.tu-summary .tooltiptext:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}
/* CASE LISTING */

.sign-selected-btn {
    width: 120px;
    margin-left: 10px;
}
.return-selected-btn {
    width: 140px;
    margin-left: 10px;
    background-color: red;
    color: white;
}

.assign-selected-btn {
    margin-left: 10px;
    margin-top: -3px;
}

.selected-cases-container {
    margin-left: 20px;
}

#dialog-multi-assign p {
    margin-bottom: 12px;
}

.batch-submit-btn {
    width: 160px;
    margin-left: 10px;
}

.dbs-invalid {
    background-color: #ff000061 !important;
}

    .dbs-invalid:hover {
        background-color: #ff000038 !important;
    }

.id-verification-route {
    margin: 0 !important;
    width: 24px;
    text-align: center;
    background: grey;
    color: white;
    border-radius: 15px;
    font-weight: bold;
    min-height: 20px;
}

/*Counter signatory section on user page*/
.countersignatory {
    padding-left: 0 !important;
}

    .countersignatory:before {
        content: '';
        position: absolute;
        left: 0 !important;
        top: 33px !important;
        width: 17px;
        height: 17px;
        border: 1px solid #aaa;
        background: #f8f8f8;
        background: #fff;
        border-radius: 1px;
        box-shadow: inset 0 0px 1px rgba(0,0,0,.2);
    }

    .countersignatory:after {
        position: absolute !important;
        top: 35px !important;
        left: 0px !important;
    }

/*Counter signatory section on element detail page*/
.countersignatoryready {
    margin-top: 10px;
}