/*
.list {
    display: flex;
    flex-direction: column;
}
.list__item {
    position: relative;
    display: block;
    padding-left: 30px;
}
.list_marker-square>.list__item::before {
    position: absolute;
    top: .5em;
    left: 4px;
    display: inline-block;
    width: 12px;
    height: 12px;
    content: "";
    transform: rotate(45deg) translateY(-50%);
    border-radius: 2px;
    background-color: var(--primary-white);
}
.list_marker-blue .list__item::before {
    background-color: var(--primary-blue);
}
.list_marker-red .list__item::before {
    background-color: var(--primary-red);
}
*/
