.tag-Modelleisenbahn {
    background:#1f6fff;
    color:#fff;
    padding:4px 10px;
    border-radius:20px;
}

.tag-Klemmbausteine {
    background:#28a745;
    color:#fff;
    padding:4px 10px;
    border-radius:20px;
}

/*!
 * ============================================================
 * AusstellerFilter
 * ausstellerfilter.css
 * Version 0.2.0-beta1
 * ============================================================
 */

/* ============================================================
   Suchbereich
   ============================================================ */

.af-search {

    margin: 0 0 2rem;
    padding: 1.5rem;

    background: #f8f9fa;

    border: 1px solid #dcdcdc;
    border-radius: 10px;

    box-sizing: border-box;

}

/* ============================================================
   Überschrift
   ============================================================ */

.af-search h3 {

    margin: 0 0 1rem;

    font-size: 1.25rem;
    font-weight: 600;

    color: #333;

}

/* ============================================================
   Eingabefeld
   ============================================================ */

.af-search-input {

    width: 100%;

    height: 48px;

    padding: 0 1rem;

    font-size: 1rem;

    border: 1px solid #bfbfbf;
    border-radius: 6px;

    background: #fff;

    box-sizing: border-box;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;

}

.af-search-input:focus {

    outline: none;

    border-color: #0d6efd;

    box-shadow: 0 0 0 3px rgba(13,110,253,.15);

}

/* ============================================================
   Trefferzähler
   ============================================================ */

.af-counter {

    margin-top: .75rem;

    font-size: .9rem;

    color: #666;

}

/* ============================================================
   Versteckte Aussteller
   ============================================================ */

.af-hidden {

    display: none !important;

}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 768px) {

    .af-search {

        padding: 1rem;

    }

    .af-search-input {

        font-size: 16px;

    }

}