﻿
/* WIG Bootstrap site side custom colors */
/* WIG Color Pallet */
/*
    Primary color shades (blues)
    #123D66 - darkest
    #336799
    #336799
    #88B8E7
    #9AA1A7 - lightest
    
    secondary color shades (reds)
    #9E8B12 - darkest
    #D4B800
    #ECD542
    #FFF08D
    #FFFCEA - lightest
    
    secondary #2 for successes and highlights (yellows)
    #9C1216 - darkest
    #D2005
    #EA4146
    #FE8D90
    #FDE8E9
*/

.btn {
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

    .btn label {
        cursor: pointer;
    }


.btn-default {
    background-color: #ebeff5;
}

.btn-primary {
    background-color: #336799;
    color: #fff;
}
    .btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active,
    .btn-primary.active, .open > .dropdown-toggle.btn-primary {
        color: #ffffff;
        background-color: #123D66;
        border-color: #00333A;
    }
    .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover,
    .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, 
    .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, 
    .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, 
    .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, 
    .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active {
        background-color: #336799;
        border-color: #051c3b;
    }

.btn-success {
    color: #123d66;
    background-color: #fff08d;
    border-color: #336799;
}
    .btn-success:hover, .btn-success:focus, .btn-success.focus, .btn-success:active,
    .btn-success.active, .open > .dropdown-toggle.btn-success {
        color: #02478a;
        background-color: #ecd542;
        border-color: #d4b800;
    }
    .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover,
    .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus,
    .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus,
    .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus, .btn-success.disabled:active,
    .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active,
    .btn-success[disabled].active, fieldset[disabled] .btn-success.active {
        background-color: #fffcea;
        border-color: #051c3b;
    }



.btn-info {
    color: #ffffff;
    background-color: #88b8e7;
    border-color: #02478A;
}

    .btn-info:hover, .btn-info:focus, .btn-info.focus, .btn-info:active, 
    .btn-info.active, .open > .dropdown-toggle.btn-info {
        color: #ffffff;
        background-color: #02478A;
        border-color: #02478A;
    }

    .btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover,
    .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus,
    .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus,
    .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus, .btn-info.disabled:active,
    .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active,
    .btn-info[disabled].active, fieldset[disabled] .btn-info.active {
        background-color: #e8f2ff;
        border-color: #88b8e7;
        color: #336799;
    }

    .btn-info .badge {
        color: #88b8e7;
        background-color: #ffffff;
    }

.btn-warning {
    color: #ffffff;
    background-color: #fe8d90;
    border-color: #ea4146;
}

    .btn-warning:hover, .btn-warning:focus, .btn-warning.focus, .btn-warning:active,
    .btn-warning.active, .open > .dropdown-toggle.btn-warning {
        color: #fff;
        background-color: #ea4146;
        border-color: #d20005;
    }

    .btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover,
    .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus,
    .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus,
    .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus, .btn-warning.disabled:active,
    .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active,
    .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active {
        background-color: #fde8e9;
        border-color: #88b8e7;
        color: #336799;
    }


.btn-danger {
    color: #ffffff;
    background-color: #d20005;
    border-color: #336799;
}

    .btn-danger:hover, .btn-danger:focus, .btn-danger.focus, .btn-danger:active,
    .btn-danger.active, .open > .dropdown-toggle.btn-danger {
        color: #fff;
        background-color: #9C1216;
        border-color: #9C1216;
    }

    .btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover,
    .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus,
    .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus,
    .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus, .btn-danger.disabled:active,
    .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active,
    .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active {
        color: #336799;
        background-color: #fe8d90;
        border-color: #88b8e7;
        color: #336799;
    }


.panel-primary {
    border-color: #02478A;
}

    .panel-primary > .panel-heading {
        background-color: #336799;
        border-color: #02478A;
    }


.panel-info {
    border-color: #336799;
}

    .panel-info > .panel-heading {
        color: #fff;
        background-color: #88b8e7;
        border-color: #336799;
    }

.panel-success {
    border-color: #336799;
}

    .panel-success > .panel-heading {
        color: #123d66;
        background-color: #fff08d;
        border-color: #336799;
    }

.panel-warning {
    border-color: #9c1216;
}

    .panel-warning > .panel-heading {
        color: #9c1216;
        background-color: #fde8e9;
        border-color: #9c1216;
    }

.panel-danger {
    border-color: #9C1216;
}

    .panel-danger > .panel-heading {
        color: #000;
        background-color: #fe8d90;
        border-color: #9C1216;
    }


.table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success,
.table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td,
.table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th {
    background-color: #fff08d;
    color: #123d66;
}
    .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td,
    .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
        background-color: #fffcea;
    }

.table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info,
.table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td,
.table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th {
    background-color: #88b8e7;
    color: #fff;
}

.table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning,
.table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th .btn-default {
    background-color: #fde8e9;
    color: #9c1216;
}
.table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
    background-color: #fff;
}


.table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger,
.table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th {
    background-color: #fe8d90;
    color: #000000b5;
}


.alert-success {
    background-color: #fff08d;
    border-color: #336799;
    color: #123d66;
}

    .alert-success .alert-link {
        color: #123d66;
    }

.alert-info {
    background-color: #88b8e7;
    border-color: #336799;
    color: #fff;
}

    .alert-info .alert-link {
        color: #fff;
    }

.alert-warning {
    background-color: #fde8e9;
    border-color: #9c1216;
}
    .alert-warning .alert-link {
        color: #9c1216;
    }

