
/*new*/

.food-icon {
    width: 18px;
    height: 18px;
    border: 2px solid;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.food-icon::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.veg-icon {
    border-color: #008000;
}

.veg-icon::after {
    background: #008000;
}

.nonveg-icon {
    border-color: #a40000;
}

.nonveg-icon::after {
    background: #a40000;
}


