@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1.0;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: 0.0;
    }
}

@keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1.0;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: 0.0;
    }
}

.richmarker-arrow {
    position:absolute;
    display: none;
    top: -28px;
    font-size: 4em;
    width: 45px;
    left: -4px;
    text-align: center;
    color: lightseagreen;
    z-index: 10000;
}

.richmarker-container {
    position: relative;
    top:-20px;
    left:-20px
}

.richmarker-centre {
    width: 20px;
    height: 20px;
    background-color: #057cff;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    border: 4px solid white;
}

.richmarker-outer {
    border: 15px solid #057cff;
    -webkit-border-radius: 30px;
    height: 40px;
    width: 40px;
    position: absolute;
    left: 0px;
    top: 0px;
    -webkit-animation: pulsate 1.5s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0.0;
}