.safety_guides {
    counter-reset: guide-counter;
}
.safety_guides .guide-item {
    position: relative;
}
.safety_guides .guide-item + .guide-item {
    margin-top: 20px;
}
.safety_guides .guide-item.guide-number {
    padding-left: 36px;
    counter-increment: step-counter;
}
.safety_guides .guide-item.guide-number:before {
    content: counter(step-counter)"";
    position: absolute;
    left: 0;
    height: 24px;
    width: 24px;
    border-radius: 12px;
    border: 1px solid var(--Charcoal-50, #8B8C8E);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}
.guide-tip {
    background: #F4F8FD;
    padding: 13px;
    padding-left: 40px;
    border-radius: 10px;
    margin-top: 25px;
    font-size: 16px;
    position: relative;
}
.guide-tip:before {
    content: '';
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3E%3Cpath d='M8 16.7988C12.4183 16.7988 16 13.2171 16 8.79883C16 4.38055 12.4183 0.798828 8 0.798828C3.58172 0.798828 0 4.38055 0 8.79883C0 13.2171 3.58172 16.7988 8 16.7988Z' fill='%2391BAEC'/%3E%3Cpath d='M8 5.75098H8.00762' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 11.8464V8.79883' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-size: contain;
    height: 16px;
    width: 16px;
    position: absolute;
    left: 12px;
}