#heatmap {
    width: 100%;
    height: 500px;
}

.subheader {
    margin-bottom: 15px;
    font-weight: 700;
}

.infopane {
    position: absolute;
    right: 0;
    width: 250px;
    max-width: none;
    padding: 10px 20px 30px 20px;
    border: none;
}

.infopane__cancel {
    display: none;
}

.list-item {
    line-height: 20px;
    cursor: pointer;
}

.list-item:hover {
    color: red;
}

.list-item_selected {
    color: red;
    font-weight: 700;
}

.list-number {
    display: inline-block;
    min-width: 13px;
    margin-right: 10px;
    font-size: 11px;
}

.infopane_show-control {
    width: auto;
    padding-bottom: 20px;
}

.infopane__control {
    display: inline-block;
    border-bottom: 1px dashed black;
}

._hidden {
    display: none;
}

@media (max-width: 768px) {
    .infopane {
        width: 100%;
    }

    .infopane__cancel {
        display: block;
        position: absolute;
        top: 5px;
        right: 5px;
        width: 15px;
        height: 15px;
        background-image: url('../i/cancel.svg');
        background-size: 15px;
    }
}