.dkl-location__map {
    pointer-events: none;
}

.dkl-location__map-point {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -100%);
    pointer-events: none;
}

.dkl-location__map-point img {
    display: block;
    width: 64px;
    height: auto;
    margin-top: 10px;
    filter: drop-shadow(0 5px 5px rgba(37,52,64,.28));
}

.dkl-location__map-label {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 205px;
    height: 46px;
    padding: 0 54px 0 18px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(37,52,64,.28);
    color: #202a31;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.dkl-location__map-label::after {
    position: absolute;
    bottom: -9px;
    left: 50%;
    width: 18px;
    height: 18px;
    margin-left: -9px;
    background: #fff;
    box-shadow: 3px 3px 4px rgba(37,52,64,.1);
    content: "";
    transform: rotate(45deg);
}

.dkl-location__map-label span {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 46px;
    border-radius: 0 5px 5px 0;
    background: #d95151;
    color: #fff;
    font: 400 28px/1 Arial, sans-serif;
}

@media screen and (max-width: 600px) {
    .dkl-location__map-point img {
        width: 54px;
        margin-top: 8px;
    }

    .dkl-location__map-label {
        min-width: 184px;
        height: 42px;
        padding: 0 48px 0 15px;
        font-size: 12px;
    }

    .dkl-location__map-label span {
        width: 38px;
        height: 42px;
    }
}
