/* Maps */
.google-map {
    background: #E5E3DF;
    height: 450px;
    margin: -35px 0 30px 0;
    width: 800px;
}

.google-map-1 {
    background: #E5E3DF;
    height: 750px;
    margin: -35px 0 30px 0;
    width: 1220px;
}

.google-map.small {
    height: 250px;
    border-radius: 6px;
    margin: 0;
    clear: both;
}

.google-map img {
    max-width: 9999px;
}

.google-map-borders {
    border: 1px solid #DDD;
    padding: 4px;
    border-radius: 4px;
}

/* Map Pins */
@-webkit-keyframes mapPinPulse {
    from {
        transform: scale(1);
        opacity: 0.7;
    }

    to {
        transform: scale(10);
        opacity: 0;
    }
}

@keyframes mapPinPulse {
    from {
        transform: scale(1);
        opacity: 0.7;
    }

    to {
        transform: scale(10);
        opacity: 0;
    }
}

/* Map Info Window */
.map-info-window {
    position: absolute;
    bottom: 30px;
    left: 50%;
    font-size: 12.8px;
    font-size: 0.8rem;
    background: #FFF;
    border-radius: 4px;
    padding: 15px 20px;
    white-space: nowrap;
    transform: translate3d(-50%, 0, 0);
}

.map-info-window:after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    width: 0;
    height: 0;
    border-top: 7px solid #FFF;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
}

.map-info-window .map-info-window-close {
    position: absolute;
    top: 3px;
    right: 3px;
}

.map-rounded-pin {
    width: 13px;
    height: 13px;
    background: #CCC;
    border-radius: 100%;
}

.map-rounded-pin.map-rounded-pin-animated {
    position: relative;
}

.map-rounded-pin.map-rounded-pin-animated:before, .map-rounded-pin.map-rounded-pin-animated:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit;
    border-radius: inherit;
    -webkit-animation-name: mapPinPulse;
    animation-name: mapPinPulse;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.map-rounded-pin.map-rounded-pin-animated:after {
    -webkit-animation-delay: 1.250s;
    animation-delay: 1.250s;
}

/* Google Map on Footer */
.google-map-footer {
    margin: 35px 0 -50px !important;
}
