/* LEGEND */

.legend {
    display: flex;
    flex-wrap: wrap;
}

.legend__item {
    font-size: 30px;
    margin: 20px;
    padding-left: 50px;
    position: relative;
}

.legend__item::before {
    background-color: var(--black);
    border-radius: 50%;
    content: '';
    height: 40px;
    left: 0;
    /* outline: var(--outline); */
    box-shadow: var(--box-shadow);
    position: absolute;
    top: 0;
    width: 40px;
}

.legend__item.m--closed::before {
    background-color: #fff;
}

.legend__item.m--advice::before {
    background-color: var(--grey);
}
