.babcock-map__popover {
    position: static;
}

@media (min-width: 1024px) {
    .babcock-map__popover {
        position: absolute;
    }
}

.babcock-map__popover__close,
.babcock-map__popover__close:hover {
    width: 25px;
    padding: 0;
    border: none;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -13px;
    right: -13px;
    z-index: 2;
    color: #fff;
    background-color: white;
}

.babcock-map__popover__close svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: var(--brand-primary);
}

.babcock-map__popover__content {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.babcock-map__popover__title {
    padding: 6px 10px;
    margin: 0;
    line-height: 1;
    position: relative;
    color: var(--brand-primary);
    background-color: var(--brand-secondary);
}

.babcock-map__popover__description {
    padding: 10px 10px;
    color: white;
    background-color: var(--brand-primary);
}

@media (min-width: 1024px) {
    .babcock-map__popover__description {
        max-width: 500px;
    }
}

.babcock-map__popover__description__row {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.babcock-map__popover__description__column {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.babcock-map__popover__description p {
    margin-bottom: 4px;
}

.babcock-map__popover__description ul {
    padding-left: 21px;
    margin-left: 0;
    margin-top: 4px;
}

.babcock-map__popover__description li {
    font-size: 14px;
    line-height: normal;
    list-style-type: disc;
}

.babcock-map__popover__description li ~ li {
    margin-top: 4px;
} 