/**
 * Diese Datei stellt die Hauptdatei für
 * CSS-Styling dar. Hier werden übergreifende
 * und allgemeine
 */

/**
 * VARIABLEN
 */

:root {
    --grau: #aaa;
    --rot: lightcoral;
    --hellgrau: #f1f1f1;
    --lambda-gelb: #FDE541;
    --global-spacing-unit: 21px;
    --global-spacing-unit--big: 42px;
    --global-spacing-unit--reduced: 14px;
    --global-spacing-unit--half: 11px;
    --font-size: 16px;
}

html {
    height: 100%;
    letter-spacing: -0.60px;
}

body {
    font-family: 'Source Sans Pro' !important;
    font-size: var(--font-size);
    color: #333;
    line-height: var(--global-spacing-unit);
    height: 100%;
    overflow-y: scroll;
}

/**
 * GENERIC
 */

address,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, ol, ul,
figure,
hr,
table,
fieldset {
    margin-bottom: var(--global-spacing-unit);
}


.fas {
    font-size: 14px;
}

/**
 * ELEMENTS
 */

h4 {
    font-size: 1.3em;
}

input {
    font-size: 16px;
    padding: 4px;
}

select {
    font-size: 16px;
    padding: 6px;
}

img {
    max-width: 100%;
    max-height: 100%;
}

/* BUTTONS */

.btn-primary {
    color: #333;
    background-color: var(--lambda-gelb);
    border-color: var(--lambda-gelb);
}

.btn-primary:hover {
    color: #333;
    background-color: gold;
    border-color: gold;
}

a {
    color: #333;
}

a:hover {
    color: gold;
}

/* TABLES */

.table-striped tbody tr:nth-of-type(2n+1) {
    background-color: rgba(0, 0, 0, 0.01);
}

.table-striped tbody tr:nth-of-type(2n+1):hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.table p {
    margin-bottom: 0;
}

.table .navigation td {
    border-top: none;
}

.bootstrap-select {
    font-size: 16px;
    padding: 6px;
}

.dropdown-menu {
    font-size: 16px;
}

.dropdown-toggle {
    padding: 6px;
}

.dropdown-toggle {
    color: #333;
}

.dropdown-toggle:hover {
}

.form-row > input[class*="col-md-"] {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.error + input, .error + select, .error + textarea,
.error ~ div.bootstrap-select > button.dropdown-toggle,
.error ~ div.input-group {
    border: 1px solid var(--rot);
}

.form__feld ul.feedbackPanel {
    list-style: none;
    padding-left: 0;
    margin-top: 8px;
}

.form__feld .feedbackPanel > .feedbackPanelERROR {
    color: var(--rot);
}


.container-fluid, .container-fluid > .row {
    height: 100%;
}

.aside {
    background-color: #f9f9f9;
    border-right: #dedede;
}


.table-files thead th {
    border-top: none;
    font-weight: normal;
}

.table-files tbody td {
    padding: 18px 12px;
}


.administration-link {
    color: #666;
    font-size: 1.5em;
}

.dropdown-profilbild .dropdown-toggle:after {
    content: none;

}

/* SIDEBAR */

.dropdown-profilbild .profilbild {
    border-radius: 100%;
}

.sidebar__link {
    font-size: 1.2rem;
}

.sidebar__link--aktiv {
    font-weight: bold;
}

.breadcrumb-files .breadcrumb-item a {
    color: #666;
}

.breadcrumb-files .breadcrumb-item:last-child a {
    color: #333;
}

.file-row:hover {
    background: #f9f9f9;
    cursor: pointer;
}

.file-preview {
    border: 1px dashed #aaa;
    margin-bottom: 18px;
}

.file-preview .close {
    display: none;
}

.file-preview .file-drop-zone {
    border: none;
}