.inverse-dropdown {
    background-color: #222;
    border-color: #080808;
}
.inverse-dropdown li a {
    color: #fff;
}
.inverse-dropdown li:hover{
    color: #fff;
    background-color: #000;
}
.inverse-dropdown .divider {
    background-color: #000;
}
body{
    padding-top: 70px;
    min-width: 500px;
}
.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.processing-screen {
    display:    none;
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba(255, 255, 255, 0.8);
}
.processing-screen div {
    width: 50%;
    height: 20%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #FFFFFF;
}
.processing-screen div img {
    margin-top: 10px;
}
/* Let's get this party started */
::-webkit-scrollbar, .table-responsive::-webkit-scrollbar {
    width: 10px;
    height: 8px;
}

/* Track */
::-webkit-scrollbar-track, .table-responsive::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

/* Handle */
::-webkit-scrollbar-thumb, .table-responsive::-webkit-scrollbar-thumb {
    background: #df691a;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
::-webkit-scrollbar-thumb:window-inactive, .table-responsive::-webkit-scrollbar-thumb:window-inactive {
    background: #a45716;
}
.panel-group .panel-heading {
    cursor: pointer;
}
.panel-group .panel-heading a {
    text-decoration: none;
}
.panel-heading .accordion-toggle:after {
    /* symbol for "opening" panels */
    font-family: 'FontAwesome';
    content: "\f0d7";    /* fa fa-caret-down */
    float: right;        /* adjust as needed */
    color: white;         /* adjust as needed */
}
.panel-heading.collapsed .accordion-toggle:after {
    /* symbol for "collapsed" panels */
    content: "\f0da";    /* adjust as needed, taken from bootstrap.css */
}