.icon-class-1 {
    background-image: url('path/to/icon1.svg'); /* Adjust the path */
    width: 16px;
    height: 16px;
    display: inline-block;
}

.icon-class-2 {
    background-image: url('path/to/icon2.svg'); /* Adjust the path */
    width: 16px;
    height: 16px;
    display: inline-block;
}

.icon-class-3 {
    background-image: url('path/to/icon3.svg'); /* Adjust the path */
    width: 16px;
    height: 16px;
    display: inline-block;
}



.location_name::before {
    content: '';
    display: inline-block;
    width: 30px;              /* Adjust as needed */
    height: 30px;             /* Adjust as needed */
    margin-right: 8px;        /* Space between icon and text */
    background-image: url('/wp-content/plugins/event-whale/icons/icon1.svg');
    background-size: contain; /* Ensure SVG scales correctly */
    background-repeat: no-repeat;
    vertical-align: middle;   /* Align icon with text */
  }
  