.aha-map-container {
    display: flex;
    border: solid 1px #e7e7e7;
}

.aha-map-map {
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 800px;
}

.aha-map-legend {
    background-color: #f9f9f9;
    min-width: 300px;
}

.aha-map-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: solid 1px #e7e7e7;
    background-color: white;
    padding: 10px 5px;
    line-height: 1.1;
    filter: grayscale(1);
    opacity: .7;
    transition: filter 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.aha-map-legend-item:last-child {
    border-bottom: none;
}

.aha-map-legend-item.active {
    filter: grayscale(0);
    opacity: 1;
}

.aha-map-legend-item:hover {
    filter: grayscale(0);
}

.aha-map-legend-item.active:hover {
    opacity: .7;
}

.aha-map-legend-item img {
    max-width: 25px;
}

.aha-map-legend-item .legend-line {
    height: 5px;
    width: 25px;
    min-width: 25px;
    display: inline-block;
}

.aha-map-infowindow {
    font-weight: bold;
}

@media(max-width: 870px){
    .aha-map-legend {
        min-width: auto;
    }
}

@media(max-width: 630px){
    .aha-map-map {
        min-height: auto;
    }
}