#location-map__container {
    position: relative;
    width: 352px;
    height: 422px;
}

#location-map__map {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
}

.location-map__item {
    position: absolute;
}

.location-map__item img {
    transition: all .5s;
    position: absolute;
    z-index: 1;
}

.location-map__item img:hover {
    transform: scale(1.1);
}

.location-map__item.klaerwerk {
    top: 24%;
    left: 0%;
    width: 30%;
}

.location-map__item.bhkw-oe {
    top: 32%;
    left: 18%;
    width: 23%;
}

.location-map__item.bmhkw-h {
    top: 37%;
    left: 56%;
    width: 18%;
}

.location-map__item.eeq-heinrich {
    top: 60%;
    left: 63%;
    width: 18%;
}

.location-map__item.eeq-lamme {
    top: 48%;
    left: 5%;
    width: 18%;
}

.location-map__item.eeq-stoeckheim {
    top: 78%;
    left: 36%;
    width: 18%;
}

.location-map__item.hkwm {
    top: 32%;
    left: 39%;
    width: 22%;
}

.location-map__item.hkwn {
    top: 22%;
    left: 31%;
    width: 22%;
}

.location-map__item.hkws {
    top: 61%;
    left: 46%;
    width: 27%;
}

.location-map__item.hkww {
    top: 53%;
    left: 19%;
    width: 27%;
}

.location-map__item__popup {
    position: absolute;
    z-index: 999;
    opacity: 0;
    transition: all .5s;
    background-color: white;
    padding: .75rem;
    width: 300px;
    left: -110px;
    bottom: 0;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(0,0,0,.2);
    visibility: hidden;
    font-size: .8em;
}

.location-map__item__popup:before {
    content: "";
    position: absolute;
    z-index: 999;
    bottom: calc(-.5rem + 1px);
    left: calc(100% / 2 - 1rem);
    width: 0;
    border-left: .5rem solid transparent;
    border-right: .5rem solid transparent;
    border-top: .5rem solid white;
}

.location-map__item:hover .location-map__item__popup,
.location-map__item.active .location-map__item__popup {
    opacity: 1;
    visibility: visible;
}

.location-map__item__popup > h3 {
    margin-top: 0 !important;
}

.location-map__item__popup > p {
    margin-top: .75em;
}
