﻿.mx-ul-list ul {
    list-style-type: none; /* Remove default bullet style */
    margin-left: 15px;
    padding: 0;
}

    .mx-ul-list ul li::before {
        font-family: 'bootstrap-icons'; /* Specify Bootstrap icon font family */
        content: '\F285'; /* Unicode character for bullet point */
        margin-right: 4px; /* Adjust spacing between bullet and text */
        font-size: 12px; /* Adjust the size of the bullet icon */
        color: #000; /* Adjust the color of the bullet icon */
        display: inline-block; /* Ensure proper alignment with the text */
    }
