.overViewMapPlus {
    position: absolute;
    right: 10px;
    top: 140px;
    width: 260px;
    height: 260px;
    border: 1px solid #079dfa70;
    border-radius: 6px;
    background-color: #182653dc;
}

.ol-overviewmap-box {
    border: 2px dotted rgb(255, 0, 0);
}

.ol-popup {
    position: absolute;
    background-color: white;
    -webkit-filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.5);
    bottom: 12px;
    left: -50px;
}

.ol-popup:after,
.ol-popup:before {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.ol-popup:after {
    border-top-color: white;
    border-width: 10px;
    left: 48px;
    margin-left: -10px;
}

.ol-popup:before {
    border-top-color: rgba(255, 0, 0, 0.5);
    border-width: 11px;
    left: 48px;
    margin-left: -11px;
}

.ol-popup-closer {
    text-decoration: none;
    position: absolute;
    top: 2px;
    right: 8px;
    color: rgba(0, 0, 0, 0.7);
}

.ol-popup-closer:hover {
    color: red;
    cursor: pointer;
}

.ol-popup-closer:after {
    content: "x";
}

.animationDiv {
    position: relative;
    z-index: 999;
    top: 0;
    height: 50px;
    width: 50px;
    border-radius: 25px;
    background: rgba(255, 0, 0, 0.9);
    transform: scale(0);
    animation: myfirst 1.5s;
    animation-iteration-count: infinite;
}

@keyframes myfirst {
    to {
        transform: scale(2);
        background: rgba(0, 0, 0, 0);
    }
}

.tooltip {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    color: white;
    padding: 4px 8px;
    opacity: 0.7;
    white-space: nowrap;
}

.tooltip-measure {
    opacity: 1;
    font-weight: bold;
}

.tooltip-static {
    background-color: #ffcc33;
    color: black;
    border: 1px solid white;
}

.tooltip-measure:before,
.tooltip-static:before {
    border-top: 6px solid rgba(0, 0, 0, 0.5);
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    content: "";
    position: absolute;
    bottom: -6px;
    margin-left: -7px;
    left: 50%;
}

.tooltip-static:before {
    border-top-color: #ffcc33;
}