.examples__map {
    height: 800px;
    height: 80vh;
}

/**
 * info bubble on map
 */

.examples__info {
    display: table;
}

.examples__infoImage,
.examples__infoText {
    display: table-cell;
    vertical-align: top;
    padding-right: 1em;
}

.examples__infoTitle {
    margin: 0;
    font-size: 16px;
}

/**
 * Legenda
 * Options / filter
 */

.examples__legendaHeading {
    font-size: 16px;
}

.examplesOptions {
    margin: 0;
    padding: 0;
    list-style: none;
}

.examplesOptions__item {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease-out;
}

.examples__legenda--initialised .examplesOptions__item {
    max-height: 3em;
}

.examplesOptions__icon {
    float: left;
    height: 1.3em;
    margin: .5em .5em 0 0;
    vertical-align: middle;
}

.examplesOptions__checkbox {
    position: absolute;
    left: -999em;
}

.examplesOptions__label {
    display: block;
    position: relative;
    padding: 5px 1.6em 5px 0;
    z-index: 1;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.examplesOptions__label:hover {
    color: inherit;
}

.examplesOptions__label:after {
    content: "";
    font-family: "icons";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border: 2px solid #aaa;
    font-size: 10px;
    text-align: center;
    color: #fff;
    z-index: -1;
    line-height: 10px;
}

.examplesOptions__checkbox:checked + .examplesOptions__label:after {
    content: "\2611";
    border-color: #00a62d;
    background: #00a62d;
}

.examplesOptions__input--hidden {
    position: absolute;
    left: -999em;
}