
.alert_list {
    list-style: none;
    padding-left: 0;
}

.alert_list li {
    position: relative;
    padding-left: 40px; /* Space for the image */
    padding-bottom: 1.5rem;
    margin-bottom: 12px;
}

.alert_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    background-image: url('../../img/bullet_list/alert.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

li.red {
    color: #CF0202;
}