.examples__map {
    height: 100vh;
}

/**
 * info bubble on map
 */

.examples__info {
    display: table;
}

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

.examples__infoText {
    position: relative;
}

.examples__infoText a::after {
    content: '';
    position: absolute;
    inset: 0;
}

.examples__icon {
    width: 1rem;
}

.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: flex;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease-out;
}

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

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

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

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

.examplesOptions__label:hover {
    color: inherit;
}

.examplesOptions__label:after {
    content: "\e828";
    font-family: "fa-light";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border: 0;
    font-size: 1rem;
    text-align: center;
    color: #000;
    z-index: -1;
    line-height: 10px;
    opacity: .4;
}

.examplesOptions__checkbox:checked + .examplesOptions__label:after {
    opacity: 1;
}

li:has(.examplesOptions__checkbox:checked) .examplesOptions__icon,
.examplesOptions__checkbox:checked + .examplesOptions__label {
    opacity: 1;
}

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