.custom-image-marker-wrapper {
    overflow: hidden;
}

.custom-image-marker-imageBox{
    position: relative;
    cursor: move;
    transform: scale(1) translate(0px, 0px);
    margin: 0px;
}

.custom-image-marker-imageBox.no-pan {
    cursor: default;
}

.custom-image-marker-imageBox ._c-generic-pin {
    /* width:100px; */
    object-fit:contain;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    position: absolute !important;
}

.custom-image-marker-imageBox ._c-generic-pin img.pin {
    width: 100%;
    height: auto;
    color: #f00;
    text-shadow: 0px 0px 2px #000;
    cursor: pointer;
    z-index:2;
    opacity: 1;
}

.custom-image-marker-imageBox ._c-generic-pin img.pin.show {
    -webkit-animation-name: fall;
    -moz-animation-name: fall;
    -o-animation-name: fall;
    -ms-animation-name: fall;
    animation-name: fall;
    animation-timing-function: ease-in;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
    -o-animation-duration: 0.3s;
    -ms-animation-duration: 0.3s;
    animation-duration: 0.3s;
}

.custom-image-marker-imageBox ._c-generic-pin *{
    position: absolute;
    transform: translate(-50%, -50%);
}

.custom-image-marker-zoomUi{
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 999;
}

.custom-image-marker-zoomUi > button {
    font-size: 12px;
    display: block;
    padding: 5px;
    min-width: 30px;
}

.custom-image-marker-zoomUi button:focus {
    outline: none;
}

.custom-image-marker-zoomUi button:active {
    box-shadow: 0 1px 0 #dbdbdb;
}

.custom-image-marker-zoomUi > .zoomInBtn{
    margin-left: 0 !important;
}

.custom-image-marker-zoomUi > .zoomOutBtn{
    margin: 20px 0;
}

@-webkit-keyframes fall {
    0%   { opacity:1; transform: translateY(-3000px); }
    70% { opacity:1;  transform: translateY(0); }
    80% { opacity:1; transform: translateY(-50px); }
    100% { opacity:1; transform: translateY(0); }
}

@-moz-keyframes fall {
    0%   { opacity:1; transform: translateY(-3000px); }
    70% { opacity:1;  transform: translateY(0); }
    80% { opacity:1; transform: translateY(-50px); }
    100% { opacity:1; transform: translateY(0); }
}

@-o-keyframes fall {
    0%   { opacity:1; transform: translateY(-3000px); }
    70% { opacity:1;  transform: translateY(0); }
    80% { opacity:1; transform: translateY(-50px); }
    100% { opacity:1; transform: translateY(0); }
}

@keyframes fall {
    0%   { opacity:1; transform: translateY(-3000px); }
    70% { opacity:1;  transform: translateY(0); }
    80% { opacity:1; transform: translateY(-50px); }
    100% { opacity:1; transform: translateY(0); }
}
