.svgIMG {
  width: 25px !important;
    height: 25px;
}

.item-point {
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background: #64ffda;
    border: solid 3px #00bfa5;
    text-decoration: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
    -khtml-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
    webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.item-point:before,
.item-point:after {
    content: "";
    margin: -3px 0 0 -3px;
    position: absolute;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 1px solid #1de9b6;
    border-radius: 50%;
}
.item-point:before {
    animation: blip1 1s infinite cubic-bezier(0, 0.6, 1, 0.6);
}
.item-point:after {
    animation: blip2 1s infinite linear;
}
.exPopoverContainer {
    width: 300px;
    height: 150px;
    position: relative;
    color: #50300F;
    bottom: 51px !important;
    left: -21px;
}

.borderRadius {
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.popBg {
    background-color: #FB8E20;
    width: 100%;
    height: 100%;
    position: absolute;
}

.popBody {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 10px;
}

    .popBody h1 {
        padding-bottom: 5px;
        margin: 0px;
        font-size: 18px;
    }

.popHeadLine {
    clear: both;
    width: 100%;
    height: 1px;
    background-color: #383737;
    margin: auto;
}

.popContentLeft {
    width: 178px;
    float: left;
    font-size: 11px;
    text-align: justify;
    margin-top: 10px;
}

.popContentRight {
    width: 100px;
    float: right;
    margin-top: 10px;
    text-align: center;
    font-size: 40px;
}

.arrow-down {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #FB8E20;
    opacity: 0.9;
}

.marker2 {
    width: 25px;
    height: 25px;
    background-color: #000;
    opacity: 0.9;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

    .marker2:hover {
        background-color: #CE473B;
    }

.c {
    clear: both;
}

.element-animation {
    animation: animationFrames ease-out 0.8s;
    animation-iteration-count: 1;
    transform-origin: 50% 50%;
    animation-fill-mode: forwards; /*when the spec is finished*/
    -webkit-animation: animationFrames ease-out 0.8s;
    -webkit-animation-iteration-count: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-fill-mode: forwards; /*Chrome 16+, Safari 4+*/
    -moz-animation: animationFrames ease-out 0.8s;
    -moz-animation-iteration-count: 1;
    -moz-transform-origin: 50% 50%;
    -moz-animation-fill-mode: forwards; /*FF 5+*/
    -o-animation: animationFrames ease-out 0.8s;
    -o-animation-iteration-count: 1;
    -o-transform-origin: 50% 50%;
    -o-animation-fill-mode: forwards; /*Not implemented yet*/
    -ms-animation: animationFrames ease-out 0.8s;
    -ms-animation-iteration-count: 1;
    -ms-transform-origin: 50% 50%;
    -ms-animation-fill-mode: forwards; /*IE 10+*/
}

@keyframes animationFrames {
    0% {
        opacity: 0;
        transform: translate(300px,0px) skewX(-30deg);
    }

    60% {
        opacity: 1;
        transform: translate(-40px,0px) skewX(30deg);
    }

    80% {
        opacity: 1;
        transform: translate(0px,0px) skewX(-15deg);
    }

    100% {
        opacity: 1;
        transform: translate(0px,0px) skewX(0deg);
    }
}

@-moz-keyframes animationFrames {
    0% {
        opacity: 0;
        -moz-transform: translate(300px,0px) skewX(-30deg);
    }

    60% {
        opacity: 1;
        -moz-transform: translate(-40px,0px) skewX(30deg);
    }

    80% {
        opacity: 1;
        -moz-transform: translate(0px,0px) skewX(-15deg);
    }

    100% {
        opacity: 1;
        -moz-transform: translate(0px,0px) skewX(0deg);
    }
}

@-webkit-keyframes animationFrames {
    0% {
        opacity: 0;
        -webkit-transform: translate(300px,0px) skewX(-30deg);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate(-40px,0px) skewX(30deg);
    }

    80% {
        opacity: 1;
        -webkit-transform: translate(0px,0px) skewX(-15deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0px,0px) skewX(0deg);
    }
}

@-o-keyframes animationFrames {
    0% {
        opacity: 0;
        -o-transform: translate(300px,0px) skewX(-30deg);
    }

    60% {
        opacity: 1;
        -o-transform: translate(-40px,0px) skewX(30deg);
    }

    80% {
        opacity: 1;
        -o-transform: translate(0px,0px) skewX(-15deg);
    }

    100% {
        opacity: 1;
        -o-transform: translate(0px,0px) skewX(0deg);
    }
}

@-ms-keyframes animationFrames {
    0% {
        opacity: 0;
        -ms-transform: translate(300px,0px) skewX(-30deg);
    }

    60% {
        opacity: 1;
        -ms-transform: translate(-40px,0px) skewX(30deg);
    }

    80% {
        opacity: 1;
        -ms-transform: translate(0px,0px) skewX(-15deg);
    }

    100% {
        opacity: 1;
        -ms-transform: translate(0px,0px) skewX(0deg);
    }
}
    