@charset "UTF-8";
.information-block .list_near {
    overflow: hidden;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    padding-bottom: 30px;
    max-height: 180px;
}
.information-block input:checked~.list_near {
    max-height: none;
}
.list_near {
    gap: 0 2%;
}
.list_near li {
    font-size: .875rem;
    line-height: 1.5;
    margin-bottom: .375rem;
}
.list_near .list_near__name {
    color: var(--secondary);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.list_near .list_near__address {
    display: inline-flex;
    align-items: center;
    font-size: .75rem;
}
.list_near .list_near__address:before {
    content: "place";
    font-family: Material Icons;
    font-size: .875rem;
    color: var(--primary);
}
@media screen and (min-width: 768px) {
    .list_near li {
        width: calc(96% / 3);
    }
}