.alert-danger {
    background-color: #fe8d90;
    border-color: #9C1216;
    color: #000000b5;
}
    .alert-danger .alert-link {
        color: #000000b5;
    }


.bg-primary {
    color: #fff;
    background-color: #336799;
}

a.bg-primary:hover {
    background-color: #336799;
}

.bg-success {
    background-color: #fff08d;
    color: #123d66;
}

a.bg-success:hover {
    background-color: #fff08d;
}

.bg-info {
    background-color: #88b8e7;
    color: #fff;
}

a.bg-info:hover {
    background-color: #88b8e7;
}

.bg-warning {
    background-color: #fde8e9;
    color: #9c1216;
}

a.bg-warning:hover {
    background-color: #fde8e9;
}

.bg-danger {
    background-color: #fe8d90;
    color: #000000b5;
}

a.bg-danger:hover {
    background-color: #ea4146;
}


.label-primary {
    background-color: #336799;
}

.label-info {
    background-color: #88b8e7;
    color: #fff;
}

.label-success {
    background-color: #fff08d;
    color: #02478a;
}

.label-warning {
    background-color: #d20005;
    color: #fff;
}

.label-danger {
    background-color: #9C1216;
    color: #fff;
}

.label-default {
    background-color: #061d3b;
    opacity: 0.6;
}


.text-primary {
    color: #336799;
}

.text-success {
    color: #d4b800;
}

.text-info {
    color: #88b8e7;
}

.text-warning{
    color: #ea4146;
}

.text-danger{
    color: #9c1216;
}

.label-group-justified > .label {
    width: 15.4%;
}

.bs-callout-danger {
    border-left-color: #9C1216;
}

    .bs-callout-danger h4 {
        color: #9C1216;
    }

.bs-callout-warning {
    border-left-color: #d20005;
}

    .bs-callout-warning h4 {
        color: #d20005;
    }

.bs-callout-success {
    border-left-color: #fff08d;
}

    .bs-callout-success h4 {
        color: #123d66;
    }

.bs-callout-primary {
    border-left-color: #336799;
}

    .bs-callout-primary h4 {
        color: #336799;
    }

.bs-callout-info {
    border-left-color: #88b8e7;
}

    .bs-callout-info h4 {
        color: #051c3b;
    }

.progress-bar {
    background-color: #336799;
}

.label-info {
    background-color: #88b8e7;
}
/* End WIG Bootstrap custom colors */

.navbar-default{
    background-color: #FFF;
    border: none;
    border-radius: 0;
    color: #336799;
}

.navbar-nav{
    margin-top: 0;
    margin-bottom: 0;
}

.nav-tabs {
    border-bottom: none;
}

.navbar {
    margin-bottom: 0;
    position: relative;
}

.navbar-default .navbar-nav > li > a{
    color: #000;
}

.navbar-default .navbar-nav li > a:hover, .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:active {
        background-color: #fff08d;
    text-decoration: none;
}

.navbar-default .navbar-toggle{
    border-color: transparent;
}

.title-bar {
    background-color: #336799;
    height: 34px;
    border-top: 1px solid #d20005;
}

.dropdown-menu > li > a {
    color: #8fa3b3;
    font-weight: inherit;
}

.documents-filter{
    border-radius:4px;
    border-width: 3px;
    border-style: solid;
    border-color: grey;

}

.dataTables_wrapper .dataTables_filter {
    float: left;
}

.dataTables_wrapper .dataTables_info {
    float: right;
}

.documents-tables .table thead{
    cursor: pointer;
}

.shell-footer-helper {
    background-color: #efefef;
}

.documents-container {
    border: solid 1px #bbb;
    background-color: #fff;
    padding: 15px 45px;
    padding-bottom: 100px;
    border-radius: 5px;
}

/*WIG login override styles*/
.login-container {
    margin-top: 0;
}

@media (min-width: 992px) {
    .login-container .panel {
        margin-left: 5rem;
        margin-right: 5rem;
    }
}

.request-userid-panel .fa-chevron-down::before {
    display: inline-block;
    transition: transform 0.2s ease;
}

.request-userid-panel [aria-expanded="true"] .fa-chevron-down::before {
    transform: rotateX(180deg);
}

.request-userid-panel [aria-expanded="false"] .fa-chevron-down::before {
    transform: rotateX(0);
}

.outer-container {
    width: auto;
    margin-left: 0;
    margin-right: 0;
}
.cust-number-example {
    width: 250px;
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: .25s ease;
    position: relative;
    z-index: 4;
    background-color: #bdc8d2;
    text-align: center;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
    .cust-number-example:hover {
        -webkit-transform: scale(1.25);
        transform: scale(1.25);
        z-index: 5;
        position: relative;
    }

#custNumberModal .modal-dialog {
    position: relative;
    display: table;
    min-width: 300px;
}
#custNumberModal .modal-body{
    position: relative;
    display: table;
    overflow-y: auto;
    overflow-x: auto;
    min-width: 300px;
}

.terms-container {
    border: solid 1px #bbb;
    background-color: #fff;
    padding-bottom: 40px;
    border-radius: 5px;
    max-width: 640px;
}

.signature-canvas {
    touch-action: none;
    width: 100%; 
}
.signature-panel--body{
    border: solid 2px #000;
}

#nameRequiredFieldValidator{
    position: absolute;
}

.tech-page a:hover {
    text-decoration: none;
}

#open-invoices #open-invoices-table_info.dataTables_info {
    float: none;
}

#open-invoices #open-invoices-table_filter.dataTables_filter {
    float: right;
}