/* ==========================================
   Alphabetleiste
   ========================================== */

.alphabet {
    text-align: center;
    margin: 25px 0;
}

.alphabet a {
    display: inline-block;
    margin: 4px;
    padding: 8px 12px;
    background: #2A84DF;
    color: #ffffff;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
}

.alphabet a:hover {
    background: #03509C;
    text-decoration: none;
}

/* ==========================================
   Überschrift des Begriffs
   ========================================== */

.titel-startseite {
    color: #2A84DF !important;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: left;
    margin: 25px 0 15px 0;
}

/* ==========================================
   Bereich des Lexikontextes
   ========================================== */

.lexikon-bereich {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
}

/* Erklärung */

.lexikon-bereich p {
    color: #000 !important;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

/* Links innerhalb des Lexikons */

.lexikon-bereich a {
    color: #2A84DF;
    text-decoration: none;
}

.lexikon-bereich a:hover {
    text-decoration: underline;
}

/* Bilder */

.lexikon-bereich img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0;
}
/* Trennung der Lexikon-Einträge */

.lexikon-eintrag {
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

.nach-oben {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #6B705C;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
    text-decoration: none;
    z-index: 1000;
}

.nach-oben.sichtbar {
    opacity: 0.85;
    visibility: visible;
}

.nach-oben:hover {
    background-color: #4F5B3A;
    color: #ffffff;
    text-decoration: none;
}