.maptool-map {
    width: 100%;
    height: 380px;
    margin-bottom: 40px;
    position: sticky;
    top: 15px;
    border-radius: 10px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .maptool-map {
        height: 600px;
    }
}

.maptool-filter {
    margin-bottom: 30px;
}

.maptool-filter-options {
    margin-bottom: 1em;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}


.maptool-filter legend {
    font-size: 1.2rem;
    font-family: "MetaWeb Bold";
}

.maptool-filter fieldset {
    display: inline-block;
    margin: 0;
    border: 0;
    padding: 0;
}

.maptool-filter label {
    display: inline-block;
    margin-right: 0.75em;
}

.maptool-filter .form-check-input {
    position: static;
    margin-left: auto;
    margin-top: auto;
}

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

.maptool-event-list > li {
    margin-bottom: 25px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    /* 
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
    border-bottom: 1px solid #ddd; 
    */

    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    border: 1px solid transparent;
}
.maptool-event-list > li:hover {
    border-color: var(--primary);
}

.maptool-event-list > li h3 {
    font-size: 22px;
}
.maptool-event-list > li h3 a:hover {
    text-decoration: none;
    color: var(--primary);
}

.maptool-event-list > li .teaser p:last-child {
    margin-bottom: 0;
}

.maptool-event-list .maptool-event-meta {
    color: #666;
    font-size: 0.9em;
}

.maptool-popup a {
    white-space: nowrap;
    color: var(--primary);
}

/* Reader */

.maptool-event-full .maptool-event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}