/**
 * Shape/Symbol/Pacman
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
@mixin pacman($width: 6em, $color: #000)
{
    width: 0;
    height: 0;
    border-right: $width solid transparent;
    border-top: $width solid $color;
    border-left: $width solid $color;
    border-bottom: $width solid $color;
    border-top-left-radius: $width;
    border-top-right-radius: $width;
    border-bottom-left-radius: $width;
    border-bottom-right-radius: $width;
}