/* Zooming Badges on Hover */
.zoom_hover {
    transition: transform .2s;
}

.zoom_hover:hover {
    transform: scale(2.5);
}

