.svgMapOuter {
    position: relative;
}

.svgItemPopup {
    background: #fff;
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.4);
    position: absolute;
    width: 220px;
    padding: 0;
    z-index: 10;
}

.svgItemPopup__triangle {
    width: 30px;
    height: 30px;
    position: absolute;
    overflow: hidden;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%, 0);
}

.svgItemPopup__triangle:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: white;
    transform: rotate(45deg);
    bottom: 22px;
    left: 10px;
    box-shadow: -1px -1px 10px -2px rgba(0,0,0, 0.5);
}

.svgItemPopup__close {
    background: url("./img/e-remove.svg") no-repeat center center white;
    background-size: 50%;
    cursor: pointer;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
    position: absolute;
    right: -10px;
    top: -10px;
}

.svgItemPopup .image {
    padding: 30px 20px 20px 20px;
}

.svgItemPopup .content {
    padding: 15px;
    line-height: 1.35em;
}

.svgItemPopup .content h3 {
    line-height: 1.2em;
    font-size: 1.25rem;
}

.svgItemPopup .content__link a {
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
}

.svgItemPopup.noneVisible {
    display: none;
}

.svgItemPopup.editVisible,
.svgItemPopup.active {
    display: flex;
    flex-direction: column;
}

.svgItemPopup.editVisible {
    position: static;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .svgItemPopup {
        left: 50% !important;
        top: 50% !important;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

.svgMap {
    position: relative;
    max-width: 940px;
    margin: 0 auto;
}

.svgMap__info {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 4rem;
    position: absolute;
    right: 2rem;
    top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.svgMap__info .svgMap__info--icon {
    display: inline-block;
    background: #c2d1e2;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    line-height: 4.75rem;
    -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
}

.svgMap__info .svgMap__info--icon svg {
    max-width: 14px;
}

.svgMap__info .svgMap__info--text {
    font-weight: 500;
    padding-left: 2rem;
    line-height: 1.2em;
    max-width: 220px;
}

@media (max-width: 575px) {
    .svgMap__info {
        top: -2rem;
    }
}

@media (max-width: 370px) {

    /* Karte auf kleinen Screens nicht benutzbar und deshalb ausblenden */
    .svgMapOuter {
        display: none;
    }

    .bullet-list {
        margin-top: -80px;
    }

}