.contacts_link, .contacts_link:focus, .contacts_link:hover {
    color: chartreuse;
}

#map {
    width: 100%;
    height: 350px;
}

.list-rectangle {
    list-style: none;
    margin: 0;
    padding: 0;
}
.list-rectangle>li {
    position: relative;
    display: block;
    margin-bottom: .25rem;
    padding: .325rem .825rem .325rem 1.325rem;
    color: #000;
}
.list-rectangle>li:last-child {
    margin-bottom: 0;
}
.list-rectangle>li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0.5rem;
    background: #fb993b;
}

.list-counter-square {
    list-style: none;
    counter-reset: list;
    margin: 0;
    padding: 0;
    /*overflow: hidden;*/
    overflow: scroll;
}
.list-counter-square>li {
    position: relative;
    display: block;
    height: 2rem;
    line-height: 2rem;
    margin-left: 2rem;
    margin-bottom: .25rem;
    padding-left: .5rem;
    padding-right: .5rem;
    color: #000;
    white-space: nowrap;
}
.list-counter-square>li:last-child {
    margin-bottom: 0;
}
.list-counter-square>li::before {
    content: counter(list);
    counter-increment: list;
    position: absolute;
    left: -2rem;
    top: 0;
    bottom: 0;
    width: 2rem;
    line-height: 2rem;
    text-align: center;
    color: #fff;
    background: rgba(245, 124, 0, .75);
}
