/* =========================
   Generell
   ========================= */

/* BS override */
.card-header{
    padding:.25rem .5rem;
}
.card-body{
    padding:.5rem
}

:root {
    --cd-green-100: #00b864;
    --cd-green-500: #20b700;
    --cd-green-700: #178800;

    --cd-grey-100: #f5f5f5;
    --cd-grey-500: #383838;
    --cd-grey-700: #111111;
  
}

.bg-cd-green { background-color: var(--cd-green-500) !important; }
.bg-cd-green-light { background-color: var(--cd-green-100) !important; }
.text-cd-green { color: var(--cd-green-500) !important; }
.border-cd-green { border-color: var(--cd-green-500) !important; }

.bg-cd-grey { background-color: var(--cd-grey-500) !important; }
.text-cd-grey { color: var(--cd-grey-500) !important; }
.border-cd-grey { border-color: var(--cd-grey-500) !important; }


html {
  font-size: 13px;
}
body {
  font-size: 1rem;
  color: var(--cd-grey-500);
}

#content {
    min-height: 600px;
}

.collapse-toggle::after {
    font-family: "FontAwesome";
    content: "\f0d7";
    padding-left: 6px;
}

.collapse-toggle[aria-expanded="true"]::after {
    content: "\f0d8";
}

#adm-navbar a {
    color: #222;
}
#ma-navbar a {
    color: #222;
}

.popover {
    max-width: 600px;
}

.main-content {
    min-height: 80vh;
}

.scrollable {
    max-height: 15em;
    overflow-y: auto;
}
    
/* Footer */
#footer {
    width: 100%;
    background-color: #333;
    color: #eeeeee;
    border-top: 1px solid #000;
    text-align: left;
    min-height: 10em;
}
#footer a {
    color: #eeeeee;
}
#footer a:hover {
    color: rgba(42,176,44,1.0);
    text-decoration: none;
}
#footer b {
    font-size: 1.1em;
}


/*5-Star-Rating*/
.rating-area {
    display: inline-block;
}
.rating-input {
    color: lightgray;
    float:right;
}
.rating-input:hover {
    color: Gold;
}
.rating-input:hover ~ .rating-input {
    color: Gold;
}


/* Sidebars */
#sidebar_links {
    left:0;
}
#sidebar_rechts {
    right:0;
}

@media (max-width: 1730px) {
    .sidebar {
        display: none;
    }
}


/* =========================
   App
   ========================= */


/* =========================
   Homepage
   ========================= */

.feature-card {
    border-radius: 15px;
    background-color: #fff;
    padding: 1rem;
    margin: 1rem;
    border: 1px solid #ddd;
    color: var(--cd-grey-500);
    max-width: 26rem;
}
.feature-card .head {
    font-size: 1.5em;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--cd-green-500);
    text-align: center;
}

#suche {
  width: 100px;
  transition: width 0.3s;

}

#suche:focus {
  width: 130px;
}