/***************************************************
 *             oaseBW Bootstrap Theme              *
 *           based on Bootstrap V.3.5.5            *
 *                                                 *
 *              (c)2015 farbCode GmbH              *
 ***************************************************/

/*
 * Dieses CSS enthält weitgehend identische Kopien von Bootstrap-Code mit Zeilenangaben,
 * damit dieser bei Bedarf bei einem Update von Bootstrap so einfach wie möglich kopiert
 * und angepasst werden kann.
 */

/*
 * Nav-Tabs in einer neuen Klasse, damit JavaScript preventDefault() nicht auslöst, und
 * man in die einzelnen Tabs "richtige" Links packen kann. Wird beispielsweise bei den
 * Vorgängen im Backend verwendet. Außer der Umbenennung der Klasse .nav-tabs-nojs in
 * .nav-tabs-custom wurde nichts verändert.
 */

/* From Line 4066 */
.nav-tabs-custom {
    border-bottom: 1px solid #ddd;
}
.nav-tabs-custom > li {
    float: left;
    margin-bottom: -1px;
}
.nav-tabs-custom > li > a {
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
}
.nav-tabs-custom > li > a:hover {
    border-color: #eee #eee #ddd;
}
.nav-tabs-custom > li.active > a,
.nav-tabs-custom > li.active > a:hover,
.nav-tabs-custom > li.active > a:focus {
    color: #555;
    cursor: default;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}
.nav-tabs-custom.nav-justified {
    width: 100%;
    border-bottom: 0;
}
.nav-tabs-custom.nav-justified > li {
    float: none;
}
.nav-tabs-custom.nav-justified > li > a {
    margin-bottom: 5px;
    text-align: center;
}
.nav-tabs-custom.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto;
}
@media (min-width: 768px) {
    .nav-tabs-custom.nav-justified > li {
        display: table-cell;
        width: 1%;
    }
    .nav-tabs-custom.nav-justified > li > a {
        margin-bottom: 0;
    }
}
.nav-tabs-custom.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px;
}
.nav-tabs-custom.nav-justified > .active > a,
.nav-tabs-custom.nav-justified > .active > a:hover,
.nav-tabs-custom.nav-justified > .active > a:focus {
    border: 1px solid #ddd;
}
@media (min-width: 768px) {
    .nav-tabs-custom.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0;
    }
    .nav-tabs-custom.nav-justified > .active > a,
    .nav-tabs-custom.nav-justified > .active > a:hover,
    .nav-tabs-custom.nav-justified > .active > a:focus {
        border-bottom-color: #fff;
    }
}
/* To Line 4134 */


/*
 * Extrakleine Buttons, beispielsweise für das Zahlungsjournal
 * von btn.xs, Schriftgröße auf 10px und line-height auf 20px
 */
/* From line 3501 */
.btn-xxs,
.btn-group-xxs > .btn {
    padding: 1px 5px;
    font-size: 10px;
    line-height: 20px;
    border-radius: 3px;
}
/* To Line 3507 */


/*
 * Superkleine Buttons, beispielsweise für das eine Inlinebutton
 */
.btn-xxxs,
.btn-group-xxxs > .btn {
    padding: 1px 5px;
    font-size: 9px;
    line-height: 16px;
    border-radius: 3px;
}





.table > tr > td {
    border-top: 1px solid #ddd;
    line-height: 1.42857;
    padding: 8px;
    vertical-align: top;
}

/*
 * Macht die Schrift auf den Fortschrittsbalken schwarz, damit sie auch bei weißem Hintergrund lesbar ist
 */
/* From line 5181 */
.progress-bar {
    color: #484b52 !important;
}
/* To line 5195 */


.has-error .help-inline {
    color:#a94442;
    display:table-row;
}


.alert.alert-danger a:not(.btn) {
    color:#a94442;
    text-decoration: underline;
}


.form-horizontal .has-feedback .form-control-feedback {
    right: 0;
    line-height:34px !important;
}