/*==================================================
TOOLBAR
==================================================*/
.dt-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:12px;
}
.dt-toolbar-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    width: 100%;
}

/*==================================================
SEARCH
==================================================*/
.dt-search{
    display:flex;
    align-items:center;
    gap:10px;
    width:100%;
    min-width:320px;
    max-width:640px;
    background:#fff;
    border:1px solid #dde4ea;
    border-radius:12px;
    padding: 1em;
}
@media (min-width:768px){
    .dt-search{
        background-color: rgb(239, 246, 255 );
    }
}
.dt-search svg{
    width:18px;
    height:18px;
    stroke:#94a3b8;
    fill:none;
    stroke-width:2;
    flex:none;
}
.dt-search input{
    flex:1;
    border:0;
    outline:0;
    background:none;
    font-size:.95rem;
    padding: 0.5rem;
    width: 100%;
}
.dt-search button{
    border:0;
    background:none;
    cursor:pointer;
    color:#94a3b8;
    font-size:1.3rem;
}
/*==================================================
COUNTER
==================================================*/
.dt-counter{
    font-size:0.95rem;
    font-weight:700;
}
.dt-counter-label{
    color:#64748b;
    margin-left:6px;
}
/*==================================================
FILTERS
==================================================*/
.dt-filters{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}
.dt-filter{
    border:1px solid #dde4ea;
    background:#fff;
    border-radius:999px;
    padding:7px 14px;
    cursor:pointer;
    transition:.2s;
    font-size:.85rem;
}
.dt-filter:hover{
    background:#f6f8fb;
}
.dt-filter.active{
    background:#0b5ed7;
    color:#fff;
    border-color:#0b5ed7;
}