.popup-label {
    background-color: #fff;
    border: 1px #746b6b solid;
    border-radius: 7px;
    -webkit-box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.75);
    box-shadow: 4px 4px 5px 0px rgba(50, 50, 50, 0.75);
    color: #111;
    font: 12px/20px "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding: 3px 6px;
    position: absolute;
    white-space: nowrap;
    top: -35px;
    left: 20px;
    display: none;
}

    .popup-label img {
        vertical-align: middle;
    }

    .popup-label.marker:before {
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        content: "";
        border-right: 6px solid black;
        border-right-color: inherit;
        position: absolute;
        left: -8px;
        top: 5px;
    }

.angular-openlayers-map:-moz-full-screen {
    height: 100%;
}

.angular-openlayers-map:-webkit-full-screen {
    height: 100%;
}

.angular-openlayers-map:full-screen {
    height: 100%;
}

.angular-openlayers-map:not(-moz-full-screen) {
    height: 400px;
}

.angular-openlayers-map:not(-webkit-full-screen) {
    height: 400px;
}

.angular-openlayers-map:not(full-screen) {
    height: 400px;
}

.ol-touch .ol-full-screen {
    position: absolute;
    top: 5.5em;
    left: .5em;
    right:unset;
}
.ol-full-screen {
    position: absolute;
    top: 5em;
    left: .5em;
    right:unset;
}

.ol-control-top-right {
    position: absolute;
    right: .5rem;
    top: .5rem;
}

.ol-touch .ol-drawing-control {
    position: absolute;
    top: 8.5em;
    left: .5em;
}

.ol-drawing-control {
    position: absolute;
    top: 7.5em;
    left: .5em;
}

.ol-control {
    box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
    padding:unset;
}

.ol-control button {
    background-color:#fff;
    color:#676767;
    font-size: 1.34em;
    border-radius:unset;
}

.ol-control button:last-child {
    border-bottom-left-radius:2px;
     border-bottom-right-radius:2px;
}

.ol-control button:first-child {
    border-top-left-radius:2px;
     border-top-right-radius:2px;
}

.ol-control button:focus, .ol-control button:hover {
    text-decoration: none;
    background-color: rgba(250,250,250,0.91);
}

.ol-control button:active {
    outline: none;
    border: none;
}

.ol-tooltip-measure {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    color: white;
    padding: 4px 8px;
    opacity: 0.7;
    white-space: nowrap;
}
.ol-tooltip-measure-content {
    opacity: 1;
    font-weight: bold;
}
.ol-tooltip-measure-static {
    background-color: #ffcc33;
    color: black;
    border: 1px solid white;
}
.ol-tooltip-measure-content:before,
.ol-tooltip-measure-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%;
}
.ol-tooltip-measure-static:before {
    
}  

.pulsate {
  border: 10px solid red;
  background: tranparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  height: 50px;
  width: 50px;
  -webkit-animation: pulse 1s ease-out;
  -moz-animation: pulse 1s ease-out;
  animation: pulse 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  position: absolute;
  top: -25px;
  left: -25px;
  z-index: 1;
  opacity: 0;
}

@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(0);
    opacity: 0.0;
  }
  25% {
    -moz-transform: scale(0);
    opacity: 0.1;
  }
  50% {
    -moz-transform: scale(0.1);
    opacity: 0.3;
  }
  75% {
    -moz-transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    -moz-transform: scale(1);
    opacity: 0.0;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
  }
  25% {
    -webkit-transform: scale(0);
    opacity: 0.1;
  }
  50% {
    -webkit-transform: scale(0.1);
    opacity: 0.3;
  }
  75% {
    -webkit-transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0.0;
  }
}