/**
 * Menu Display Shortcode Styles
 * Bullet list with custom plugin SVG bullets
 */

.gr-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gr-menu-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
}

.gr-menu-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 16px;
    height: 16px;
    background-color: currentColor;
    mask-image: url('../images/gr-menu-bullet.svg');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url('../images/gr-menu-bullet.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}
