.dt-filters{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}
.dt-filter{
    padding:10px 18px;
    border-radius:100px;
    border:1px solid var(--dt-border);
    background:white;
    cursor:pointer;
    transition:.25s;
}
.dt-filter:hover{
    background:#eef4ff;
}
.dt-filter.active{
    background:var(--dt-primary);
    color:white;
    border-color:var(--dt-primary);
}