/*
    Brings the application's accent colour in line with the marketing site.

    Loaded after the Inspinia theme so these win. Deliberately colour only: no layout, no
    spacing, nothing moved. People use this application every day and know where things are.

    The palette matches marketing/css/marketing.css. Orange #F5802B carries dark text, the way
    the marketing buttons do; #B25113 is the darker form for text and links on white, where
    #F5802B would only reach about 2.5:1.
*/

a {
    color: #B25113;
}

a:hover,
a:focus {
    color: #8E3F0D;
}

.btn-primary,
.btn-primary:focus,
.btn-primary.focus {
    background-color: #F5802B;
    border-color: #F5802B;
    color: #101820;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary {
    background-color: #FF9450;
    border-color: #FF9450;
    color: #101820;
}

/* The theme puts a coloured rule above each panel heading */
.ibox-title {
    border-top-color: #F5802B;
}

/* Errors from the framework's form helpers */
.input_error,
.error {
    display: inline-block;
    margin-bottom: 4px;
    color: #A3231B;
    font-size: 14px;
}

/* The getting-started list on the scan page. Completed steps stay readable but recede. */
.onboard-steps {
    margin: 0;
    padding-left: 20px;
}

.onboard-steps li {
    margin-bottom: 12px;
    line-height: 1.55;
}

.onboard-steps li:last-child {
    margin-bottom: 0;
}

.onboard-steps li.done {
    color: #8A949D;
}

.onboard-steps li.done strong {
    color: #6E7880;
    text-decoration: line-through;
}
