.map-marker-container {
    position: absolute;
    width: 26px;
    height: 26px;
    margin-top: -33px;
    margin-left: -13px;
}

.map-marker {
    width: 22px;
    height: 22px;
    border-radius: 50% 50% 50% 0;
    background: #2489cc;
    position: absolute;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-box-shadow: 1px 3px 5px rgba(0,0,0,.1);
    -moz-box-shadow: 1px 3px 5px rgba(0,0,0,.1);
    box-shadow: 1px 3px 5px rgba(0,0,0,.1);
    border: 1px solid rgba(0,0,0,0.2);
}

.map-marker:after {
    /*content: '';*/
    width: 16px;
    height: 16px;
    margin: 5px 0 0 5px;
    background: rgba(0,0,0,.2);
    position: absolute;
    border-radius: 100%;
}

.map-marker-title {
    position: absolute;
    top: 5px;
    left: 1px;
    right: 0;
    color: #fff;
    text-align: center;
    font-size: 10px;
}

.map-marker-indicator {
    width: 8px;
    height: 8px;
    margin: 8px 0 0 8px;
    background: white;
    position: absolute;
    border-radius: 100%;
}

.map-marker[style-color="red"] {
    background: #ce5043;
}

.map-marker[style-color="green"] {
    background: #6cb77a;
}

.map-marker[style-color="yellow"] {
    background: #FDD835;
}

.map-marker[style-color="grey"] {
    background: #f4f4f4;
}

.popup-hr {
    border-width: 0 0 1px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-top: 10px;
}

.popup-description {
    color: #888;
}








/****

http://www.ibrahimayaz.com
**/


@-webkit-keyframes throbberAnim {
    50% {
        -webkit-transform: scale(1.2);
    }
}



@-moz-keyframes throbberAnim {
    50% {
        -webkit-transform: scale(1.2);
    }
}

.info-dot {
    width: 15px;
    height: 15px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: opacity .7s ease;
    -moz-transition: opacity .7s ease;
    -ms-transition: opacity .7s ease;
    transition: opacity .7s ease;
    cursor: pointer;
    border: 2px solid #fff;
    -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 4px rgba(0,0,0,0.3);
    -ms-box-shadow: 0 0 4px rgba(0,0,0,0.3);
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
    position: absolute;

    opacity: 1;
    /*-webkit-animation: throbberAnim 1.5s infinite ease forwards;
    -moz-animation: throbberAnim 1.5s infinite ease forwards;
    -ms-animation: throbberAnim 1.5s infinite ease forwards;
    -o-animation: throbberAnim 1.5s infinite ease forwards;
    animation: throbberAnim 1.5s infinite ease forwards;*/
    background-color: rgb(46, 151, 222);
}

.info-dot:after {
    content: attr(data-content);
    display: block;
    bottom: 20px;
    left: 50%;
    position: absolute;
    white-space: pre;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    line-height: 19px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    font-size: 14px;
    padding: 16px;
    opacity: 0;
    -webkit-transition: opacity .3s ease, bottom .3s ease;
    -moz-transition: opacity .3s ease, bottom .3s ease;
    -ms-transition: opacity .3s ease, bottom .3s ease;
    -o-transition: opacity .3s ease, bottom .3s ease;
    transition: opacity .3s ease, bottom .3s ease;
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    pointer-events: none;
    -ms-pointer-events: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #000;
    z-index:9999;
}


.map-marker[style-color="red"],
.info-dot[style-color="red"] {
    background: #ce5043;
}

.map-marker[style-color="green"],
.info-dot[style-color="green"] {
    background: #6cb77a;
}

.map-marker[style-color="yellow"],
.info-dot[style-color="yellow"] {
    background: #FDD835;
}

.map-marker[style-color="white"],
.info-dot[style-color="white"] {
    background: #f4f4f4;
}

.map-marker[style-color="grey"],
.info-dot[style-color="grey"] {
    background: rgb(126, 140, 141);
}

/* ------------------------------------------------------------------------------------------------------------------ */

.info-triangle {
    font-size: 20px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.info-triangle[style-color="red"] {
    color: rgb(126, 140, 141);
}

.info-triangle[style-color="green"] {
    color: rgb(126, 140, 141);
}

.info-triangle[style-color="yellow"] {
    color: rgb(126, 140, 141);
}

.info-triangle[style-color="white"] {
    color: rgb(126, 140, 141);
}

.info-triangle[style-color="grey"] {
    color: rgb(126, 140, 141);
}