/* CONTAINER */
.poi-box{
    margin-top:25px;
    padding:20px;
    background:#f8f5f1;
    border:1px solid #e5ded6;
    border-radius:10px;
}

/* TITLE */
.poi-box strong{
    display:block;
    font-size:18px;
    font-weight:600;
    margin-bottom:15px;
    color:#3b2a1a;
    text-transform:uppercase;
    letter-spacing:1px;
}

/* FILTER BUTTONS */
.poi-box button{
    border:none;
  color:#000;
    background:##6b4b33;
    padding:6px 12px;
    border-radius:20px;
    margin-right:6px;
    cursor:pointer;
    font-size:13px;
    transition:all 0.2s ease;
}

.poi-box button:hover{
    background:#e0d4c6;
}

.poi-filter{
  color:#000;
}

/* ACTIVE FILTER */
.poi-box button.active{
    background:#6b4b33;
    color:#fff;
}

/* LIST */
#poiContainer{
    margin-top:15px;
}

/* ITEM */
.poi-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 0;
    border-bottom:1px solid #eee;
    font-size:14px;
    color:#444;
}

/* LAST ITEM */
.poi-item:last-child{
    border-bottom:none;
}

/* DISTANCE */
.poi-item span{
    font-size:13px;
    color:#888;
}


.poi-filter.active{
  background:#6b4b33
    color:#fff,
}

#poiPagination{
margin-top:15px;
text-align:center;
}

#poiPagination button{
margin:0 3px;
  color:#000;
padding:5px 10px;
border:none;
background:#eee;
border-radius:6px;
cursor:pointer;
}

#poiPagination button:hover{
background:#ddd;
}