.placemark {
    position: relative;
    background-size: 100%;
    width: 30px;
    height: 30px;
    margin-left: -15px;
    margin-top: -15px;
    border: 2px solid white;
    border-radius: 50%;
}
.placemark.cdek {
    background-image: url('/images/delivery/cdek-small.svg');
}
.placemark.dellin {
    background-image: url('/images/delivery/dellin-small.svg');
}
.placemark.pec {
    background-image: url('/images/delivery/pec-small.svg');
}
.placemark.tyres {
    background-image: url('/images/delivery/tyres-small.svg');
}

.placemark-active {
    background-repeat: no-repeat;
    width: 30px;
    height: 40px;
    margin-left: -15px;
    margin-top: -30px;
    transform-origin: 50% 100%;
    border: none;
    border-radius: 0;
}
.placemark-active.cdek {
    background-image: url('/images/delivery/cdek.svg');
}
.placemark-active.dellin {
    background-image: url('/images/delivery/dellin.svg');
}
.placemark-active.pec {
    background-image: url('/images/delivery/pec.svg');
}
.placemark-active.tyres {
    background-image: url('/images/delivery/tyres.svg');
}

@keyframes show-big-placemark {
    0% { transform: rotate(0deg); transform: scale(.1) }
    15% { transform: rotate(-25deg) }
    30% { transform: rotate(20deg) }
    45% { transform: rotate(-15deg)}
    60% { transform: rotate(10deg)  }
    75% { transform: rotate(-5deg)  }
    100% { transform: rotateX(0deg); transform: scale(1)}
}

@keyframes show-small-placemark-cdek {
    0% {
        transform: scale(1);
        background-image: url('/images/delivery/cdek.svg');
        width: 30px;
        height: 40px;
        margin-left: -15px;
        margin-top: -30px
    }
    100% {
        transform: scale(1);
        background-image: url('/images/delivery/cdek.svg');
    }
}

@keyframes show-small-placemark-pec {
    0% {
        transform: scale(1);
        background-image: url('/images/delivery/pec.svg');
        width: 30px;
        height: 40px;
        margin-left: -15px;
        margin-top: -30px
    }
    100% {
        transform: scale(1);
        background-image: url('/images/delivery/pec.svg');
    }
}

@keyframes show-small-placemark-dellin {
    0% {
        transform: scale(1);
        background-image: url('/images/delivery/dellin.svg');
        width: 30px;
        height: 40px;
        margin-left: -15px;
        margin-top: -30px
    }
    100% {
        transform: scale(1);
        background-image: url('/images/delivery/dellin.svg');
    }
}

@keyframes show-small-placemark-tyres {
    0% {
        transform: scale(1);
        background-image: url('/images/delivery/tyres.svg');
        width: 30px;
        height: 40px;
        margin-left: -15px;
        margin-top: -30px
    }
    100% {
        transform: scale(1);
        background-image: url('/images/delivery/tyres.svg');
    }
}

.map-filter-toolbar .form-check-input:checked + label + .placemark {
    border: 1px solid #428ada;
}

.map-filter-toolbar .placemark {
    position: absolute;
    pointer-events: none;
    top: 6px;
    left: 5px;
    width: 28px;
    height: 28px;
    margin-left: 0;
    margin-top: 0;
    z-index: 100;
}

.placemark-sticker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(0, -50%);
    box-shadow: 0 2px 7px rgba(73, 91, 106, 0.5);
    padding: 2px 7px 2px 18px;
    border-radius: 10px;
    font-size: 10px;
    color: #474747;
    background: #ffffff;
    z-index: -1;
}