.post-map {
    max-width: 1100px;
    margin: auto;
    position: relative;
    z-index: 0;
}

.post-map-pin {
    position: absolute;
    background-size: contain;
    z-index: 0;
}

.post-map-pin.active, .post-map-pin.current {
    z-index: 10;
}


.post-map-pin.current  .post-map-pin-content {
    opacity:1;
}

.post-map-pin-image {
    transform: scale(1);
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    cursor: pointer;
    width: 100%;
    height: 100%;
    background-size: cover;
}


.post-map-pin-image:hover {
    transform: scale(1.2);
}

.post-map-pin.active .post-map-pin-image, .post-map-pin.current .post-map-pin-image {
    transform: scale(1.5);
}

.post-map-pin-content {
    position: absolute;
    width: 200px;
    height: initial;
    padding: 10px 0;
    margin: 20px;
    text-align: center;
    line-height: 12px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
    z-index: 9999;
}

.post-map-pin-content.active {
    opacity: 1;
    pointer-events: all;
}

.post-map-pin-content hr {
    margin: 8px auto;
    margin-bottom: 0;
}

.post-map-pin-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 17px;
    line-height: 18px;
}

.post-map-pin-text {
    font-weight: 100;
    padding: 10px;
    line-height: normal;
}

a.post-map-pin-link {
    padding: 2px 10px;
    border: 1px solid #FFFFFF;
    color: inherit;
    margin-top: 10px;
    display: inline-block;
    margin-bottom: 15px;
}

a.post-map-pin-link:hover {
    background: #FFFFFF;
    color: #000000;
}

