/* =========================================================
   KNOPPENOVERZICHT
   ========================================================= */

.knoppen {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));

    gap: 10px;

    margin-bottom: 20px;
}


/* =========================================================
   PERSOONKNOP
   ========================================================= */

.persoonknop {

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 74px;

    background: white;

    border: 3px solid #cccccc;

    border-radius: 10px;

    text-decoration: none;

    color: #111;

    font-size: 18px;
    font-weight: bold;

    transition: .15s;
}

.persoonknop:hover {
    transform: scale(1.02);
}

.persoonknop.active {
    background: #e8f2ff;
}


/* =========================================================
   BESTELKAART
   ========================================================= */

.bestelkaart {

    background: white;

    border: 3px solid #cccccc;

    border-radius: 12px;

    overflow: hidden;

    transition: .15s;
}

.bestelkaart:hover {

    transform: scale(1.02);

}


/* =========================================================
   GROOT ARTIKELVLAK
   ========================================================= */

.artikelvlak {

    border: none;

    background: white;

    margin: 0;

    min-height: 95px;

    border-radius: 0;

    cursor: pointer;
}

.artikelvlak b {

    display: block;

    font-size: 18px;

    margin-bottom: 6px;
}

.artikelvlak span {

    display: block;

    color: #666;

    font-size: 14px;
}

.artikelvlak strong {

    display: inline-block;

    margin-top: 10px;

    padding: 5px 14px;

    color: white;

    border-radius: 30px;

    font-size: 15px;
}


/* =========================================================
   MIN KNOP
   ========================================================= */

.miniknop {

    margin: 0;

    border-radius: 0;

    border: none;

    padding: 10px;

    font-size: 18px;

    font-weight: bold;
}


/* =========================================================
   BADGES
   ========================================================= */

.badge {

    display: inline-block;

    margin-top: 6px;

    padding: 4px 10px;

    border-radius: 20px;

    color: white;

    font-size: 13px;
}


/* =========================================================
   ZOEKVELDEN
   ========================================================= */

#zoekPersoon,
#zoekArtikel {

    margin-bottom: 16px;

    font-size: 18px;
}