﻿
/*Conventions and Structure*/

/* 


CONVENTIONS to be used throughout stylesheets
-----------------------------------------------
Css Classes: 

    * general styles - lower case with pattern: bbs-styleorelement-descriptor. Ex: bbs-width-auto
    * sections of a view - lower case with pattern: bbs-section-descriptor. Ex: bbs-section-borrowerinformation
    * components - lower case with pattern: bbs-componenttype-optionaldescriptor Ex: bbs-panel
        
Css Ids:

    * ProperCase (this works well with csharp properties of view models that appear as form element ids).  Ex: HeadsUpDisplay, TitleBar 

    


STYLESHEET STRUCTURES
----------------------------------------------

* main.css Structure:

    1) Other stylesheet overrides (Bootstrap, Stardom, Kendo) and common elements
    2) Global components (containers, buttons, form controls, etc)
    3) Global general modifiers (widths, margins, paddings, text alignment, etc)

* generalviews.css (such as account, dashboard, etc), origination.css, creditonly.css (and other views css) Structures:

    1) General common components (common widgets, common custom controls, etc)
    2) View specific styles and overrides

*/


/*Overrides*/

/*#region Override Bootstrap*/

/*Overriding Bootstrap*/


/*#endregion*/

/*#region Override Global Stardom Theme */

/*Overriding Global Theme*/
.header-btns > div > button:focus {
    color: #666;
}

.header-btns > div > button:hover {
    color: #345a8c;
}

ul.sidebar-nav li.active > a .glyphicons {
    color: #5098b7;
}

ul.sidebar-nav ul.sub-nav li span.fa,
ul.sidebar-nav ul.sub-nav li span.fa,
body.sidebar-collapsed ul.sidebar-nav ul.sub-nav li span.fa,
body.sidebar-collapsed ul.sidebar-nav ul.sub-nav li span.fa {
    float: left;
    margin-right: 12px;
    min-height: 15px;
    min-width: 15px;
    font-size: 16px;
}

ul.sidebar-nav ul.sub-nav > li > a:hover span.glyphicons,
ul.sidebar-nav ul.sub-nav > li > a:hover span.glyphicon,
body.sidebar-collapsed ul.sidebar-nav ul.sub-nav > li > a:hover span.glyphicons,
body.sidebar-collapsed ul.sidebar-nav ul.sub-nav > li > a:hover span.glyphicons {
    color: #5098b7;
}

/* Side Nav active caret state */
ul.sidebar-nav > li.active > a span.caret,
body.sidebar-collapsed ul.sidebar-nav > li.active > a span.caret {
    color: #345a8c;
}

/*#topbar {
    background-image:none;
    background-color:#f9f9f9;
}*/

#sidebar-search,
body.sidebar-collapsed #sidebar-search {
    background-color: #ffffff;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0.1) 100%);
    border-bottom: 1px solid #d2d2d2;
    border-color: #cccccc rgba(0, 0, 0, 0.19) #d2d2d2;
    height: 52px;
    max-height: 52px;
    overflow: hidden;
    padding: 12px 13px 0 12px;
    position: relative;
    text-shadow: 0 1px #ffffff;
}

ul.sidebar-nav > li > a,
body.sidebar-collapsed ul.sidebar-nav > li > a {
    background-color: #f3f3f3;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0.1) 100%);
    border-bottom: 1px solid #c9c9c9;
    border-color: #dfdfdf;
    border-radius: 0;
    box-shadow: none;
    color: #777;
    display: block;
    line-height: 45px;
    margin: 0;
    min-height: 45px;
    padding: 0;
    text-decoration: none;
    text-shadow: 0 1px #ffffff;
}

#content:after {
    background-color: #ffffff;
}


div.navbar-logo.bbs-embark-logo img.img-responsive {
    /*max-width: 132%;
	padding-top: 4px;*/
    max-width: none;
    padding-top: 0;
}

div.header-btns #recentloansmenu button.btn:hover, div.header-btns #usermenu button.btn:hover {
    color: #5098b7;
}

div.navbar-brand div.navbar-logo.bbs-embark-logo {
    max-width: none !important;
    float: left;
}

/* sidemenu overrides */

/*collapsed*/
body.sidebar-collapsed ul.sidebar-nav > li > a .sidebar-title {
    background: url(img/bbs-background-menutitle.png) no-repeat 5px 5px, linear-gradient(to bottom, #ffffff 0%,#fefefe 100%);
    /*background: none repeat scroll 0 0 #ccc;*/
    /*border: 1px solid #aaa;*/
    border-top: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-bottom: none;
    display: none;
    height: 46px;
    left: 40px;
    position: absolute;
    text-indent: 0;
    text-shadow: 0 1px #ffffff;
    text-align: center;
    top: -1px;
    width: 200px;
    color: #666666;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.21);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.21);
    font-weight: bold;
    border-radius: 0 4px 0 0;
}

body.sidebar-collapsed ul.sidebar-nav ul.sub-nav {
    background: linear-gradient(to bottom, #fefefe 0%,#f5f5f5 100%);
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    display: none;
    left: 40px;
    position: absolute;
    width: 200px;
    z-index: 999;
    -webkit-box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.21);
    box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.21);
    padding: 10px 16px 16px 16px;
    text-indent: 0;
    border-radius: 0 0 4px 4px;
}

body aside#sidebar ul.sidebar-nav li a:hover, body aside#sidebar div.sidebar-toggle i:hover {
    color: #5098b7;
}

body.sidebar-collapsed ul.sidebar-nav ul.sub-nav a:hover {
    background-color: transparent !important;
    color: #5098b7;
}

body.sidebar-collapsed ul.sidebar-nav ul.sub-nav a:focus {
    background-color: transparent !important;
}

body.sidebar-collapsed ul.sidebar-nav ul.sub-nav a.menu-open {
    background-color: transparent !important;
}

body.sidebar-collapsed ul.sidebar-nav ul.sub-nav li ul.sub-nav {
    background: #ffffff;
    border-left: 1px solid #e4e4e5;
    border-right: 1px solid #e4e4e5;
    border-bottom: 1px solid #e4e4e5;
    border-top: 1px solid #e4e4e5;
    border-radius: 6px 6px 6px 6px;
    display: none;
    width: 100%;
    padding: 10px 16px 16px 16px;
    text-indent: 0;
    left: 0;
    position: relative !important;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

    body.sidebar-collapsed ul.sidebar-nav ul.sub-nav li ul.sub-nav a {
        padding-left: 0;
        padding-right: 0;
    }

/*body.sidebar-collapsed ul.sidebar-nav ul.sub-nav {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: #fafafa;
    border-color: -moz-use-text-color #c9c9c9 #c9c9c9;
    border-image: none;
    border-right: 1px solid #c9c9c9;
    border-style: none solid solid;
    border-width: 0 1px 1px;
    display: none;
    left: 40px;
    position: absolute;
    width: 200px;
    z-index: 9999;
}*/

body.sidebar-collapsed ul.sidebar-nav ul.sub-nav > li > a {
    padding: 12px 0px;
    border-bottom: 1px solid #e5e5e5;
}

body.sidebar-collapsed ul.sidebar-nav ul.sub-nav > li:last-of-type > a {
    border-bottom: none;
}


/*expanded*/

body ul.sidebar-nav ul.sub-nav {
    background: #fefefe;
    padding: 10px 16px 16px 16px;
    text-indent: 0;
}

    body ul.sidebar-nav ul.sub-nav a:hover {
        background-color: transparent !important;
        color: #5098b7;
    }

    body ul.sidebar-nav ul.sub-nav a:focus {
        background-color: transparent !important;
    }

    body ul.sidebar-nav ul.sub-nav a.menu-open {
        background-color: transparent !important;
    }

    body ul.sidebar-nav ul.sub-nav li ul.sub-nav {
        background: #ffffff;
        border-left: 1px solid #e4e4e5;
        border-right: 1px solid #e4e4e5;
        border-bottom: 1px solid #e4e4e5;
        border-top: 1px solid #e4e4e5;
        border-radius: 6px 6px 6px 6px;
        display: none;
        width: 100%;
        padding: 10px 16px 16px 16px;
        text-indent: 0;
        left: 0;
        position: relative !important;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

        body ul.sidebar-nav ul.sub-nav li ul.sub-nav a {
            padding-left: 0;
            padding-right: 0;
        }

    body ul.sidebar-nav ul.sub-nav > li > a {
        padding: 12px 0px;
        border-bottom: 1px solid #e5e5e5;
    }

    body ul.sidebar-nav ul.sub-nav > li:last-of-type > a {
        border-bottom: none;
    }

ul.sidebar-nav ul.sub-nav > li > a, ul.sidebar-nav ul.sub-nav > li:last-child a {
    padding-left: 0;
}

ul.sidebar-nav ul.sub-nav > li > ul.sub-nav li a, ul.sidebar-nav ul.sub-nav > li > ul.sub-nav li:last-child a {
    padding-left: 0;
}

ul.sidebar-nav ul.sub-nav li span.glyphicons, ul.sidebar-nav ul.sub-nav li span.glyphicon, body.sidebar-collapsed ul.sidebar-nav ul.sub-nav li span.glyphicons, body.sidebar-collapsed ul.sidebar-nav ul.sub-nav li span.glyphicon {
    min-height: 20px;
}

#content {
    margin: 0;
}

    #content:after {
        content: "";
        position: fixed;
        width: 100%;
        top: 0;
        bottom: 0;
        display: block;
        z-index: -2;
        background-color: #ffffff;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    #content .container {
        padding: 35px 26px 20px 26px;
        margin: auto;
    }

header.navbar .container-header-large {
    /*max-width: 1500px;*/
    margin: auto;
    padding: 0 26px 0 26px;
}


    header.navbar .container-header-large .container-loaninformationbar {
        width: 62%;
        margin: auto;
        text-align: left;
    }

.bbs-container-loaninformationbar-save {
    width: 50%;
    float: right;
    text-align: right;
}

.header-btns {
    /*padding: 10px 20px;*/
    padding: 10px 0;
}

.bbs-accountnumber-section div.bbs-title-loaninformation {
    margin-left: -26%;
}

.bbs-accountnumber-section div {
    margin: 0 15px 0 15px;
    display: inline-block;
}

.bbs-accountnumber-section span {
    display: inline-block;
    padding: 10px 3px 10px 3px;
}




/*#endregion*/

/*#region Override Global Kendo*/

/*Overriding Kendo*/
.k-widget.k-multiselect {
    display: inline-block;
    vertical-align: middle;
}

.k-multiselect .k-button {
    background-color: #f3f3f3;
    border-color: #ccc;
    color: #676767;
}

.k-state-focused {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.k-animation-container li.k-state-selected {
    background-color: #9dc8da;
    border-color: #9dc8da;
}

.k-textbox:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.k-multiselect .k-button.k-state-hover {
    background-color: #f3f3f3;
    border-color: #ccc;
}

.k-list-container {
    min-width: 180px !important; /*kendo dropdown list width*/
}

.k-autocomplete.k-state-default .k-input, .k-combobox .k-state-default .k-input, .k-picker-wrap.k-state-default .k-input, .k-numeric-wrap.k-state-default .k-input, .k-multiselect-wrap, .k-slider-track, .k-slider-selection, .k-progress-status-wrap {
    box-shadow: none !important;
}

/*#LoanList table.k-selectable tr:hover {
    background-color: #dee2e3;
    color: #51a8c9;
}*/

/*#endregion*/


/*General Page Elements*/

/*#region General Elements*/

/*General Elements*/
body {
    font-family: 'segoe UI', Arial, sans-serif;
}

    body p {
        font-family: 'segoe UI', Arial, sans-serif;
    }

a {
    cursor: pointer;
}

    a:hover, a:focus {
        text-decoration: none;
        color: #345a8c;
    }

h5 {
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    font-size: 16px;
    font-weight: normal;
}
/*#endregion*/



/*Global Components*/

/*#region General Containers*/

.bbs-container-left {
    float: left;
    margin-top: 16px;
    margin-right: 3%;
    max-width: 1024px;
    width: 69%;
}

.bbs-column-xlarge {
    display: inline-block;
    width: 49%;
    vertical-align: top;
}

.bbs-column-large {
    display: inline-block;
    width: 45%;
    vertical-align: top;
}

.bbs-container-contentblock {
    background-color: #fdfdfd;
    border: solid 1px #eaeaea;
    border-radius: 4px;
    margin-top: 8px;
    padding: 10px;
}



/*#endregion */

/*#region BBS Base Panel Component*/
/*BBS Base Panel Component*/

.bbs-panel {
    background-color: #f9f9f9;
    border: solid 1px #e1e1e1;
    border-radius: 6px;
    height: auto;
    padding: 8px 8px 8px 8px;
}

    .bbs-panel .bbs-title-bar {
        height: 37px;
        padding-top: 4px;
        line-height: inherit;
        text-shadow: none;
    }

        .bbs-panel .bbs-title-bar span {
            font-weight: normal;
        }

        .bbs-panel .bbs-title-bar .panel-btns a {
            color: #ffffff;
        }

        .bbs-panel .bbs-title-bar .panel-btns .accordion-toggle-icon i.fa {
            margin-top: -4px;
        }

        .bbs-panel .bbs-title-bar .panel-title {
            width: 90%;
            display: inline-block;
            /*float:none;*/
            margin: auto -60px auto auto;
            text-align: center;
            vertical-align: top;
        }

        .bbs-panel .bbs-title-bar span.bbs-title-small {
            font-family: 'Segoe UI', sans-serif;
            font-size: 13px;
            font-weight: bold;
            color: #ffffff;
            margin: auto;
            display: inline-block;
            width: 90%;
            text-align: center;
            text-transform: none;
            text-shadow: none;
        }

    .bbs-panel .panel-body {
        padding: 0 20px;
    }

    .bbs-panel .k-state-selected {
        background-color: #dee2e3;
        color: #51a8c9;
    }

.panel-heading .showhover:hover {
    color: #345a8c;
    cursor: pointer;
}

#ActionsList .bbs-panel-loansummary {
    background-color: #fefefe;
    border: dotted 2px #dedede;
    border-radius: 6px;
    width: 100%;
    height: auto;
    margin: 7px 0 7px 0;
    padding: 15px;
    text-align: left;
    display: inline-block;
    vertical-align: top;
}

#LoanSummary .bbs-panel-loansummary {
    background-color: #fefefe;
    border: dotted 2px #dedede;
    border-radius: 6px;
    width: 32.5%;
    margin: 7px .8% 7px 0;
    padding: 15px;
    text-align: left;
    display: inline-block;
    vertical-align: top;
}

    #LoanSummary .bbs-panel-loansummary h4 {
        font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
        font-size: 16px;
    }


    #LoanSummary .bbs-panel-loansummary.bbs-marginright-0 {
        margin-right: 0;
    }

.bbs-panel-loansummary.twothirds {
    width: 65%;
}

.bbs-panel-loansummary p span {
    display: inline-block;
    margin-right: 5px;
    font-weight: normal;
}

    .bbs-panel-loansummary p span:first-of-type {
        font-weight: bold;
    }

.bbs-panel-loansummary p label {
    font-weight: bold;
    margin-bottom: 0;
}

.bbs-panel-loansummary p {
    margin: 0 0 0 16px;
    line-height: 23px;
    font-size: 12px;
    color: #727272;
}

.bbs-panel-loansummary a {
    color: #5098b7;
}

.bbs-panel-loansummary div.bbs-loansummary-subjectproperty {
    margin-top: 10px;
}

    .bbs-panel-loansummary div.bbs-loansummary-subjectproperty p span {
        font-weight: normal;
    }


#LoanSummary, #ActionsList {
    display: none;
}

.bbs-panel .bbs-title-bar span.bbs-title-small.bbs-title-loansummary {
    width: auto;
    margin: 0 0 0 10px;
}

#LoanSummary .bbs-panel .bbs-title-bar .panel-title {
    width: 94%;
}
/*#endregion*/

/*#region BBS Kendo Multiselect Control */

.k-multiselect-wrap li.k-button {
    padding-right: 25px;
    position: relative;
    text-align: left;
}

.k-multiselect-wrap .k-button .k-icon.k-delete {
    position: absolute;
    right: 3px;
    top: 3px;
}



/*#endregion*/

/*#region BBS Kendo Panelbar*/

.bbs-container-panelbar {
    margin-top: 8px;
    border-radius: 4px;
    border: none;
    box-shadow: none;
}

    .bbs-container-panelbar .k-content {
        border: none;
    }

    .bbs-container-panelbar .k-item {
        padding-bottom: 8px;
    }

        .bbs-container-panelbar .k-item span.k-link.k-header {
            background: #aac5d1;
            background: -moz-linear-gradient(top, #f0f0f0 1%, #dbdbdb 100%);
            background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#f0f0f0), color-stop(100%,#dbdbdb));
            background: -webkit-linear-gradient(top, #f0f0f0 1%,#dbdbdb 100%);
            background: -o-linear-gradient(top, #f0f0f0 1%,#dbdbdb 100%);
            background: -ms-linear-gradient(top, #f0f0f0 1%,#dbdbdb 100%);
            background: linear-gradient(to bottom, #f0f0f0 1%,#dbdbdb 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#dbdbdb',GradientType=0 );
            border: solid 1px #cccccc;
            border-radius: 4px 4px 0 0;
            height: auto;
            padding: 0px 0px 0px 15px;
            margin: 0 0 0 0;
            font-size: 13px;
            font-weight: bold;
            color: #666666;
            text-shadow: 0 1px 0 #ffffff;
            text-align: left;
        }

        .bbs-container-panelbar .k-item span.k-header.k-state-selected {
            font-size: 13px;
            font-weight: bold;
            color: #666666;
            text-shadow: 0 1px 0 #ffffff;
            text-align: left;
        }

    .bbs-container-panelbar .bbs-title-xsmall {
        font-family: "Open Sans",Helvetica,Arial,sans-serif;
    }

/*#endregion*/

/*#region BBS Panel Kendo Grid Control*/
/*BBS Panel Kendo Grid Control*/

.bbs-panel .k-grid {
    margin-top: 13px;
}

.bbs-panel .k-state-selected .bbs-actualclosingdate {
    color: #2c9fca;
}

.bbs-actualclosingdate {
    font-weight: bold;
    color: green;
}

.k-state-selected .bbs-actualclosingdate {
    color: #ffffff;
}

/*BBS GRIDS*/

.bbs-grid.bbs-title-bar {
    margin-bottom: 10px;
}

.bbs-grid .k-grid tr td {
    border: none;
    border-bottom: solid 1px #eaeaea;
    vertical-align: top;
    color: #666666;
    padding: 7px;
}

.bbs-grid.bbs-grid-loanconditions .k-grid tr td {
    font-size: 13px;
}

.bbs-grid.bbs-grid-loanconditions .k-grid tbody tr td:first-of-type i {
    /*font-size: 18px;
    margin-left: 8px;*/
}

.bbs-grid.bbs-grid-loanconditions .k-grid th.type {
    width: 10%;
    border-left: 0;
}

.bbs-grid.bbs-grid-loanconditions .k-grid td.type {
    width: 10%;
}

.bbs-grid.bbs-grid-loanconditions .k-grid th.status {
    width: 8%;
}

.bbs-grid.bbs-grid-loanconditions .k-grid td.status {
    width: 8%;
}

/*.bbs-grid.bbs-grid-loanconditions .k-grid th {
    width: 8%;
}*/

.bbs-grid.bbs-grid-loanconditions .k-grid th.borrowername, .bbs-grid.bbs-grid-loanconditions .k-grid td.borrowername {
    width: 32%;
}

.bbs-grid.bbs-grid-loanconditions .k-grid th.description, .bbs-grid.bbs-grid-loanconditions .k-grid td.description {
    width: 27%;
}


.bbs-grid.bbs-grid-loanconditions .k-grid th.documentcreated {
    width: 15%;
}





.bbs-grid.bbs-grid-loanconditions .k-grid th.partyresponsible {
    width: 16%;
}

.bbs-grid.bbs-grid-loanconditions .k-grid th.updated {
    width: 13%;
}

.bbs-grid.bbs-grid-loanconditions .k-grid th.doccount {
    width: 5%;
}

.bbs-grid.bbs-grid-loanconditions .k-grid td.doccount {
    /*width: 5%;*/
    width: 8%;
}

.bbs-grid.bbs-grid-loanconditions .k-grid th.actions {
    width: 10%;
}

.bbs-grid.bbs-grid-loanconditions .k-grid td.updated {
    width: 13%;
}

.bbs-grid.bbs-grid-loanconditions .k-grid td.actions {
    width: 10%;
}

.bbs-grid.bbs-grid-loanconditions .k-grid th.description, .bbs-grid.bbs-grid-loanconditions .k-grid .k-filter-row th:nth-child(2) {
    /*border-left: 0;*/
}

.bbs-grid.bbs-grid-loanconditions .k-grid th.description {
    /*width:90%;*/
}

.k-filter-row th .k-operator-hidden {
    width: 92%;
}

.bbs-section-uploadnewdocuments {
    width: 100%;
    height: auto;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ebebeb;
    font-size: 18px;
    text-align: center;
}



.bbs-grid .k-grid tr th {
    color: #666666;
    padding: 10px 10px 10px 10px;
}

.bbs-grid .k-grid tr.k-alt {
    background-color: #ffffff;
}

.bbs-grid .k-grid th.k-header {
    position: relative;
}

.bbs-grid .k-grid tr th.k-header .k-i-arrow-n, .bbs-grid .k-grid tr th.k-header .k-i-arrow-s {
    position: absolute;
    right: 5px;
}

.bbs-grid .k-grid tr th.k-header .k-filter {
    position: absolute;
    right: 23px;
}

.bbs-grid .k-grid .k-grid-content {
    overflow-y: auto;
}

    /*.bbs-grid .k-grid .k-grid-content tr {

height:55px;
}*/

    .bbs-grid .k-grid .k-grid-content tr {
        height: auto;
    }

.bbs-grid .k-grid .k-grid-header {
    padding-right: 0 !important;
}

.bbs-grid .k-grid .k-grid-pager {
    padding-left: 13px;
}

    .bbs-grid .k-grid .k-grid-pager a, .bbs-grid .k-grid .k-grid-pager ul li span {
        margin-top: 3px;
    }

        .bbs-grid .k-grid .k-grid-pager ul li span.k-state-selected {
            background-color: #9dc8da;
            color: #ffffff;
            border: solid 1px #8dbfd4;
        }

.bbs-grid tbody tr.k-state-selected, .bbs-grid tbody tr.k-alt.k-state-selected {
    background-color: #fefefe;
    color: #51a8c9;
}

    .bbs-grid tbody tr.k-state-selected td {
        color: #51a8c9;
    }

.bbs-indicator {
    margin: 5px auto 0 auto;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
}


.bbs-indicator-condition-Unsatisfied,
.bbs-indicator-attention {
    background-image: url(../../Content/embark/img/bbs-grid-indicator-circle-attention.png);
}

.bbs-indicator-condition-Satisfied,
.bbs-indicator-condition-Waived,
.bbs-indicator-ok {
    background-image: url(../../Content/embark/img/bbs-grid-indicator-circle-ok.png);
}

.bbs-indicator-condition-PendingReview,
.bbs-indicator-pending {
    background-image: url(../../Content/embark/img/bbs-grid-indicator-circle-pending.png);
}

.bbs-indicator-problem {
    background-image: url(../../Content/embark/img/bbs-grid-indicator-circle-problem.png);
}

td.bbs-tablecell-problem {
    background-color: #ef4350;
    color: #ffffff;
}

td.bbs-tablecell-attention {
    background-color: #f9dc56;
    color: #ffffff;
}


/*#endregion*/

/*#region BBS Panel Kendo Chart Control*/

/*BBS Panel Kendo Chart Control*/
.bbs-panel .chart .carousel-inner {
    height: 275px;
    max-width: 315px;
    margin: auto;
}

.chart .carousel-inner {
    height: 280px;
}

.chart .carousel-control.left {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
}

.chart .carousel-control.right {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    left: auto;
    right: 10px;
}

.chart .carousel-control {
    top: 63%;
    width: 3%;
    font-size: 12px;
    color: lightgrey;
    text-shadow: none;
    opacity: 1;
}

    .chart .carousel-control:hover,
    .chart .carousel-control:focus {
        color: darkgrey;
    }

.piechart .piechart-heading {
    margin-top: 0;
    text-align: center;
}

.piechart .piechart-total {
    color: #555555;
    font-size: 45px;
    font-weight: 500;
    line-height: 60px;
}

.piechart .piechart-title {
    font-size: 16px;
}

.piechart-dollarunit {
    font-size: 40px;
}

.piechart-left {
    width: 130px;
    position: relative;
    left: 0;
    top: -230px;
}

.piechart-right {
    margin-left: 0;
}

.bbs-panel div.bbs-border-dashed {
    height: 1px;
    width: 100%;
    position: relative;
    top: -70px;
    z-index: 200;
}


/*#endregion*/

/*#region BBS Dashboard Filters Control*/

/* Dashboard - Filter */
#dashboardfilter {
    color: #555555;
    font-size: 12px;
    margin: 16px 0 0;
}

    #dashboardfilter ul {
        display: inline-block;
        font-size: 11px;
        margin: 0;
        padding-left: 10px;
    }

    #dashboardfilter a.delete {
        display: inline-block;
        padding-left: 5px;
        text-decoration: none;
    }

/*#endregion*/

/*#region Bootstrap Tabs Container Modded*/

/* Tabs */

.tabs-right > li > a {
    text-shadow: 0 1px #ffffff;
    border-color: #cccccc rgba(0, 0, 0, 0.19) rgba(0, 0, 0, 0.18);
    background-color: #f9f9f9;
    padding: 12px 16px;
    color: #777;
    font-size: 12px;
    font-weight: 700;
    text-shadow: 0 1px #ffffff;
    border: none;
    border-color: #CFCFCF;
}


.tabs-right > li.active > a, .tabs-right > li.active > a:hover, .tabs-right > li.active > a:focus {
    /*color: #86aebf;*/
    border-color: #CCC #FFF #CCC #CCC;
    border: 1px solid #e1e1e1;
    border-left: 1px solid #f9f9f9;
    border-radius: 0px 4px 4px 0;
    cursor: default;
    position: relative;
    z-index: 12;
    background-color: #fafafa;
    padding: 12px 12px 12px 20px;
    height: auto;
}


.tabs-right > li.active > span.bbs-subnav-tabcontainer {
    /*color: #86aebf;*/
    border-color: #CCC #FFF #CCC #CCC;
    border: 1px solid #e1e1e1;
    border-left: 1px solid #f9f9f9;
    border-radius: 0px 4px 4px 0;
    cursor: default;
    position: relative;
    z-index: 12;
    background-color: #fafafa;
    padding: 12px 12px 12px 20px;
    height: auto;
    display: block;
}




.tabs-right li.active a.bbs-subnav {
    /*color: #86aebf;*/
    background: #ececed; /* Old browsers */
    background: -moz-linear-gradient(top, #ececed 0%, #e3e4e4 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ececed), color-stop(100%,#e3e4e4));
    background: -webkit-linear-gradient(top, #ececed 0%,#e3e4e4 100%);
    background: -o-linear-gradient(top, #ececed 0%,#e3e4e4 100%);
    background: -ms-linear-gradient(top, #ececed 0%,#e3e4e4 100%);
    background: linear-gradient(to bottom, #ececed 0%,#e3e4e4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ececed', endColorstr='#e3e4e4',GradientType=0 );
    padding: 9px 0 0 12px;
    border: solid 1px #d4d4d4;
    border-bottom: none;
    height: 34px;
    width: 39px;
    border-radius: 0;
    display: block;
    margin-left: -16px;
}

    .tabs-right li.active a.bbs-subnav:hover,
    .tabs-right li.active a.bbs-subnav:focus {
        color: #5098b7;
    }

    .tabs-right li.active a.bbs-subnav.bbs-subnav-active {
        /*color: #86aebf;*/
        background: none;
        border-color: #cfcfcf;
        border-left: none;
    }



.tab-block {
    max-width: 1024px; /* note - this is only here due to the theme.css file having an important of 1665px */
    width: 69%;
    float: left;
    margin-right: 3%;
}



    .tab-block div.tab-content {
        background-color: #f9f9f9;
        border: solid 1px #e1e1e1;
        border-radius: 4px;
        z-index: 1;
        min-height: 500px;
    }

.tabs-right {
    float: right;
}

ul.tabs-right {
    margin-top: 30px;
    margin-left: -1px;
    z-index: 100;
}

    ul.tabs-right li {
        display: block;
        margin-bottom: 1px;
        border: solid 1px #f3f3f3;
        border-left: none;
        border-radius: 0 4px 4px 0;
        width: 45px;
    }

        ul.tabs-right li a {
            background-color: #fafafa;
            cursor: pointer;
        }

            ul.tabs-right li a:hover {
                background-color: #fafafa;
            }

.tabs-right li.active {
    position: relative;
    right: 0px;
    width: 55px;
}

.tabs-right li a div.bbs-validation-tab {
    position: relative;
    top: 0;
    left: -8px;
    width: 28px;
    height: 28px;
    background-color: #e87171;
    border-radius: 4px;
    padding: 5px 0 0 8px;
}

    .tabs-right li a div.bbs-validation-tab span {
        color: #ffffff;
    }

.tabs-right li.active a.bbs-subnav.bbs-tabstatus-complete {
    background: url(img/bbs-tabstatus-complete.png) no-repeat center right, -moz-linear-gradient(top, #ececed 0%, #e3e4e4 100%); /* FF3.6+ */
    background: url(img/bbs-tabstatus-complete.png) no-repeat center right, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ececed), color-stop(100%,#e3e4e4)); /* Chrome,Safari4+ */
    background: url(img/bbs-tabstatus-complete.png) no-repeat center right, -webkit-linear-gradient(top, #ececed 0%,#e3e4e4 100%); /* Chrome10+,Safari5.1+ */
    background: url(img/bbs-tabstatus-complete.png) no-repeat center right, -o-linear-gradient(top, #ececed 0%,#e3e4e4 100%); /* Opera 11.10+ */
    background: url(img/bbs-tabstatus-complete.png) no-repeat center right, -ms-linear-gradient(top, #ececed 0%,#e3e4e4 100%); /* IE10+ */
    background: url(img/bbs-tabstatus-complete.png) no-repeat center right, linear-gradient(to bottom, #ececed 0%,#e3e4e4 100%); /* W3C */
}

.tabs-right li.active a.bbs-subnav.bbs-tabstatus-warning {
    background: url(img/bbs-tabstatus-warning.png) no-repeat center right, -moz-linear-gradient(top, #ececed 0%, #e3e4e4 100%); /* FF3.6+ */
    background: url(img/bbs-tabstatus-warning.png) no-repeat center right, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ececed), color-stop(100%,#e3e4e4)); /* Chrome,Safari4+ */
    background: url(img/bbs-tabstatus-warning.png) no-repeat center right, -webkit-linear-gradient(top, #ececed 0%,#e3e4e4 100%); /* Chrome10+,Safari5.1+ */
    background: url(img/bbs-tabstatus-warning.png) no-repeat center right, -o-linear-gradient(top, #ececed 0%,#e3e4e4 100%); /* Opera 11.10+ */
    background: url(img/bbs-tabstatus-warning.png) no-repeat center right, -ms-linear-gradient(top, #ececed 0%,#e3e4e4 100%); /* IE10+ */
    background: url(img/bbs-tabstatus-warning.png) no-repeat center right, linear-gradient(to bottom, #ececed 0%,#e3e4e4 100%); /* W3C */
}

.tabs-right li.active a.bbs-subnav.bbs-tabstatus-error {
    background: url(img/bbs-tabstatus-error.png) no-repeat center right, -moz-linear-gradient(top, #ececed 0%, #e3e4e4 100%); /* FF3.6+ */
    background: url(img/bbs-tabstatus-error.png) no-repeat center right, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ececed), color-stop(100%,#e3e4e4)); /* Chrome,Safari4+ */
    background: url(img/bbs-tabstatus-error.png) no-repeat center right, -webkit-linear-gradient(top, #ececed 0%,#e3e4e4 100%); /* Chrome10+,Safari5.1+ */
    background: url(img/bbs-tabstatus-error.png) no-repeat center right, -o-linear-gradient(top, #ececed 0%,#e3e4e4 100%); /* Opera 11.10+ */
    background: url(img/bbs-tabstatus-error.png) no-repeat center right, -ms-linear-gradient(top, #ececed 0%,#e3e4e4 100%); /* IE10+ */
    background: url(img/bbs-tabstatus-error.png) no-repeat center right, linear-gradient(to bottom, #ececed 0%,#e3e4e4 100%); /* W3C */
}

.tabs-right li.active a.bbs-subnav.bbs-tabstatus-complete.bbs-subnav-active {
    background: url(img/bbs-tabstatus-complete.png) no-repeat center right, none;
}

.tabs-right li.active a.bbs-subnav.bbs-tabstatus-warning.bbs-subnav-active {
    background: url(img/bbs-tabstatus-warning.png) no-repeat center right, none;
}

.tabs-right li.active a.bbs-subnav.bbs-tabstatus-error.bbs-subnav-active {
    background: url(img/bbs-tabstatus-error.png) no-repeat center right, none;
}

.bbs-navigationsectionstatus-error {
    color: #e87171;
}

.bbs-navigationsectionstatus-warning {
    color: #ffdc36;
}

.bbs-navigationsectionstatus-complete {
    color: #bebebe;
}

.bbs-navigationsectionstatus-incomplete {
    color: #666666;
}


/*#endregion*/

/*#region Data Entry Panel Sections*/


/* Section Marker Title */
/*.bbs-title-panel {
	margin:0 0 5px -50px;
	width:218px;
	height:35px;
    display:inline-block;
}*/

.bbs-title-panelbg {
    background: #95abb5; /* Old browsers */
    background: -moz-linear-gradient(top, #95abb5 1%, #7f9098 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#95abb5), color-stop(100%,#7f9098)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #95abb5 1%,#7f9098 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #95abb5 1%,#7f9098 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #95abb5 1%,#7f9098 100%); /* IE10+ */
    background: linear-gradient(to bottom, #95abb5 1%,#7f9098 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#95abb5', endColorstr='#7f9098',GradientType=0 ); /* IE6-9 */
    border: solid 1px #758389;
    width: 200px;
    height: 34px;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(50, 50, 50, 0.72);
    -moz-box-shadow: 0px 1px 0px 0px rgba(50, 50, 50, 0.72);
    box-shadow: 0px 1px 0px 0px rgba(50, 50, 50, 0.72);
    float: left;
    padding: 6px 0 0 15px;
}

    .bbs-title-panelbg span {
        font-size: 13px;
        color: #ffffff;
    }

.bbs-title-paneltriangle {
    margin-left: -2px;
}



/* Data Entry Sections */
.bbs-panel-dataentry {
    background-color: #fefefe;
    border: dotted 2px #dedede;
    border-radius: 6px;
    width: 97%;
    margin: 7px 3% 7px 2.7%;
    padding: 10px 30px 20px 30px;
    text-align: left;
}

    .bbs-panel-dataentry p {
        display: inline-block;
        margin-left: 1%;
        margin-right: -4px;
        margin-bottom: 3px;
        text-align: right;
        vertical-align: middle;
    }

        .bbs-panel-dataentry p label {
            font-weight: normal;
            text-align: right;
            display: inline-block;
            margin-bottom: 5px;
            margin-right: 5px;
            vertical-align: middle;
            width: 80px;
            line-height: 14px;
        }

    .bbs-panel-dataentry .bbs-tabaccordion-container p label {
        display: block;
        width: auto;
        text-align: left;
    }

    .bbs-panel-dataentry .bbs-tabaccordion-container p {
        text-align: left;
    }

    .bbs-panel-dataentry .bbs-labels {
        font-weight: normal;
        text-align: right;
        display: inline-block;
        margin-bottom: 5px;
        margin-right: 5px;
        vertical-align: middle;
        width: 80px;
        line-height: 14px;
    }

    .bbs-panel-dataentry .bbs-placeholder {
        height: 28px;
        width: 30%;
    }

    .bbs-panel-dataentry p .k-dropdown {
        text-align: left;
    }

    .bbs-panel-dataentry p .k-textbox {
        text-align: left;
    }

    .bbs-panel-dataentry p .k-numerictext {
        text-align: left;
    }

    .bbs-panel-dataentry p .k-textarea {
        text-align: left;
    }


    .bbs-panel-dataentry p select {
        /*width: 190px;*/
        height: 22px;
    }

/*#endregion*/

/*#region Title Bar*/
/* Section Titles */

.bbs-title-bar {
    background: #aac5d1;
    background: -moz-linear-gradient(top, #aac5d1 1%, #515151 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#aac5d1), color-stop(100%,#515151));
    background: -webkit-linear-gradient(top, #aac5d1 1%,#515151 100%);
    background: -o-linear-gradient(top, #aac5d1 1%,#515151 100%);
    background: -ms-linear-gradient(top, #aac5d1 1%,#515151 100%);
    background: linear-gradient(to bottom, #aac5d1 1%,#515151 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#aac5d1', endColorstr='#515151',GradientType=0 );
    border: solid 1px #758389;
    border-radius: 4px;
    width: 100%;
    height: auto;
    padding: 4px 4px 4px 12px;
    margin: 0 3% 0 0;
    text-transform: uppercase;
}

    /*.bbs-title-bar span.bbs-title {
	font-size:20px;
	color:#ffffff;
	display:inline-block;
	width:60%;
	text-align:center;
    font-weight:bold;
    margin: auto -110px auto 17%;
}*/

    .bbs-title-bar span.bbs-title {
        font-size: 20px;
        color: #ffffff;
        display: inline-block;
        font-weight: bold;
        margin: 0 0 0 10px;
        text-align: left;
        width: auto;
    }

    .bbs-title-bar span.total {
        display: inline-block;
        vertical-align: middle;
        margin: -8px 0 0 10px;
        font-weight: bold;
        font-size: 13px;
        background-color: #93a8b0;
        color: #ffffff;
        border-radius: 5px;
        padding: 3px 8px;
        border: 1px solid #758389;
    }



    .bbs-title-bar span.bbs-icon {
        color: #ffffff;
        margin-left: 0;
        margin-top: 2px;
        display: inline-block;
        width: auto;
        font-weight: normal;
        font-size: 18px;
        text-shadow: none !important;
    }

        .bbs-title-bar span.bbs-icon.smallpanel {
            color: #ffffff;
            margin-left: 0;
            margin-top: 2px;
            display: inline-block;
            float: left;
            width: auto;
            font-weight: normal;
            font-size: 18px;
            text-shadow: none !important;
        }

.bbs-select-borrowercontainer {
    /*background-color: #e6e6e6;
    border: 1px solid #ccc;
    border-radius: 4px;*/
    float: left;
    height: 12px;
    margin-left: 2px;
    margin-right: 6px;
    padding: 0px 3px 5px 0;
    /*width: 30px;*/
    width: 15px;
}

.bbs-titlebar-section span.k-dropdown.bbs-select-borrower {
    max-width: 300px;
    min-width: 150px;
    width: 70%;
    margin-right: 15px;
}

.k-dropdown .k-dropdown-wrap {
    /*border-color:#758389 !important;*/
    height: 23px !important;
    padding-bottom: 3px;
}


    .k-dropdown .k-dropdown-wrap .k-input, .bbs-title-bar .k-dropdown .k-dropdown-wrap .k-select {
        color: #6f787d !important;
    }

.bbs-select-borrowersicon {
    position: relative;
    top: 2px;
    margin-right: 12px;
}

.bbs-select-borrowercount {
    position: relative;
    top: -4px;
    font-size: 13px;
}

/*.bbs-select-borrowername {
    margin-left: 8px;
    display: inline-block;
}*/
/*#endregion*/

/*#region HUD*/

/* Heads Up Display*/
/*#HeadsUpDisplay {
	float:left;
    min-width:230px;
    width:28%;
    margin-top:16px;
}*/

#HeadsUpDisplay .bbs-title-bar {
    background: #aac5d1;
    background: -moz-linear-gradient(top, #aac5d1 1%, #515151 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#aac5d1), color-stop(100%,#515151));
    background: -webkit-linear-gradient(top, #aac5d1 1%,#515151 100%);
    background: -o-linear-gradient(top, #aac5d1 1%,#515151 100%);
    background: -ms-linear-gradient(top, #aac5d1 1%,#515151 100%);
    background: linear-gradient(to bottom, #aac5d1 1%,#515151 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#aac5d1', endColorstr='#515151',GradientType=0 );
    border: solid 1px #758389;
    border-radius: 4px;
    width: 100%;
    height: auto;
    padding: 4px 4px 4px 12px;
    margin: 0 3% 0 0;
    text-transform: uppercase;
}

    #HeadsUpDisplay .bbs-title-bar span {
        font-size: 20px;
        color: #ffffff;
        margin: 0 0 0 7px;
        display: inline-block;
        width: auto;
        text-align: left;
    }

/*#HeadsUpDisplay .bbs-title-bar span {
       font-size:20px;
       color:#ffffff;
       margin:auto;
       display:inline-block;
       width:81%;
       text-align:center;
}*/

#HeadsUpDisplay div.bbs-validation {
    display: inline-block;
    background-repeat: no-repeat;
    width: 22px;
    height: 26px;
    vertical-align: middle;
}

    #HeadsUpDisplay div.bbs-validation.invalid {
        background-image: url('img/bbs-validation-circle.png');
        display: none;
    }

    #HeadsUpDisplay div.bbs-validation.optional-invalid {
        background-image: url('img/bbs-validation-circle-optional-invalid.png');
        display: none;
    }

    #HeadsUpDisplay div.bbs-validation.valid {
        background-image: url('img/bbs-validation-circle-valid.png');
        display: none;
    }

#HeadsUpDisplay .bbs-container-contentheadsup {
    background-color: #fdfdfd;
    border: solid 1px #eaeaea;
    border-radius: 4px;
    width: 100%;
    height: auto;
    margin-top: 8px;
    padding: 20px;
}

    #HeadsUpDisplay .bbs-container-contentheadsup div.title {
        width: auto;
        margin: 5px 0 16px 0;
    }

        #HeadsUpDisplay .bbs-container-contentheadsup div.title i {
            display: inline-block;
            margin-right: 10px;
            font-size: 18px;
            position: relative;
            top: 2px;
        }

        #HeadsUpDisplay .bbs-container-contentheadsup div.title span {
            display: inline-block;
            font-weight: bold;
            font-size: 15px;
        }

    #HeadsUpDisplay .bbs-container-contentheadsup p span {
        display: inline-block;
        margin-right: 5px;
        font-weight: bold;
    }

    #HeadsUpDisplay .bbs-container-contentheadsup p {
        margin: 0 0 0 16px;
        line-height: 23px;
        font-size: 12px;
        color: #727272;
    }

#HeadsUpDisplay a {
    color: #86aebf;
}

/*#endregion*/

/*#region In Page Navigation*/

/* In Page Navigation */
.bbs-nav-inpage {
    width: 86%;
    margin: 20px;
}

ul.bbs-nav-inpage {
    width: 93%;
    margin: 20px;
    list-style-type: none;
}

    ul.bbs-nav-inpage li {
        display: inline-block;
        margin-bottom: 5px;
        width: 170px;
    }

        ul.bbs-nav-inpage li a {
            height: auto;
            color: #5c91ba;
        }


/* back to the top */
.bbs-nav-backtotop {
    width: 100%;
    text-align: right;
    margin: 20px 0 0px 0;
}

    .bbs-nav-backtotop a img {
        display: inline-block;
    }

    .bbs-nav-backtotop a span {
        display: inline-block;
        margin-right: 12px;
    }

    .bbs-nav-backtotop span.fa-chevron-up:hover {
        color: #5c91ba;
        cursor: pointer;
    }

/*#endregion*/

/*#region Repeaters*/

/* Created Item */

.bbs-container-item {
    position: relative;
    margin: 0;
    padding: 0 20px;
}

    .bbs-container-item span.bbs-position-deleteicon {
        position: absolute;
        top: 7px;
        right: 10px;
    }

.bbs-incomeassets .bbs-container-item span.bbs-position-deleteicon {
    position: absolute;
    top: 7px;
    right: -10px;
}


.bbs-container-item span.bbs-position-deleteicon.bbs-employer.bbs-positiontop-small {
    position: absolute;
    top: 22px;
    right: 10px;
}

.bbs-container-item span.bbs-position-deleteicon {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 20px;
    /*color: #e87171;*/
    cursor: pointer;
}

    .bbs-container-item span.bbs-position-deleteicon:hover {
        color: #e87171;
    }

.bbs-additem-container .bbs-container-item span.bbs-position-deleteicon {
    position: absolute;
    top: 7px;
    right: 2%;
}

.bbs-additem-container .bbs-container-item p {
    width: 100%;
}

    .bbs-additem-container .bbs-container-item p .k-numerictextbox {
        width: 87%;
    }

.bbs-deleteicon-position {
    margin-left: 1%;
    top: -2px;
}

.bbs-container-item span.glyphicons-remove_2:hover {
    color: #e87172;
    cursor: pointer;
}

.bbs-container-item .bbs-employment.bbs-division-dotted2, .bbs-container-item .bbs-previousemployment.bbs-division-dotted2 {
    margin-top: 10px;
    margin-bottom: 40px;
}

.bbs-container-item .bbs-division-dotted2, .bbs-container-item .bbs-division-dotted2 {
    margin-top: 10px;
    margin-bottom: 20px;
}

    .bbs-container-item .bbs-division-dotted2.bbs-margintop-xsmall {
        margin-top: 10px;
    }


/*#endregion*/

/*#region BBS Buttons*/

/* Buttons */


/*input[type="submit"] {

	background: #77a0b3;
	-webkit-box-shadow: 0px 1px 0px 0px rgba(50, 50, 50, 0.72);
	-moz-box-shadow: 0px 1px 0px 0px rgba(50, 50, 50, 0.72);
	box-shadow: 0px 1px 0px 0px rgba(50, 50, 50, 0.72);
	border: solid 1px #5d889c;
	border-radius: 4px;	
    color:#ffffff;
    padding:5px 16px 5px 16px;
    font-weight:bold;
}*/

input[type="submit"].bbs-actionbtn {
    background: #add2e1; /* Old browsers */
    background: -moz-linear-gradient(top, #add2e1 0%, #6dafca 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#add2e1), color-stop(100%,#6dafca)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #add2e1 0%,#6dafca 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #add2e1 0%,#6dafca 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #add2e1 0%,#6dafca 100%); /* IE10+ */
    background: linear-gradient(to bottom, #add2e1 0%, #6dafca 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#add2e1', endColorstr='#6dafca',GradientType=0 ); /* IE6-9 */
    border: 1px solid #6aadc9;
    box-shadow: none;
    text-shadow: 0px -1px 0px #6aadc9;
    color: #ffffff;
    font-weight: bold;
    padding: 5px 16px 5px 16px;
    width: 125px;
}

.btn-bbs {
    background-color: #5d889c;
}




button {
    border: solid 1px #58C927;
    border-radius: 4px;
    background: #58C927;
    background-color: #58C927;
    padding: 3px 10px;
    color: #FFFFFF;
    font-weight: normal;
    font-size: 14px;
    margin-left: 4px;
    margin-right: 4px;
    border-radius: 4px;
}

    /*button:hover {
        background-color: #4DB022;
    }*/

    /*button:focus {
        border-color: #67afe9;
    }*/

    button.add, button.cancel {
        margin: 3px 0 0 28px;
        padding: 5px 3px 5px 9px;
        width: auto;
        position: absolute;
        right: 50px;
    }

        button.add:focus, button.cancel:focus {
            border-color: #67afe9;
        }

    button.save {
        margin: 3px 0 0 28px;
        padding: 5px 3px 5px 9px;
        width: auto;
        position: absolute;
        right: 84px;
    }

    button.secondary {
        background-color: #5371a1;
        border-color: #345a8c;
    }

        button.secondary:hover:enabled {
            background-color: #5d7eb3;
        }

    button.tertiary {
        border: 1px solid #345A8C;
        border-radius: 4px;
        background: transparent;
        color: #345A8C;
    }

        button.tertiary:hover:enabled {
            background: #345A8C;
            color: #ffffff;
        }

    button.icon {
        font-size: 16px;
        border: none;
        padding: 0;
        background: none;
        color: #58C927;
    }

/*button.icon:focus {
        border: none;
    }*/

.bbs-container-save.bbs-title-bar .bbs-select-borrower {
    float: right;
    margin-right: 15px;
    margin-top: 1px;
    max-width: 200px;
    min-width: 150px;
    position: relative;
    right: 60px;
    text-transform: none;
    width: 25%;
}

.bbs-container-save.bbs-title-bar button.add.save, .bbs-container-save.bbs-title-bar button.add.undo {
    border-color: #626e73 !important;
    float: right;
    height: 25px;
    margin-right: 9px;
    padding: 2px 0 0 1px;
    width: 26px;
    background: #f9f9f9; /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #b3b3b3 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#b3b3b3)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ffffff 0%,#b3b3b3 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ffffff 0%,#b3b3b3 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #ffffff 0%,#b3b3b3 100%); /* IE10+ */
    background: linear-gradient(to bottom, #ffffff 0%,#b3b3b3 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#b3b3b3',GradientType=0 ); /* IE6-9 */
}

.bbs-container-save.bbs-title-bar button.add.save {
    padding: 2px 0 0 1px;
    position: absolute;
    right: 14px;
    top: 20px;
}

.bbs-container-save.bbs-title-bar button.add.undo {
    padding: 2px 0 0 1px;
    position: absolute;
    right: 44px;
    top: 20px;
}

.bbs-container-save.bbs-title-bar i {
    font-size: 14px;
    color: #666;
}


button.add.small {
    font-size: 9px;
    padding: 4px 6px;
    position: absolute;
    right: 10%;
    top: -5px;
    width: auto;
}

    button.add.small span {
        display: inline-block;
        margin-right: 0px;
        width: 10px;
        height: 10px;
    }

button.add span, button.save span, button.cancel span {
    display: inline-block;
    margin-right: 8px;
    width: 10px;
    height: 10px;
}

.bbs-container-applications button.add {
    position: relative;
    top: -4px;
    left: 0;
    display: inline-block;
    margin-left: 10px;
}

.bbs-borrowerlist-container button.add,
.bbs-borrowerlist-container button.save,
.bbs-borrowerlist-container button.cancel {
    margin-top: 0;
}

button.primary {
    display: inline-block;
    width: 100px;
    padding: 5px 17px 5px 10px;
    text-align: right;
}

button.bbs-active {
    display: inline-block;
    width: 100px;
    padding: 5px 17px 5px 10px;
    background: #a9cede; /* Old browsers */
    background: -moz-linear-gradient(top, #a9cede 0%, #87bed4 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a9cede), color-stop(100%,#87bed4)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #a9cede 0%,#87bed4 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #a9cede 0%,#87bed4 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #a9cede 0%,#87bed4 100%); /* IE10+ */
    background: linear-gradient(to bottom, #a9cede 0%,#87bed4 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9cede', endColorstr='#87bed4',GradientType=0 ); /* IE6-9 */
    color: #ffffff;
    border: none;
    text-align: right;
}

button.primary span {
    display: inline-block;
    height: 10px;
    margin-right: 8px;
    width: 10px;
}

button.delete {
    margin: 3px 0 0 6px;
    padding: 5px 3px 5px 9px;
    width: auto;
}

    button.delete span {
        display: inline-block;
        height: 10px;
        margin-right: 8px;
        width: 10px;
    }

button.bbs-delete {
    margin: 0 0 0 6px;
    padding: 1px 3px 4px 9px;
    width: auto;
}

    button.bbs-delete i {
        display: inline-block;
        height: 10px;
        margin-right: 7px;
        width: 10px;
    }

.bbs-window-buttonarea button.bbs-calltoaction-orange {
    background: #ffd8a6; /* Old browsers */
    background: -moz-linear-gradient(top, #ffd8a6 0%, #fb5401 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffd8a6), color-stop(100%,#fb5401)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ffd8a6 0%,#fb5401 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ffd8a6 0%,#fb5401 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #ffd8a6 0%,#fb5401 100%); /* IE10+ */
    background: linear-gradient(to bottom, #ffd8a6 0%,#fb5401 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffd8a6', endColorstr='#fb5401',GradientType=0 ); /* IE6-9 */
    border: 1px solid #edae8e;
    color: #ffffff;
}

button.add.inlineposition {
    position: relative;
    top: 3px;
    left: 0;
    right: 0;
    margin-right: 0;
    margin-left: 6px;
    margin-bottom: 8px;
}

button.smaller {
    padding: 4px !important;
    font-size: 9px;
    padding: 4px 6px;
    width: 24px;
    height: 24px;
}

    button.smaller span {
        padding: 0 !important;
        margin: 0 !important;
        position: relative;
        top: -4px;
    }

/*#region Primary & Secondary Checks*/

span.bbs-active {
    border-radius: 4px;
    display: inline-block;
    width: 18px;
    height: 18px;
    padding: 3px 6px 4px 2px;
    padding: 0;
    background: #a9cede; /* Old browsers */
    background: -moz-linear-gradient(top, #a9cede 0%, #87bed4 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a9cede), color-stop(100%,#87bed4)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #a9cede 0%,#87bed4 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #a9cede 0%,#87bed4 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #a9cede 0%,#87bed4 100%); /* IE10+ */
    background: linear-gradient(to bottom, #a9cede 0%,#87bed4 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9cede', endColorstr='#87bed4',GradientType=0 ); /* IE6-9 */
    color: #ffffff;
    font-weight: bold;
    font-size: 12px;
    border: none;
    text-align: center;
    margin-left: -10px;
}


    span.bbs-active span {
        vertical-align: top;
        font-size: 9px;
        margin-top: 3px;
    }

button.bbs-primary-inactive {
    display: inline-block;
    width: 18px;
    height: 18px;
    padding: 0;
    text-align: center;
    font-size: 12px;
    vertical-align: top;
    margin-left: -10px;
}

span.bbs-primary i {
    display: inline-block;
    margin-right: 7px;
    height: 10px;
    width: 10px;
}

/*#endregion*/

/*#endregion*/

/*#region User Account Menu */

/* Top Account Menus */
#usermenu ul.dropdown-menu {
    margin-left: -140px;
    width: 200px;
}

    #usermenu ul.dropdown-menu .item-message {
        font-size: 12px;
        width: 120px;
    }

#usermenu .menu-arrow {
    left: 72%;
}


#recentloansmenu button:first-child {
    width: auto;
}

#recentloansmenu ul.dropdown-menu {
    margin-left: -120px;
    width: 320px;
}

#recentloansmenu .menu-arrow {
    left: 68%;
}

/*#endregion*/

/*#region Form Components*/

.bbs-disabled {
    /*background-color:#f9f9f9 !important;*/
    /*border-color:#e5e5e5;*/
    /*opacity: 0.30;*/
}

/*.bbs-disabled:hover {
    background-color:#f9f9f9;
   
}*/

input.bbs-disabled {
    background-color: #f9f9f9 !important;
}

button.bbs-disabled {
    /*background-color:#f7f7f7;
    border-color:#e5e5e5;*/
    opacity: 0.45;
}

a.bbs-disabled {
    /*background-color:#f7f7f7;
    border-color:#e5e5e5;*/
    opacity: 0.45;
    color: #ffffff;
}





/*#endregion*/

/*#region Validation*/

.bbs-validation-wrapper {
    display: inline-block;
    width: 12px;
    vertical-align: middle;
}


.field-validation-error {
    background: url(img/bbs-field-validation-error.png);
    background-repeat: no-repeat;
    background-position: 0;
    height: 12px;
    width: 12px;
    color: #e87171;
    display: inline-block;
    vertical-align: middle;
    /*vertical-align: middle;    
    display:inline-block;
    background:url(img/bbs-field-validation-error.png);
    background-repeat:no-repeat;
    background-position:0 7px;
    color: #e87171;
    display: inline-block;
    height: 22px;
    margin-top: -5px;
    vertical-align: middle;
    width: 12px;*/
}

.field-validation-valid {
    /*background:url(img/bbs-field-validation-valid.png);*/
    background-repeat: no-repeat;
    height: 12px;
    width: 12px;
    display: inline-block;
}

/*TODO: PSP - Added styling to hide one validation*/
.field-validation-error + .field-validation-error {
    display: none;
}

.field-validation-valid + .field-validation-error {
    display: inline-block;
    position: relative;
    top: -15px;
    z-index: 30;
}

.field-validation-warning + .field-validation-valid {
    /*background:url(img/bbs-field-validation-valid.png);*/
    background-repeat: no-repeat;
    height: 12px;
    width: 12px;
    display: none;
}

.field-validation-warning + .field-validation-error {
    display: inline-block;
    position: relative;
    top: -8px;
    z-index: 30;
}


.field-validation-warning {
    background: url(img/bbs-field-validation-warning.png);
    background-repeat: no-repeat;
    background-position: 0;
    height: 10px;
    width: 12px;
    margin-bottom: 2px;
    display: inline-block;
    vertical-align: middle;
    /*vertical-align: middle;    
    display:inline-block;
    background:url(img/bbs-field-validation-error.png);
    background-repeat:no-repeat;
    background-position:0 7px;
    color: #e87171;
    display: inline-block;
    height: 22px;
    margin-top: -5px;
    vertical-align: middle;
    width: 12px;*/
}

.field-validation-error, .field-validation-warning {
    cursor: pointer;
}

.bbs-field-validation-text {
    display: none;
}




.field-validation-placeholder {
    height: 12px;
    width: 12px;
    display: inline-block;
    margin-left: -4px;
    /*display:none;*/
}


/*#endregion*/

/*#region Misc Controls*/

span.bbs-control-expandall {
    color: #525252;
    text-transform: none;
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
    padding-top: 6px;
    float: right;
    font-size: 11px;
    cursor: pointer;
}

    span.bbs-control-expandall i {
        margin-right: 5px;
    }

span.bbs-control-collapseall {
    color: #525252;
    text-transform: none;
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
    padding-top: 6px;
    font-size: 11px;
    cursor: pointer;
}

    span.bbs-control-collapseall i {
        margin-right: 5px;
    }

.bbs-control-edit, .bbs-control-delete {
    display: inline-block;
    margin-left: 5px;
    display: none;
    cursor: pointer;
}

/*#endregion*/



/*Global General Modifiers*/

/*#region BBS Titles*/
.bbs-title-xsmall {
    font-family: 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: bold;
    color: #6f787d;
    text-align: center;
    margin-bottom: 15px;
}

.bbs-title-smallbold {
    font-family: 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #6f787d;
}

.bbs-title-medium {
    font-family: 'Segoe UI', sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: #6f787d;
}

.bbs-title-mediumbold {
    font-family: 'Segoe UI', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #6f787d;
}

.bbs-title-large {
    font-family: 'Segoe UI', sans-serif;
    font-size: 22px;
    font-weight: normal;
    color: #6f787d;
}

.bbs-title-largebold {
    font-family: 'Segoe UI', sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #6f787d;
}

.bbs-title-accordionbar {
    background: #aac5d1;
    background: -moz-linear-gradient(top, #f0f0f0 1%, #dbdbdb 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#f0f0f0), color-stop(100%,#dbdbdb));
    background: -webkit-linear-gradient(top, #f0f0f0 1%,#dbdbdb 100%);
    background: -o-linear-gradient(top, #f0f0f0 1%,#dbdbdb 100%);
    background: -ms-linear-gradient(top, #f0f0f0 1%,#dbdbdb 100%);
    background: linear-gradient(to bottom, #f0f0f0 1%,#dbdbdb 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#dbdbdb',GradientType=0 );
    border: solid 1px #cccccc;
    border-radius: 4px;
    width: 100%;
    height: auto;
    padding: 4px 4px 4px 12px;
    margin: 0 3% 0 0;
    text-transform: uppercase;
}

    .bbs-title-accordionbar span.bbs-title {
        font-size: 20px;
        color: #ffffff;
        display: inline-block;
        width: 60%;
        text-align: center;
        font-weight: bold;
        margin: auto -110px auto 17%;
    }

/*#endregion*/

/*#region BBS Widths, Margins, Padding and Alignment */

/*Widths*/

.bbs-width-xxsmall {
    width: 5%;
}

.bbs-width-xsmall {
    width: 10%;
}

.bbs-width-small {
    width: 20%;
}

.bbs-width-mediumsmall {
    width: 25%;
}

.bbs-width-medium {
    width: 30%;
}

.bbs-width-large {
    width: 40%;
}

.bbs-width-xlarge {
    width: 60%;
}

.bbs-width-xxlarge {
    width: 80%;
}

.bbs-width-xxxlarge {
    width: 100%;
}

.bbs-width-100percent {
    width: 100%;
}

.bbs-width-50percent {
    width: 50% !important;
}


/*Heights*/

.bbs-height-100percent {
    height: 100%;
}



/*Margins*/

.bbs-margin-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.bbs-marginleft-none {
    margin-left: 0px !important;
}

.bbs-marginleft-medium {
    margin-left: 20px !important;
}

.bbs-marginleft-mediumpercent {
    margin-left: 15%;
}

.bbs-marginleft-negative4px {
    margin-left: -4px;
}

.bbs-marginright-0 {
    margin-right: 0 !important;
}

.bbs-marginright-xsmall {
    margin-right: 5px;
}

.bbs-marginright-small {
    margin-right: 10px;
}

.bbs-marginright-xsmallpercent {
    margin-right: 2%;
}

.bbs-marginbottom-0 {
    margin-bottom: 0 !important;
}

.bbs-marginbottom-small {
    margin-bottom: 30px !important;
}

.bbs-marginbottom-xsmall {
    margin-bottom: 10px;
}

.bbs-marginbottom-xxsmall {
    margin-bottom: 6px;
}

.bbs-marginbottom-medium {
    margin-bottom: 45px;
}

.bbs-margintop-xxsmall {
    margin-top: 5px;
}

.bbs-margintop-xsmall {
    margin-top: 10px !important;
}

.bbs-margintop-medium {
    margin-top: 40px;
}

.bbs-margintop-small {
    margin-top: 20px;
}

.bbs-margintop-0 {
    margin-top: 0 !important;
}

/*Padding*/

.bbs-padding-medium {
    padding: 6px;
}

.bbs-paddingright-xsmall {
    padding-right: 1%;
}

/*Alignment*/
.bbs-textalign-center {
    text-align: center !important;
}

.bbs-textalign-left {
    text-align: left !important;
}

.bbs-textalign-right {
    text-align: right;
}

.bbs-textalign-left label {
    text-align: left !important;
}

.bbs-float-left {
    float: left;
}

.bbs-float-right {
    float: right;
}

.bbs-display-inlineblock {
    display: inline-block !important;
}

.bbs-display-block {
    display: block;
}

.bbs-display-block-important {
    display: block !important;
}

.bbs-position-reset {
    position: relative;
    left: 0;
    top: 0;
}

/*.bbs-position-relative {
    position: relative;
}

.bbs-absoluteverticalalign-middle {
  width: 50%;
  height: 50%;
  overflow: auto;
  margin: auto;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
}*/

.bbs-indented {
    margin-left: 15px;
}


/*#endregion*/

/*#region BBS Dividers and Borders*/

.bbs-division {
    width: 100%;
    height: 1px;
    display: block;
    clear: both;
}

.bbs-border-none {
    border: none !important;
}

.bbs-border-solid-1px {
    border: solid #ccc 1px;
}

.bbs-division-dotted {
    border-top: dotted 1px #999999;
    height: 1px;
    width: 90%;
    margin: 20px auto 20px auto;
}

    .bbs-division-dotted.margins-small {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .bbs-division-dotted.soft {
        border-color: #e5e5e5;
    }

.bbs-division-dotted2 {
    border-top: dotted 1px #dedede;
    height: 1px;
    width: 100%;
    margin: 16px auto 16px auto;
}

.bbs-division-dotted2-small {
    border-top: dotted 1px #dedede;
    height: 1px;
    width: 100%;
    margin: 5px auto 5px auto;
}

.bbs-division-dashed {
    border-bottom: dashed 1px #dbdada;
    width: 100%;
    margin: 10px auto 10px auto;
}

.bbs-division-dashed-small {
    border-bottom: dashed 1px #dbdada;
    width: 100%;
    margin: 5px auto 5px auto;
}

.bbs-division-dashed-small-dark {
    border-bottom: dashed 1px #9da7b3;
    width: 100%;
    margin: 5px auto 5px auto;
}



.bbs-border-dashed {
    border-top: dashed 1px #dbdada !important;
}

.bbs-borderbottom-dashed {
    border-bottom: dashed 1px #dbdada;
}

.bbs-bottomborder-darkgray {
    border-bottom: solid 1px #d4d4d4 !important;
}

.bbs-borderright-dashed {
    border-right: dashed 1px #dbdada;
}

/*#endregion*/

/*#region BBS Colors*/

.bbs-color-lightgray {
    color: #808080;
}

.bbs-color-blue {
    color: #86aebf !important;
}

.bbs-color-link {
    color: #80b8d0 !important;
}

.bbs-color-linklogin {
    color: #5b96bc;
}

.bbs-color-darkblue {
    color: #345a8c;
}

/*.bbs-comingsoon {
    color: #345a8c;
    font-style:italic;
    font-size:9px;
}*/

.bbs-comingsoon {
    color: #345a8c;
    font-size: 16px;
}

.bbs-comingsoonnote {
    color: #345a8c;
    font-size: 10px;
    display: inline-block;
    margin-left: 20px;
}


/*#endregion*/

/*#region BBS Fonts*/
.bbs-fontsize-small {
    font-size: 9px;
}

.bbs-fontsize-medium {
    font-size: 14px;
}

.bbs-fontsize-large {
    font-size: 20px;
}

.bbs-fontsize-xlarge {
    font-size: 24px;
}

.bbs-fontweight-normal {
    font-weight: normal !important;
}

.bbs-fontweight-bold {
    font-weight: bold !important;
}

.bbs-table-bold {
    font-weight: bold;
    color: #404040;
}

/*.bbs-table-highlighted {
    background-color: #e3e3e3;
    color: #666666;
    border-radius: 6px;
    padding: 2px 10px 2px 10px;
    font-size: 11px;
    text-shadow: 0 1px 0 #ffffff; 
}*/

/*.bbs-table-highlighted {
    color: #666666;
    padding: 2px 10px 2px 10px;
    font-size: 11px;
    font-weight: bold;
}*/

.bbs-table-highlighted {
    color: #666666;
    padding: 2px 10px 2px 10px;
    font-size: 11px;
    font-weight: normal;
}


/*#endregion*/

/*#region BBS Miscellaneous Modifiers*/

/* Misc modifiers */
.clear {
    clear: both;
}

/*#endregion*/

/*#region BBS Icons*/

/*ICONS*/
.icon-piechart:before {
    content: "\e043";
}

.icon-loandetailsummary:before {
    content: "\f03a";
}

.icon-loandetail1003:before {
    content: "\f0f6";
}

.icon-loandetailservices:before {
    content: "\f0c0";
}

.icon-loandetailcreditreport:before {
    content: "\f0a3";
}

.icon-loandetailconditions:before {
    content: "\f0ec";
}

.icon-loandetaildocuments:before {
    content: "\f0c5";
}

.icon-loandetailfees:before {
    content: "\f155";
}

.icon-loandetailamortizationschedule:before {
    content: "\f161";
}

/*#endregion*/



/*Old perhaps unused styles*/

/*#region Old perhaps unused Styles*/

/*#region Contact View*/
#containerSummaryRefinance .panel-body, #containerSummaryRefinance .tab-content {
    min-height: 810px;
}

#containerSummaryRefinance .tab-content {
    overflow: hidden;
}

#containerSummaryRefinance legend, #containerLoanConditionsList legend {
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 5px;
}

#containerSummaryRefinance fieldset, #containerLoanConditionsList fieldset {
    margin-bottom: 10px;
}
/*#endregion*/

.search-icon {
    background: url("../kendo/images/search.png") no-repeat scroll 100% 0 #fff;
    opacity: 0.6;
}

/*#endregion*/



/*Login View*/

/*#region Login*/
body.login-page {
    background: none;
    height: 100%;
    overflow: hidden;
}

    body.login-page #page-logo {
        margin: 50px auto 18px;
        width: 274px;
    }

.bbs-container-loginbackground {
    background-image: url("img/bbs-background-login.png");
    background-repeat: no-repeat;
    height: 931px;
    left: 50%;
    margin-left: -536px;
    margin-right: auto;
    margin-top: -465px;
    overflow: hidden;
    position: relative;
    top: 50%;
    width: 1072px;
}

.bbs-loginblock {
    width: 566px !important;
    height: 392px;
    padding: 30px 130px;
    /*top: 50%;*/
    margin-top: 250px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #dce3eb;
    border-radius: 20px;
    background-color: #ffffff;
}


.input-group .form-control {
    border: 1px solid #d9dee4;
    -webkit-box-shadow: inset 0px 1px 2px 0px rgba(220,228,236,1);
    -moz-box-shadow: inset 0px 1px 2px 0px rgba(220,228,236,1);
    box-shadow: inset 0px 1px 2px 0px rgba(220,228,236,1);
}

.form-control::-moz-placeholder {
    color: #d8e0e9;
    opacity: 1;
}

.input-group-addon {
    background-color: #ffffff;
    border: 1px solid #d9dee4;
}

    .input-group-addon span.glyphicon {
        color: #445872;
    }

/*input[type="submit"].bbs-loginbtn {

   
    background: -moz-linear-gradient(top,  #a7bad3 0%, #38628e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a7bad3), color-stop(100%,#38628e)); 
    background: -webkit-linear-gradient(top,  #a7bad3 0%,#38628e 100%);
    background: -o-linear-gradient(top,  #a7bad3 0%,#38628e 100%); 
    background: -ms-linear-gradient(top,  #a7bad3 0%,#38628e 100%); 
    background: linear-gradient(to bottom,  #a7bad3 0%,#38628e 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a7bad3', endColorstr='#38628e',GradientType=0 ); 
    border: 1px solid #74859c;
    box-shadow: none;
    text-shadow: 0px -1px 0px #38485e;
    color: #ffffff;
    font-weight: normal;
    height: 40px;
    width: 125px;   
}*/

input[type="submit"].bbs-loginbtn.bbs-actionbtn {
    background: #add2e1; /* Old browsers */
    background: -moz-linear-gradient(top, #add2e1 0%, #6dafca 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#add2e1), color-stop(100%,#6dafca)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #add2e1 0%,#6dafca 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #add2e1 0%,#6dafca 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #add2e1 0%,#6dafca 100%); /* IE10+ */
    background: linear-gradient(to bottom, #add2e1 0%, #6dafca 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#add2e1', endColorstr='#6dafca',GradientType=0 ); /* IE6-9 */
    border: 1px solid #6aadc9;
    box-shadow: none;
    text-shadow: 0px -1px 0px #6aadc9;
    color: #ffffff;
    font-weight: bold;
    padding: 5px 16px 5px 16px;
    width: 125px;
}

input.bbs-input-hidden {
    position: absolute;
    top: -9999px;
    visibility: hidden;
}

.alert {
    margin-top: 10px;
}

.alert-danger {
    background-color: #f1f5fa;
    border-color: #dfeafa;
}

.bbs-validation-summary {
    margin-top: 10px;
}

    .bbs-validation-summary .field-validation-error {
        background-image: none;
        padding-left: 0;
        width: auto;
    }





/*#endregion*/

/*Error View*/

/*#region Error */

html.bbs-background-error {
    width: 100%;
    height: 100%;
    background: #ffffff; /* Old browsers */
    background: -moz-radial-gradient(center, ellipse cover, #ffffff 0%, #dce8ed 100%); /* FF3.6+ */
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#ffffff), color-stop(100%,#dce8ed)); /* Chrome,Safari4+ */
    background: -webkit-radial-gradient(center, ellipse cover, #ffffff 0%,#dce8ed 100%); /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover, #ffffff 0%,#dce8ed 100%); /* Opera 12+ */
    background: -ms-radial-gradient(center, ellipse cover, #ffffff 0%,#dce8ed 100%); /* IE10+ */
    background: radial-gradient(ellipse at center, #ffffff 0%,#dce8ed 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dce8ed',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

body.bbs-errorview {
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.bbs-background-cloud {
    background-image: url(img/bbs-background-cloud.png);
    background-repeat: no-repeat;
    width: 575px;
    height: 354px;
    left: 50%;
    margin-left: -287px;
    margin-right: auto;
    margin-top: -177px;
    position: relative;
    top: 41%;
}

.bbs-errorview-container {
    width: 275px;
    height: auto;
    position: relative;
    top: 140px;
    left: 169px;
}

/*.bbs-errorview-logo {
    width: 275px;
    height: 35px;
    position: relative;
    top:140px;
    left: 169px;
}*/

p.bbs-errorview-message {
    color: #607fa5;
    font-size: 13px;
    font-family: 'segoe UI', Arial, sans-serif;
    margin-top: 20px;
}

p.bbs-errorview-referencenumber {
    font-size: 9px;
    font-family: 'segoe UI', Arial, sans-serif;
    text-align: right;
    margin-right: 30px;
}


.bbs-errorview-lightning {
    height: 252px;
    width: 140px;
    margin: 30px auto 0 30px;
}
/*#endregion*/

/*Kendo Modal*/

/*#region Kendo Window*/

.k-overlay {
    opacity: 0.26 !important;
}

.k-window {
    text-align: center;
    border-radius: 6px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.32);
    -moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.32);
    box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.32);
    /*padding-top: 48px !important;*/
}

.k-window-titlebar {
    /*margin: -44px 1% 0 1% !important;*/
    /*width: 98%;*/
    /*height: 35px;*/
    padding-bottom: 20px;
    border-bottom: 1px dashed #e1e4e9;
    border-radius: 6px 6px 0 0;
    background: #f0f0f0; /* Old browsers */
    background: -moz-linear-gradient(top, #f0f0f0 0%, #f9f9f9 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f0f0), color-stop(100%,#f9f9f9)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f0f0f0 0%,#f9f9f9 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f0f0f0 0%,#f9f9f9 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f0f0f0 0%,#f9f9f9 100%); /* IE10+ */
    background: linear-gradient(to bottom, #f0f0f0 0%,#f9f9f9 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#f9f9f9',GradientType=0 ); /* IE6-9 */
}

    .k-window-titlebar .bbs-icon-window span.glyphicon {
        color: #6d6d6d;
    }

.k-window-title {
    position: relative !important;
    right: 0 !important;
    top: 5px !important;
    left: 0;
    color: #6d6d6d;
    font-weight: bold;
}

.bbs-icon-window {
    background-image: url(img/bbs-windowicon-bg.png);
    background-repeat: no-repeat;
    height: 27px;
    width: 27px;
    margin: 3px 0 0 13px;
    padding-top: 2px;
    float: left;
    position: absolute;
}

.bbs-window-buttonarea {
    background: #fcfcfc; /* Old browsers */
    background: -moz-linear-gradient(top, #fcfcfc 0%, #f0f0f0 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfcfc), color-stop(100%,#f0f0f0));
    background: -webkit-linear-gradient(top, #fcfcfc 0%,#f0f0f0 100%);
    background: -o-linear-gradient(top, #fcfcfc 0%,#f0f0f0 100%);
    background: -ms-linear-gradient(top, #fcfcfc 0%,#f0f0f0 100%);
    background: linear-gradient(to bottom, #fcfcfc 0%,#f0f0f0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#f0f0f0',GradientType=0 );
    border-radius: 0 0 6px 6px;
    border-top: 1px dashed #e1e4e9;
    /*bottom: -3px;
    left: 0;
    margin: 10px -0.5% 0;*/
    bottom: -7px;
    left: 0;
    /*margin: 10px -0.58em 0;*/
    margin: 10px -0.58em 0;
    max-height: 75px;
    min-height: 44px;
    position: relative;
    text-align: center;
    /*width: 101%;*/
}

/*.bbs-window-buttonarea {
    background: #fcfcfc;
    background: -moz-linear-gradient(top,  #fcfcfc 0%, #f0f0f0 100%); 
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfcfc), color-stop(100%,#f0f0f0));
    background: -webkit-linear-gradient(top,  #fcfcfc 0%,#f0f0f0 100%);
    background: -o-linear-gradient(top,  #fcfcfc 0%,#f0f0f0 100%);
    background: -ms-linear-gradient(top,  #fcfcfc 0%,#f0f0f0 100%);
    background: linear-gradient(to bottom,  #fcfcfc 0%,#f0f0f0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#f0f0f0',GradientType=0 );
    position: absolute;
    bottom: 4px;
    left: 0;
    margin: 26px 1% 0 1%;
    width: 98%;
    max-height: 75px;
    min-height: 44px;
    border-top: 1px dashed #e1e4e9;
    border-radius: 0 0 6px 6px;
    text-align: center;
}*/



.bbs-window-content {
    padding: 18px 16px 18px 16px;
    text-align: left;
    color: #6d6d6d;
}

    .bbs-window-content label {
        font-weight: bold;
    }

    .bbs-window-content div.bbs-column-xsmall {
        display: inline-block;
        margin: 0 .5%;
        width: 15%;
        border-right: 1px dashed #f0f0f0;
        vertical-align: top;
    }

    .bbs-window-content div.bbs-column-small {
        display: inline-block;
        margin: 0 2%;
        width: 20%;
        border-right: 1px dashed #f0f0f0;
        vertical-align: top;
    }

    .bbs-window-content div.bbs-column-medium {
        display: inline-block;
        width: 25%;
        vertical-align: top;
    }

    .bbs-window-content div.bbs-column-large {
        display: inline-block;
        width: 45%;
        vertical-align: top;
    }

    .bbs-window-content div.bbs-column-xlarge {
        display: inline-block;
        width: 100%;
        vertical-align: top;
    }

    .bbs-window-content .bbs-container-spinner {
        text-align: center;
        margin-bottom: 10px;
        z-index: 1;
    }

        .bbs-window-content .bbs-container-spinner i {
            font-size: 40px;
        }

.bbs-container-spinner {
    text-align: center;
    margin-bottom: 10px;
    position: absolute;
    top: 43%;
    left: 46%;
}

    .bbs-container-spinner i {
        font-size: 40px;
    }

    .bbs-container-spinner.bbs-alignment-verticalcenter i {
        /*position: absolute;
    top: 47%;*/
    }

.dashboard-widget .bbs-container-spinner {
    position: absolute;
    z-index: 1000;
    top: 30%;
    left: 50%;
}




.bbs-border-rightsolidsoft {
    border-right: 1px solid #f0f0f0;
}

.bbs-content-block p label {
    display: block;
    margin-bottom: 0px;
}

.bbs-border-none {
    border: none;
}

.bbs-window-content h3.bbs-title-medium {
    text-align: center;
    margin: 25px 0 20px 0;
}


/*.bbs-content-inlineblock p {
    display: inline-block;
    margin-left: 2px;
    margin-right: 2px;
}*/


.bbs-window-buttonarea button {
    /*background: #f4f4f4;
    background: -moz-linear-gradient(top,  #f4f4f4 0%, #cdcdcd 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f4f4f4), color-stop(100%,#cdcdcd));
    background: -webkit-linear-gradient(top,  #f4f4f4 0%,#cdcdcd 100%);
    background: -o-linear-gradient(top,  #f4f4f4 0%,#cdcdcd 100%);
    background: -ms-linear-gradient(top,  #f4f4f4 0%,#cdcdcd 100%);
    background: linear-gradient(to bottom,  #f4f4f4 0%,#cdcdcd 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#cdcdcd',GradientType=0 );
    color: #6f6f6f;*/
    text-shadow: #ffffff 1px 0 0 0;
    font-weight: normal;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(50, 50, 50, 0.35);
    -moz-box-shadow: 0px 1px 0px 0px rgba(50, 50, 50, 0.35);
    box-shadow: 0px 1px 0px 0px rgba(50, 50, 50, 0.35);
    margin: 12px 3px 12px 3px;
}

button.bbs-button-dominant {
    background: #adcae0; /* Old browsers */
    background: -moz-linear-gradient(top, #adcae0 0%, #38738e 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#adcae0), color-stop(100%,#38738e)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #adcae0 0%,#38738e 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #adcae0 0%,#38738e 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #adcae0 0%,#38738e 100%); /* IE10+ */
    background: linear-gradient(to bottom, #adcae0 0%,#38738e 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#adcae0', endColorstr='#38738e',GradientType=0 ); /* IE6-9 */
    border: 1px solid #72839a;
    color: #ffffff;
}

    button.bbs-button-dominant:focus {
        border-color: #67afe9;
    }

.bbs-panel-readonly {
    background-color: #fefefe;
    border: dotted 2px #dedede;
    border-radius: 6px;
    width: 94%;
    margin: 20px 0 20px 0;
    padding: 10px 30px 20px 30px;
    text-align: left;
}

.bbs-window-spinner {
    position: relative !important;
    margin-bottom: 24px;
    margin-top: 30px;
    height: 30px;
}

.bbs-window-content .bbs-window-progressmessage {
    border: solid 1px #dedede;
    border-radius: 4px;
    background: #f9f9f9;
    padding: 10px;
    color: #666666;
    text-shadow: 0 1px 0 #ffffff;
    text-align: center;
    width: 90%;
}

    .bbs-window-content .bbs-window-progressmessage span {
        display: inline-block;
        text-align: left;
        width: auto;
    }

/*.bbs-window-content .bbs-window-progressmessage {
    border:solid 1px #dedede;
    border-radius:4px;
    background: #f9f9f9;
    background: -moz-linear-gradient(top,  #f9f9f9 0%, #ededed 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#ededed)); 
    background: -webkit-linear-gradient(top,  #f9f9f9 0%,#ededed 100%);
    background: -o-linear-gradient(top,  #f9f9f9 0%,#ededed 100%);
    background: -ms-linear-gradient(top,  #f9f9f9 0%,#ededed 100%);
    background: linear-gradient(to bottom,  #f9f9f9 0%,#ededed 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#ededed',GradientType=0 ); 
    padding: 10px;
    color:#666666;
    text-shadow: 0 1px 0 #ffffff;
    width: 90%;
}*/

/*#KendoWindow1 {
    display: none;
}*/

/*#endregion*/


.bbs-tablecolumn-description {
    width: 60%;
}

.bbs-tablecolumn-amount {
    width: 10%;
}

.bbs-paddingleft-none {
    padding-left: 0 !important;
}

.bbs-marginleft-xsmall {
    margin-left: 1% !important;
}

.bbs-marginleft-small {
    margin-left: 2.7%;
}

.bbs-marginleft-xsmall-px {
    margin-left: 5px;
}

.bbs-container-liabilitiesmerge {
    width: 100%;
}

    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary {
        width: 100%;
        margin-bottom: 15px;
    }

        .bbs-container-liabilitiesmerge .bbs-liabilitiessummary span.bbs-title-liabilitiessource,
        .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails span.bbs-title-liabilitiessource {
            background-color: #747474;
            color: #ffffff;
            height: 22px;
            width: 48.65%;
            font-size: 19px;
            text-align: center;
            display: inline-block;
            margin-right: -4px;
            padding: 5px 0;
            border-radius: 4px 4px 0 0;
        }

        .bbs-container-liabilitiesmerge .bbs-liabilitiessummary span.bbs-title-scrollerfix {
            background-color: #747474;
            height: 30px;
            width: 17px;
            display: inline-block;
            margin-right: -4px;
        }

    .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails span.bbs-title-liabilitiessource {
        width: 100%;
    }


    .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails {
        width: 100%;
    }

        .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiesloan,
        .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-liabilitiesloan {
            width: 48.65%;
            display: inline-block;
            vertical-align: top;
            margin-right: -4px;
        }

    .bbs-container-liabilitiesmerge .bbs-liabilitiesactions {
        width: 2.7%;
        display: inline-block;
        vertical-align: top;
        margin-right: -4px;
    }

        .bbs-container-liabilitiesmerge .bbs-liabilitiesactions table {
            width: 100%;
            margin-top: 0;
        }

            .bbs-container-liabilitiesmerge .bbs-liabilitiesactions table tr:nth-child(odd) td {
                box-sizing: border-box;
                height: 5px;
                padding-top: 0;
            }

            .bbs-container-liabilitiesmerge .bbs-liabilitiesactions table tr:nth-child(even) td {
                box-sizing: border-box;
                color: #666;
                font-size: 21px;
                font-weight: normal;
                height: 30px;
                padding-top: 0;
                text-align: center;
                vertical-align: top;
            }

    .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-liabilitiesloan.bbs-liabilitiesloanpreview {
        width: 100%;
    }


    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport,
    .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-liabilitiescreditreport {
        width: 48.65%;
        /*margin-left: 2.5%;*/
        margin-right: -4px;
        display: inline-block;
        vertical-align: top;
    }

    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport,
    .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-liabilitiescreditreport {
        width: 48.65%;
        /*margin-left: 2.5%;*/
        margin-right: -4px;
        display: inline-block;
        vertical-align: top;
    }

    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport {
        margin-right: -22px;
    }

        .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport table,
        .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-liabilitiesloan table,
        .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-liabilitiescreditreport table {
            width: 100%;
            margin-top: 4px;
        }

            .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport table#CreditReportItemList {
                margin-top: 0;
            }

    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiesloan table {
        width: 101%;
        margin-top: 0;
        margin-left: -10px;
    }

    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiesloan.bbs-liabilitiesheader {
        margin-left: -17px;
    }

        .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiesloan.bbs-liabilitiesheader table {
            width: 100%;
            margin-top: 4px;
            margin-left: 0px;
        }

    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-container-liabilitiessummarytablewrapper {
        width: 100%;
        max-height: 250px;
        overflow-y: scroll;
        overflow-x: hidden;
        padding-left: 1px;
    }

    /*.bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-container-liabilitiesdetailstablewrapper {
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-left: 1px;
}*/

    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiesloan thead th,
    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport thead th,
    .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-liabilitiesloan thead th,
    .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-liabilitiescreditreport thead th {
        background-color: #e3e3e3;
        border-bottom: 1px solid #bebebe;
        height: 22px;
        font-size: 13px;
        color: #666;
        font-weight: normal;
        vertical-align: top;
        padding-top: 8px;
    }

    .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-title-liabilitydetails {
        width: 100%;
        text-align: center;
    }

    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-title-liabilityname {
        width: 34%;
        padding-left: 20px;
    }

    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-title-liabilitynumber {
        width: 20.7%;
        padding-left: 20px;
    }

    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-title-liabilitytype {
        width: 21%;
        padding-left: 20px;
    }

    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-title-liabilitybalance {
        width: 16%;
        padding-left: 20px;
        text-align: right;
    }

    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport .bbs-title-liabilitybalance {
        width: 20%;
        padding-left: 20px;
        text-align: right;
    }

    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport th.bbs-title-liabilitybalance {
        padding-right: 8px;
    }


    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-title-liabilityactions {
        width: 6%;
        padding-left: 26px;
    }

    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport .bbs-title-liabilityactions {
        width: 7.5%;
        padding-left: 15px;
    }




    /*.bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-container-liabilitiessummarytablewrapper .bbs-liabilitiesloan table,
.bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-container-liabilitiessummarytablewrapper .bbs-liabilitiescreditreport table {
    border-collapse: separate;
    border-spacing: 0px 2px;
}*/

    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-container-liabilitiessummarytablewrapper .bbs-liabilitiesloan table tr:nth-child(odd) td,
    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-container-liabilitiessummarytablewrapper .bbs-liabilitiescreditreport table tr:nth-child(odd) td {
        /*height: 2px;
    padding-top: 3px;*/
        height: 5px;
        background-color: #ffffff;
        padding-top: 0;
    }

    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-container-liabilitiessummarytablewrapper .bbs-liabilitiesloan table tr:nth-child(1) td,
    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-container-liabilitiessummarytablewrapper .bbs-liabilitiescreditreport table tr:nth-child(1) td {
        /*height: 2px;
    padding-top: 3px;*/
        margin-left: -1px;
    }

    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-container-liabilitiessummarytablewrapper .bbs-liabilitiesloan table tr:nth-child(1),
    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-container-liabilitiessummarytablewrapper .bbs-liabilitiescreditreport table tr:nth-child(1) {
        /*height: 2px;
    padding-top: 3px;*/
        margin-left: -1px;
    }


    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiesloan tr td,
    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport tr td {
        /*height: 24px;*/
        height: 30px;
        font-size: 13px;
        color: #666;
        font-weight: normal;
        vertical-align: top;
        padding-top: 5px;
        text-align: left;
        box-sizing: border-box;
    }

        .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiesloan tr td:nth-child(4),
        .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport tr td:nth-child(4) {
            text-align: right;
        }

        /*.bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport tr td:nth-child(5) {
    text-align: right;
}*/

        .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiesloan tr td i,
        .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport tr td i {
            font-size: 15px;
            color: #666;
            padding-top: 3px;
        }

    /*.bbs-container-liabilitiesmerge .bbs-toggleon {
    width: 15px;
    height: 15px;
    padding: 3px 3px 3px 5px;
    background-color: #e3e3e3;
    -webkit-box-shadow: inset 8px 8px 3px -7px rgba(50, 50, 50, 0.3);
-moz-box-shadow:    inset 8px 8px 3px -7px rgba(50, 50, 50, 0.3);
box-shadow:         inset 8px 8px 3px -7px rgba(50, 50, 50, 0.3);
    border-radius: 3px;
    margin-top: -1px;    
}

.bbs-container-liabilitiesmerge .bbs-liabilities-selectedactionitem .bbs-toggleon {
    background-color: #d3e8f0;
}*/

    .bbs-container-liabilitiesmerge .bbs-liabilitiescreditreport .bbs-toggleon {
        margin-left: -5px;
    }

    .bbs-container-liabilitiesmerge .bbs-toggleon i {
        margin-top: -2px;
        color: #5098b7 !important;
    }

        .bbs-container-liabilitiesmerge .bbs-toggleon i.fa-times {
            margin-top: -2px;
            color: #e87171 !important;
        }

    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiesloan tr,
    .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport tr {
        background-color: #fcfcfc;
        border: 0 solid;
    }



        .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiesloan tr.bbs-liabilities-actionitem td,
        .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport tr.bbs-liabilities-actionitem td,
        .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiesloan tr.bbs-liabilities-selectedactionitem td,
        .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport tr.bbs-liabilities-selectedactionitem td {
            /*height: 24px;
    padding-top: 5px;*/
            /*height: 30px;
    padding-top: 5px;*/
        }

        .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiesloan tr.bbs-table-rowspacer,
        .bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport tr.bbs-table-rowspacer {
            background-color: #ffffff;
        }

    .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-container-liabilitiesdetailstablewrapper tr td,
    .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-container-liabilitiespreviewtablewrapper tr td {
        height: 22px;
        font-size: 13px;
        color: #666;
        font-weight: normal;
        vertical-align: top;
        padding: 5px 20px 0 20px;
    }

    .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-container-liabilitiespreviewtablewrapper tr td {
        padding-left: 10px;
    }

    .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-container-liabilitiesdetailstablewrapper tr,
    .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-container-liabilitiespreviewtablewrapper tr {
        background-color: #fcfcfc;
        border-bottom: solid 1px #e3e3e3;
    }


    /*.bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-container-liabilitiespreviewtablewrapper .bbs-liabilitiesloanpreview tr td:nth-child(1) {
    padding-left: 20px;
}*/

    /*.bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiesloan tr td,
.bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport tr td {
  

}*/

    .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-container-liabilitiesdetailstablewrapper .bbs-liabilitiesloan td:nth-child(odd) {
        width: 50%;
        text-align: left;
        color: #333333;
        /*font-weight: bold;*/
    }

    .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-container-liabilitiesdetailstablewrapper .bbs-liabilitiesloan td:nth-child(even) {
        width: 50%;
        text-align: right;
    }

    .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-container-liabilitiesdetailstablewrapper .bbs-liabilitiescreditreport td:nth-child(odd) {
        width: 50%;
        text-align: left;
    }

    .bbs-container-liabilitiesmerge .bbs-liabilitiesdetails .bbs-container-liabilitiesdetailstablewrapper .bbs-liabilitiescreditreport td:nth-child(even) {
        width: 50%;
        text-align: right;
        color: #333333;
        /*font-weight: bold;*/
    }



.bbs-table-highlighter {
    background-color: #fff18f !important;
}

input[type="submit"].bbs-actionbtn, button.bbs-actionbtn {
    background: #add2e1; /* Old browsers */
    background: -moz-linear-gradient(top, #add2e1 0%, #6dafca 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#add2e1), color-stop(100%,#6dafca)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #add2e1 0%,#6dafca 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #add2e1 0%,#6dafca 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #add2e1 0%,#6dafca 100%); /* IE10+ */
    background: linear-gradient(to bottom, #add2e1 0%,#6dafca 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#add2e1', endColorstr='#6dafca',GradientType=0 ); /* IE6-9 */
    border: 1px solid #6aadc9;
    box-shadow: none;
    text-shadow: 0px -1px 0px #6aadc9;
    color: #ffffff;
    font-weight: bold;
    padding: 5px 16px 5px 16px;
}

#LiabilitiesPreviewList {
    display: none;
}

.bbs-container-requestoverride input.bbs-amountchange {
    visibility: hidden;
    /*display: none;*/
    width: 90px;
    margin-left: 10px;
}

/*.popover a {
    color: #5098b7;
}*/

.bbs-popover-content label {
    margin-left: 5px;
    font-weight: normal;
}

.bbs-marginbottom-0 {
    margin-bottom: 0;
}

.bbs-marginleft-smallpx {
    margin-left: 5px;
}

.bbs-action-undo {
    background-image: url(img/bbs-icon-undo.png);
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    display: inline-block;
    cursor: pointer;
    margin-top: 2px;
}

.bbs-action-delete:before {
    content: "\f00d";
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    font-size: 15px;
    color: #666;
    margin-top: 1px;
    opacity: 1;
    transition: opacity 0.3s ease-in 0s;
    cursor: pointer;
}

.bbs-action-merge:before {
    content: "\f060";
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    color: #666;
    margin-top: 3px;
    opacity: 1;
    transition: opacity 0.3s ease-in 0s;
    position: relative;
    top: 0;
    cursor: pointer;
}

/*.bbs-liabilities-deleteitem {
    opacity: 0.2;
    cursor: default;
}*/

.bbs-opacity-light {
    opacity: 0.2 !important;
    cursor: default !important;
}

    .bbs-opacity-light span {
        cursor: default !important;
    }

.bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiesloan tr.bbs-liabilities-actionitem,
.bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport tr.bbs-liabilities-actionitem {
    background: #fcfcfc; /* Old browsers */
    background: -moz-linear-gradient(top, #fcfcfc 0%, #f0f0f0 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfcfc), color-stop(100%,#f0f0f0)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fcfcfc 0%,#f0f0f0 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #fcfcfc 0%,#f0f0f0 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #fcfcfc 0%,#f0f0f0 100%); /* IE10+ */
    background: linear-gradient(to bottom, #fcfcfc 0%,#f0f0f0 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#f0f0f0',GradientType=0 ); /* IE6-9 */
    border: 1px solid #e3e3e3;
}

.bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiesloan tr.bbs-liabilities-selectedactionitem,
.bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiescreditreport tr.bbs-liabilities-selectedactionitem {
    background: #f2fbfe; /* Old browsers */
    background: -moz-linear-gradient(top, #f2fbfe 0%, #e1f0f5 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2fbfe), color-stop(100%,#e1f0f5)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f2fbfe 0%,#e1f0f5 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f2fbfe 0%,#e1f0f5 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f2fbfe 0%,#e1f0f5 100%); /* IE10+ */
    background: linear-gradient(to bottom, #f2fbfe 0%,#e1f0f5 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2fbfe', endColorstr='#e1f0f5',GradientType=0 ); /* IE6-9 */
    border: 1px solid #b2ccd5;
}

.bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiesloan tr.bbs-liabilities-addeditem {
    -webkit-box-shadow: 6px 7px 6px -7px rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 6px 7px 6px -7px rgba(50, 50, 50, 0.75);
    box-shadow: 6px 7px 6px -7px rgba(50, 50, 50, 0.75);
    background: #fbfced; /* Old browsers */
    background: -moz-linear-gradient(top, #fbfced 0%, #f0f1e2 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fbfced), color-stop(100%,#f0f1e2)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fbfced 0%,#f0f1e2 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #fbfced 0%,#f0f1e2 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #fbfced 0%,#f0f1e2 100%); /* IE10+ */
    background: linear-gradient(to bottom, #fbfced 0%,#f0f1e2 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbfced', endColorstr='#f0f1e2',GradientType=0 ); /* IE6-9 */
    border: 1px solid #e6e5d7;
}

.bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiesloan tr.bbs-liabilities-updateditem {
    box-shadow: none;
    background: #daf5f8; /* Old browsers */
    background: -moz-linear-gradient(top, #daf5f8 0%, #8bd8e1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#daf5f8), color-stop(100%,#8bd8e1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #daf5f8 0%,#8bd8e1 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #daf5f8 0%,#8bd8e1 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #daf5f8 0%,#8bd8e1 100%); /* IE10+ */
    background: linear-gradient(to bottom, #daf5f8 0%,#8bd8e1 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#daf5f8', endColorstr='#8bd8e1',GradientType=0 ); /* IE6-9 */
    border: 1px solid #60c6d1;
}

.bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiesloan tr.bbs-liabilities-selectedactionitem.bbs-liabilities-addeditem {
    background: #def4f6; /* Old browsers */
    background: -moz-linear-gradient(top, #def4f6 0%, #c6e7e2 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#def4f6), color-stop(100%,#c6e7e2)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #def4f6 0%,#c6e7e2 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #def4f6 0%,#c6e7e2 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #def4f6 0%,#c6e7e2 100%); /* IE10+ */
    background: linear-gradient(to bottom, #def4f6 0%,#c6e7e2 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#def4f6', endColorstr='#c6e7e2',GradientType=0 ); /* IE6-9 */
    border: #b2ccd5;
}

.bbs-container-liabilitiesmerge .bbs-liabilitiessummary .bbs-liabilitiesloan tr.bbs-liabilities-selectedactionitem.bbs-liabilities-updateditem {
    background: #e0f3f9; /* Old browsers */
    background: -moz-linear-gradient(top, #e0f3f9 0%, #b8dfec 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e0f3f9), color-stop(100%,#b8dfec)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #e0f3f9 0%,#b8dfec 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #e0f3f9 0%,#b8dfec 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #e0f3f9 0%,#b8dfec 100%); /* IE10+ */
    background: linear-gradient(to bottom, #e0f3f9 0%,#b8dfec 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e0f3f9', endColorstr='#b8dfec',GradientType=0 ); /* IE6-9 */
    border: #b2ccd5;
    box-shadow: none;
}


.bbs-liabilitiesactions i {
    cursor: pointer;
}

.bbs-title-liabilityactions i {
    cursor: pointer;
}



/*Dropzone - move to separate file*/

/* The MIT License */
.bbs-dropzone,
.bbs-dropzone *,
.dropzone-previews,
.dropzone-previews * {
    /*-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;*/
    /*box-sizing: border-box;*/
}

.bbs-dropzone {
    position: relative;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(0,0,0,0.02);
    padding: 1em;
}

    .bbs-dropzone.dz-clickable {
        cursor: pointer;
    }

        .bbs-dropzone.dz-clickable .dz-message,
        .bbs-dropzone.dz-clickable .dz-message span {
            cursor: pointer;
        }

        .bbs-dropzone.dz-clickable * {
            cursor: default;
        }

    .bbs-dropzone .dz-message {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        position: relative;
        top: -300px;
    }

    .bbs-dropzone.dz-drag-hover {
        border-color: rgba(0,0,0,0.15);
        background: rgba(0,0,0,0.04);
    }

    .bbs-dropzone.dz-started .dz-message {
        display: none;
    }

    .bbs-dropzone .dz-preview,
    .dropzone-previews .dz-preview {
        background: rgba(255,255,255,0.8);
        position: relative;
        display: inline-block;
        margin: 17px;
        vertical-align: top;
        border: 1px solid #acacac;
        padding: 6px;
    }

        .bbs-dropzone .dz-preview.dz-file-preview [data-dz-thumbnail],
        .dropzone-previews .dz-preview.dz-file-preview [data-dz-thumbnail] {
            display: none;
        }

        .bbs-dropzone .dz-preview .dz-details,
        .dropzone-previews .dz-preview .dz-details {
            width: 100px;
            height: 100px;
            position: relative;
            background: #ebebeb;
            padding: 5px;
            margin-bottom: 22px;
        }

            .bbs-dropzone .dz-preview .dz-details .dz-filename,
            .dropzone-previews .dz-preview .dz-details .dz-filename {
                overflow: hidden;
                height: 100%;
            }

            .bbs-dropzone .dz-preview .dz-details img,
            .dropzone-previews .dz-preview .dz-details img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100px;
                height: 100px;
            }

            .bbs-dropzone .dz-preview .dz-details .dz-size,
            .dropzone-previews .dz-preview .dz-details .dz-size {
                position: absolute;
                bottom: -28px;
                left: 3px;
                height: 28px;
                line-height: 28px;
            }

        .bbs-dropzone .dz-preview.dz-error .dz-error-mark,
        .dropzone-previews .dz-preview.dz-error .dz-error-mark {
            display: block;
        }

        .bbs-dropzone .dz-preview.dz-success .dz-success-mark,
        .dropzone-previews .dz-preview.dz-success .dz-success-mark {
            display: block;
        }

        .bbs-dropzone .dz-preview:hover .dz-details img,
        .dropzone-previews .dz-preview:hover .dz-details img {
            display: none;
        }

        .bbs-dropzone .dz-preview .dz-success-mark,
        .dropzone-previews .dz-preview .dz-success-mark,
        .bbs-dropzone .dz-preview .dz-error-mark,
        .dropzone-previews .dz-preview .dz-error-mark {
            display: none;
            position: absolute;
            width: 40px;
            height: 40px;
            font-size: 30px;
            text-align: center;
            right: -10px;
            top: -10px;
        }

        .bbs-dropzone .dz-preview .dz-success-mark,
        .dropzone-previews .dz-preview .dz-success-mark {
            color: #8cc657;
        }

        .bbs-dropzone .dz-preview .dz-error-mark,
        .dropzone-previews .dz-preview .dz-error-mark {
            color: #ee162d;
        }

        .bbs-dropzone .dz-preview .dz-progress,
        .dropzone-previews .dz-preview .dz-progress {
            position: absolute;
            /*top: 100px;*/
            left: 5px;
            right: 6px;
            height: 6px;
            bottom: -10px;
            background: #d7d7d7;
            display: none;
            max-width: 85.9%;
        }

            .bbs-dropzone .dz-preview .dz-progress .dz-upload,
            .dropzone-previews .dz-preview .dz-progress .dz-upload {
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                width: 0%;
                background-color: #8cc657;
            }

        .bbs-dropzone .dz-preview.dz-processing .dz-progress,
        .dropzone-previews .dz-preview.dz-processing .dz-progress {
            display: block;
        }

        .bbs-dropzone .dz-preview .dz-error-message,
        .dropzone-previews .dz-preview .dz-error-message {
            display: none;
            position: absolute;
            top: -5px;
            left: -20px;
            background: rgba(245,245,245,0.8);
            padding: 8px 10px;
            color: #800;
            min-width: 140px;
            max-width: 500px;
            z-index: 500;
        }

        .bbs-dropzone .dz-preview:hover.dz-error .dz-error-message,
        .dropzone-previews .dz-preview:hover.dz-error .dz-error-message {
            display: block;
        }

.bbs-dropzone {
    border: 1px solid rgba(0,0,0,0.03);
    min-height: 360px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: rgba(0,0,0,0.03);
    padding: 23px;
}

    .bbs-dropzone .dz-default.dz-message {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        -webkit-transition: opacity 0.3s ease-in-out;
        -moz-transition: opacity 0.3s ease-in-out;
        -o-transition: opacity 0.3s ease-in-out;
        -ms-transition: opacity 0.3s ease-in-out;
        transition: opacity 0.3s ease-in-out;
        /*background-image: url("img/spritemap.png");*/
        background-repeat: no-repeat;
        background-position: 0 0;
        position: absolute;
        width: 428px;
        height: 123px;
        margin-left: -214px;
        margin-top: -61.5px;
        top: 50%;
        left: 50%;
    }

@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx) {
    .bbs-dropzone .dz-default.dz-message {
        /*background-image: url("img/spritemap@2x.png");*/
        -webkit-background-size: 428px 406px;
        -moz-background-size: 428px 406px;
        background-size: 428px 406px;
    }
}

.bbs-dropzone .dz-default.dz-message span {
    display: none;
}

.bbs-dropzone.dz-square .dz-default.dz-message {
    background-position: 0 -123px;
    width: 268px;
    margin-left: -134px;
    height: 174px;
    margin-top: -87px;
}

.bbs-dropzone.dz-drag-hover .dz-message {
    opacity: 0.15;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
    filter: alpha(opacity=15);
}

.bbs-dropzone.dz-started .dz-message {
    display: block;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

.bbs-dropzone .dz-preview,
.dropzone-previews .dz-preview {
    -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.16);
    box-shadow: 1px 1px 4px rgba(0,0,0,0.16);
    font-size: 12px;
}

    .bbs-dropzone .dz-preview.dz-image-preview:hover .dz-details img,
    .dropzone-previews .dz-preview.dz-image-preview:hover .dz-details img {
        display: block;
        opacity: 0.1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
        filter: alpha(opacity=10);
    }

    .bbs-dropzone .dz-preview.dz-success .dz-success-mark,
    .dropzone-previews .dz-preview.dz-success .dz-success-mark {
        opacity: 1;
        -ms-filter: none;
        filter: none;
    }

    .bbs-dropzone .dz-preview.dz-error .dz-error-mark,
    .dropzone-previews .dz-preview.dz-error .dz-error-mark {
        opacity: 1;
        -ms-filter: none;
        filter: none;
    }

    .bbs-dropzone .dz-preview.dz-error .dz-progress .dz-upload,
    .dropzone-previews .dz-preview.dz-error .dz-progress .dz-upload {
        background: #ee1e2d;
    }

    .bbs-dropzone .dz-preview .dz-error-mark,
    .dropzone-previews .dz-preview .dz-error-mark,
    .bbs-dropzone .dz-preview .dz-success-mark,
    .dropzone-previews .dz-preview .dz-success-mark {
        display: block;
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        -webkit-transition: opacity 0.4s ease-in-out;
        -moz-transition: opacity 0.4s ease-in-out;
        -o-transition: opacity 0.4s ease-in-out;
        -ms-transition: opacity 0.4s ease-in-out;
        transition: opacity 0.4s ease-in-out;
        /*background-image: url("img/spritemap.png");*/
        background-repeat: no-repeat;
    }

@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx) {
    .bbs-dropzone .dz-preview .dz-error-mark,
    .dropzone-previews .dz-preview .dz-error-mark,
    .bbs-dropzone .dz-preview .dz-success-mark,
    .dropzone-previews .dz-preview .dz-success-mark {
        /*background-image: url("img/spritemap@2x.png");*/
        -webkit-background-size: 428px 406px;
        -moz-background-size: 428px 406px;
        background-size: 428px 406px;
    }
}

.bbs-dropzone .dz-preview .dz-error-mark span,
.dropzone-previews .dz-preview .dz-error-mark span,
.bbs-dropzone .dz-preview .dz-success-mark span,
.dropzone-previews .dz-preview .dz-success-mark span {
    display: none;
}

.bbs-dropzone .dz-preview .dz-error-mark,
.dropzone-previews .dz-preview .dz-error-mark {
    /*background-position: -268px -123px;*/
    font-weight: bold;
    font-size: 24px;
    color: #e87171;
    position: absolute;
    left: -30px;
    top: 24px;
    background-image: url(img/bbs-validation-circle.png);
}

.bbs-dropzone .dz-preview .dz-success-mark,
.dropzone-previews .dz-preview .dz-success-mark {
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    left: -30px;
    top: 24px;
    background-image: url(img/bbs-validation-circle-valid.png);
}

.bbs-dropzone .dz-preview .dz-progress .dz-upload,
.dropzone-previews .dz-preview .dz-progress .dz-upload {
    -webkit-animation: loading 0.4s linear infinite;
    -moz-animation: loading 0.4s linear infinite;
    -o-animation: loading 0.4s linear infinite;
    -ms-animation: loading 0.4s linear infinite;
    animation: loading 0.4s linear infinite;
    -webkit-transition: width 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    -ms-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    /*background-image: url("img/spritemap.png");*/
    background-repeat: repeat-x;
    background-position: 0px -400px;
}

@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx) {
    .bbs-dropzone .dz-preview .dz-progress .dz-upload,
    .dropzone-previews .dz-preview .dz-progress .dz-upload {
        /*background-image: url("img/spritemap@2x.png");*/
        -webkit-background-size: 428px 406px;
        -moz-background-size: 428px 406px;
        background-size: 428px 406px;
    }
}

.bbs-dropzone .dz-preview.dz-success .dz-progress,
.dropzone-previews .dz-preview.dz-success .dz-progress {
    display: block;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.4s ease-in-out;
    -moz-transition: opacity 0.4s ease-in-out;
    -o-transition: opacity 0.4s ease-in-out;
    -ms-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
}

.bbs-dropzone .dz-preview .dz-error-message,
.dropzone-previews .dz-preview .dz-error-message {
    display: block;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.bbs-dropzone .dz-preview:hover.dz-error .dz-error-message,
.dropzone-previews .dz-preview:hover.dz-error .dz-error-message {
    opacity: 1;
    -ms-filter: none;
    filter: none;
}

.bbs-dropzone a.dz-remove,
.dropzone-previews a.dz-remove {
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fafafa), color-stop(1, #eee));
    background-image: -webkit-linear-gradient(top, #fafafa 0, #eee 100%);
    background-image: -moz-linear-gradient(top, #fafafa 0, #eee 100%);
    background-image: -o-linear-gradient(top, #fafafa 0, #eee 100%);
    background-image: -ms-linear-gradient(top, #fafafa 0, #eee 100%);
    background-image: linear-gradient(top, #fafafa 0, #eee 100%);
    -webkit-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid #eee;
    text-decoration: none;
    display: block;
    padding: 4px 5px;
    text-align: center;
    color: #aaa;
    margin-top: 26px;
}

    .bbs-dropzone a.dz-remove:hover,
    .dropzone-previews a.dz-remove:hover {
        color: #666;
    }

@-moz-keyframes loading {
    0% {
        background-position: 0 -400px;
    }

    100% {
        background-position: -7px -400px;
    }
}

@-webkit-keyframes loading {
    0% {
        background-position: 0 -400px;
    }

    100% {
        background-position: -7px -400px;
    }
}

@-o-keyframes loading {
    0% {
        background-position: 0 -400px;
    }

    100% {
        background-position: -7px -400px;
    }
}

@-ms-keyframes loading {
    0% {
        background-position: 0 -400px;
    }

    100% {
        background-position: -7px -400px;
    }
}

@keyframes loading {
    0% {
        background-position: 0 -400px;
    }

    100% {
        background-position: -7px -400px;
    }
}



#KendoWindowFileUploader .bbs-window-content, #DocumentUploadWindow .bbs-window-content {
    text-align: center;
}

.bbs-container-uploadarea {
    margin-top: 13px;
    margin-bottom: 13px;
}

.bbs-window-content + form.bbs-dropzone {
    text-align: center;
}

.bbs-container-upload {
    background-color: #fcfcfc;
    border: 2px dashed #ebebeb;
    border-radius: 6px;
    color: #999;
    display: inline-block;
    font-weight: bold;
    height: 180px;
    left: 237px;
    margin: 0 auto;
    padding-top: 20px;
    position: relative;
    text-align: center;
    vertical-align: top;
    width: 300px;
}

.bbs-container-droparea {
    background-color: #fcfcfc;
    border: 2px dashed #ebebeb;
    border-radius: 6px;
    color: #999;
    padding: 15px;
    width: 200px;
    height: 130px;
}

.bbs-upload-overlay {
    pointer-events: none;
}
/*.dz-message {
    width: 100%;
    height: 100%;
    z-index: 2000;
    position: absolute;
    top: 0;
    left: 0;
}

.dz-message span {
    display: block;
    height: 100%;
    width: 100%;
}

.dz-preview {
      width: 100%;
    height: 100%;
    z-index: 2001;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ffffff;
}*/

.bbs-dropzone .dz-preview .dz-error-message,
.dropzone-previews .dz-preview .dz-error-message {
    display: none;
}

.bbs-dropzone .dz-preview {
    background-color: #ffffff;
    border: medium none;
    border-radius: 4px;
    box-shadow: none;
    /*left: -450px*/
    /*position: relative;
    top: -40px;*/
    width: 95%;
    margin: -2px 0;
    height: auto;
    padding-right: 16px;
}

.bbs-dropzone .dz-preview {
    /*background-color: #ffffff;
    border: medium none;
    border-radius: 4px;
    box-shadow: none;
    height: 75px;
    left: -450px;
    position: relative;
    top: -40px;
    width: 350px;*/
}

.bbs-container-upload i {
    color: #ebebeb;
    display: block;
    font-size: 130px;
    /*left: 34%;
    position: absolute;
    top: 30%;*/
    z-index: 1;
    /*margin-bottom:-7px;*/
    /*margin-left: -33px;
    position: absolute;
    top: 20px;
    left: 50%;*/
    /*width: 66px;*/
}

/*.bbs-upload-previews {
    position: relative;
    top: 100px;
    width: 85%;
    margin: auto;

}*/

/*.dropzone .bbs-upload-previews .dz-preview, .dropzone .bbs-upload-previews .dropzone-previews .dz-preview {
    background: transparent;
    display: inline-block;
    margin: 0;
    padding: 0;
    position: relative;
    vertical-align: top;
    width: 100%;
    height: auto !important;
    box-shadow: none;
    font-size: 13px;
    background-color: #ffffff;
    border:none;
}

.dropzone .bbs-upload-previews .dz-preview .dz-details, .dropzone-previews .dz-preview .dz-details {
    background: transparent !important;
    height: auto !important;
    position: relative;
    width: 100%;
    margin-bottom: 0;
}*/

.bbs-dropzone .dz-preview .dz-details .dz-filename,
.dropzone-previews .dz-preview .dz-details .dz-filename {
    height: auto;
    margin-top: 13px;
    /*overflow: hidden;*/
    text-align: left;
    width: 300px;
}

    .bbs-dropzone .dz-preview .dz-details .dz-filename span,
    .dropzone-previews .dz-preview .dz-details .dz-filename span {
        margin-left: 8px;
        display: inline-block;
        font-size: 12px;
        font-weight: bold;
    }

.bbs-dropzone .dz-preview .dz-details {
    border-radius: 4px;
    height: auto;
    margin-bottom: 5px;
    min-height: 65px;
    position: relative;
    width: 100%;
    padding-bottom: 17px;
    text-align: left;
}

.bbs-dropzone .dz-preview .dz-progress,
.dropzone-previews .dz-preview .dz-progress {
    background: none repeat scroll 0 0 #5098b7;
    display: none;
    height: 7px;
    left: 18px;
    position: absolute;
    right: 0;
    width: 90%;
    border-radius: 2px;
    bottom: 7px;
}

.bbs-dropzone .dz-preview.dz-error .dz-progress .dz-upload,
.dropzone-previews .dz-preview.dz-error .dz-progress .dz-upload {
    background: none repeat scroll 0 0 #e87171;
    border-radius: 2px;
    margin-left: 0;
}

/*.bbs-dropzone .dz-preview.dz-error .dz-progress .dz-upload, 
.dropzone-previews .dz-preview.dz-error .dz-progress .dz-upload {
    background: none repeat scroll 0 0 #96d92b;
    border-radius: 2px;
}*/

.bbs-dropzone .bbs-container-preview,
.bbs-dropzone .bbs-container-preview {
    border: 1px solid #ebebeb;
    height: 387px;
    margin: -2px 0 0 15px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px;
    width: 440px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: none;
    /*height: 75px;*/
    left: -520px;
    position: relative;
    top: -21px;
    /*width: 350px;*/
    text-align: right;
}




.bbs-dropzone .dz-preview,
.dropzone-previews .dz-preview {
    /*border: 1px solid #ebebeb;
    height: 387px;
    margin: -2px 0 0 15px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px;
    width: 360px;*/
}

.bbs-dropzone .dz-preview,
.dropzone-previews .dz-preview {
    /*border: 1px solid #ebebeb;
    height: 387px;
    margin: -2px 0 0 15px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px;
    width: 360px;*/
}

    .bbs-dropzone .dz-preview .dz-details,
    .dropzone-previews .dz-preview .dz-details {
        background: #fcfcfc; /* Old browsers */
        background: -moz-linear-gradient(top, #fcfcfc 0%, #f0f0f0 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfcfc), color-stop(100%,#f0f0f0)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #fcfcfc 0%,#f0f0f0 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #fcfcfc 0%,#f0f0f0 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #fcfcfc 0%,#f0f0f0 100%); /* IE10+ */
        background: linear-gradient(to bottom, #fcfcfc 0%,#f0f0f0 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#f0f0f0',GradientType=0 ); /* IE6-9 */
        border: 1px solid #e3e3e3;
        color: #666;
    }

    .bbs-dropzone .dz-preview .dz-error-message {
        overflow: hidden;
        max-height: 50px;
        position: relative;
        top: 0;
        left: 0;
        margin: 0;
        width: 80%;
        margin: auto;
        text-align: center;
        background: transparent;
        color: #e87171;
        font-weight: normal;
        font-size: 13px;
    }


        .bbs-dropzone .dz-preview .dz-error-message span {
            text-align: left;
            display: inline-block;
            height: auto;
            width: 87%;
        }



    .bbs-dropzone .dz-preview .dz-success-mark,
    .dropzone-previews .dz-preview .dz-success-mark {
        background-position: center;
    }

    .bbs-dropzone .dz-preview .dz-error-mark,
    .dropzone-previews .dz-preview .dz-error-mark {
        background-position: center;
    }

/*.dropzone .dz-preview .dz-error-mark, .dropzone-previews .dz-preview .dz-error-mark, .dropzone .dz-preview .dz-success-mark, .dropzone-previews .dz-preview .dz-success-mark {
    background-image: url("../stardom/img/spritemap.png");
    background-repeat: no-repeat;
    display: block;
    opacity: 0;
    transition: opacity 0.4s ease-in-out 0s;
    width: 40px;
    position: absolute;
    top: 15px;
    left: 25px;
}*/

.bbs-dropzone .dropzone-preview span.bbs-upload-errormark {
    font-size: 30px;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out 0s;
    position: absolute;
    top: 15px;
    left: 25px;
}

.bbs-dropzone .dz-error-message {
    display: none !important;
}

.bbs-action-remove {
    content: "\f00d";
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    font-size: 15px;
    color: #666;
    opacity: 1;
    transition: opacity 0.3s ease-in 0s;
    cursor: pointer;
}

.dz-preview a .bbs-action-delete {
    position: absolute;
    top: 10px;
    right: 10px;
}


.dz-preview p.bbs-input-description {
    margin: 8px 0 0 10px;
    width: 62%;
    display: inline-block;
}

    .dz-preview p.bbs-input-description .k-textbox {
        margin-right: 20px;
        width: 90%;
    }

.dz-preview p.bbs-input-type {
    /*margin: 8px 0 0 0;*/
    margin: 8px auto 0 auto;
    width: 90%;
    display: inline-block;
}

    .dz-preview p.bbs-input-type .k-dropdown {
        width: 100%;
    }

.dz-details .k-dropdown {
    text-align: left;
    color: #666;
}


#RequiredDocumentUploadFieldContainer {
    text-align: center;
}
/*.bbs-dropzone .dz-preview .dz-details .dz-filename span, .dropzone-previews .dz-preview .dz-details .dz-filename span {
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    margin-left: 8px;
}
.dz-preview p.bbs-input-type .k-dropdown {
    width: 100%;
}*/

.dz-details .bbs-icon-file {
    display: inline-block;
    width: 23px;
    height: 23px;
}


.dz-details .bbs-dz-filename {
    background-repeat: no-repeat;
    padding-left: 30px;
    height: auto;
    min-height: 24px;
    vertical-align: middle;
    display: inline-block;
}

    .dz-details .bbs-dz-filename.bbs-icon-jpg {
        background-image: url(img/bbs-icon-jpg.png);
    }

    .dz-details .bbs-dz-filename.bbs-icon-gif {
        background-image: url(img/bbs-icon-gif.png);
    }

    .dz-details .bbs-dz-filename.bbs-icon-pdf {
        background-image: url(../images/bbs-icon-pdf.png);
    }

    .dz-details .bbs-dz-filename.bbs-icon-fnm {
        background-image: url(img/bbs-icon-fnm.png);
    }

    .dz-details .bbs-dz-filename.bbs-icon-invalidfiletype {
        background-image: url(img/bbs-icon-invalidfiletype.png);
    }

/*.dz-details .dz-filename .bbs-icon-file.bbs-icon-jpg {
    background-image: url(img/bbs-icon-jpg.png);
}

.dz-details .dz-filename .bbs-icon-file.bbs-icon-gif {
    background-image: url(img/bbs-icon-gif.png);
}

.dz-details .dz-filename .bbs-icon-file.bbs-icon-pdf {
    background-image: url(img/bbs-icon-pdf.png);
}*/

.dz-details .bbs-dz-filesize {
    /*display: inline-block;
    margin-left: 10px;*/
    position: absolute;
    right: 23px;
    top: 19px;
}

#idletimeout {
    background: #CC5100;
    border: 3px solid #FF6500;
    color: #fff;
    font-family: arial, sans-serif;
    text-align: center;
    font-size: 12px;
    padding: 10px;
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 100000;
    display: none;
}

    #idletimeout a {
        color: #fff;
        font-weight: bold;
    }

    #idletimeout span {
        font-weight: bold;
    }

.bbs-chart-progresscontainer {
    position: absolute;
    z-index: 1000;
    top: 30%;
    left: 50%;
}

#UploadApp {
    display: none;
}

.bbs-container-document {
    height: 700px;
    width: 100%;
}

#DocumentViewer, #DocumentViewer embed {
    height: 650px;
    width: 100%;
    z-index: 2;
    /*position: absolute;
    background: transparent;*/
}

#ReportViewer, #ReportViewer embed {
    height: 650px;
    width: 100%;
    z-index: 2;
    /*position: absolute;
    background: transparent;*/
}

.ccmc-loan-provider-name {
    width: 60%;
}

.ccmc-loan-provider-select {
    width: 40%;
}

.amort-modal-lg {
    width: 850px;
}

.scrollable-modal {
    table-layout: fixed;
    width: 100%;
    padding-right: 5px;
}

    .scrollable-modal table {
        table-layout: fixed;
    }

    .scrollable-modal tr {
        display: flex;
    }

    .scrollable-modal td {
        padding: 3px;
        flex: 1 auto;
    }

    .scrollable-modal thead tr:after {
        content: '';
        overflow-y: scroll;
        visibility: hidden;
        height: 0;
    }

    .scrollable-modal thead th {
        flex: 1 auto;
        display: block;
        padding: 3px;
        align-content: center;
    }

    .scrollable-modal tbody {
        display: block;
        width: 100%;
        overflow-y: auto;
        height: 200px;
    }

.amort-sm-col {
    width: 35px;
}

.amort-left {
    text-align: left;
}

.amort-right-col {
    padding-right: 5px
}

.amort-lg-col {
    width: 100px;
}

.amort-md-col {
    width: 65px
}

.amort-values {
    text-align: right;
}

/*.amort-header {
    text-align: left;
    padding-right: 10px;
}*/

.amort-header-balance {
    width: 20%;
    text-align: left;
}

.amort-balance {
    width: 20%;
    text-align: right;
    padding-right: 10px;
}

.amor-rightPad {
    width: 5%;
}

.connect-display-yes-no {
    padding: 0px 0px 0px -5px;
    margin: 0px 0px 0px -5px;
}

.bbs-panel-small {
    background-color: #ffffff;
    border: solid 1px #e1e1e1;
    border-radius: 4px;
    height: auto;
    padding: 2px 4px 2px 4px;
    margin-left: 20px !important;
    overflow: scroll;
}

.bbs-panel-large {
    background-color: #ffffff;
    border: solid 1px #e1e1e1;
    border-radius: 4px;
    height: auto;
    padding: 2px 4px 2px 4px;
    margin-left: 100px !important;
}

.warning-icon-yellow {
    color: #E3E333;
}

.toleranceInput {
    padding: 2px !important;
}

    .toleranceInput p {
        margin: 0px !important;
    }

.toleranceHistory table, .toleranceHistory th, .toleranceHistory td {
    border: 0px !important;
}

.btn-pushed {
    background-color: lightgrey;
}

.prefered-checkbox {
    margin-left: -30px !important;
    margin-top: 0px;
}

.connect-container-bordered {
    border: solid 1px #c1c1c1;
    border-radius: 6px;
    padding: 10px;
    background-color: #e0e9f5;
}

.loan-nav-active {
    color: #0099cc !important;
    border-bottom-color: #76abd9;
    border-bottom-width: thick;
    border-bottom-style: solid;
}

.quick-launch-nav-active {
    border-bottom-color: white;
    border-bottom-width: thick;
    border-bottom-style: solid;
}

.header-button-active {
    border-bottom-color: #76abd9;
    border-bottom-width: thick;
    border-bottom-style: solid;
    width: 100% !important;
    margin-right: 0px !important;
}

.connect-bubble-text-container {
    border-radius: 35px;
    display: inline-block;
    padding: 3px 12px 3px 5px;
    color: #ffffff;
    font-weight: bold;
    background-color: #58C927;
}

button.btn-alt-light {
    background: #E1EBF7 0% 0% no-repeat padding-box;
    border: 1px solid #345A8C;
    border-radius: 4px;
    opacity: 1;
    text-align: center;
    font: normal normal 600 14px/19px Segoe UI;
    letter-spacing: 0px;
    color: #345A8C;
}

    button.btn-alt-light:hover {
        background: #345A8C 0% 0% no-repeat padding-box;
        color: #ffffff;
    }
