/*
  POPUP OPENLAYERS
*/
.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 #cccccc;
  bottom: 12px;
  left: -50px;
  min-width: 180px;
  text-align: left;
  font-size: 14px;
}

.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: #cccccc;
  border-width: 11px;
  left: 48px;
  margin-left: -11px;
}


/*AUTOCOMPLETE*/

.autocomplete {
  position: relative !important;
  margin-bottom: 0px !important;
}

/**input**/
.input-search {
  border: 1px solid #cccccc !important;
  background-color: #f7f7f7 !important;
  font-size: 16px !important;
  padding: 10px !important;
  border-radius: 3px !important;
  margin-bottom: 0 !important;
  width: 100%;
}

/**input[type=text]**/
input-text {
  background-color: #f1f1f1;
  width: 100%;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4 !important;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4;
  font-size: 12px;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9 !important;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff !important; 
}

/*Popup buttons style*/
.popupBtn, .popupBtn:focus {
  font-size: 0.8em !important;
  background-color: transparent !important;
  color: blue !important;
  Text-Decoration: None !important;
  outline: none !important;
}

.popupBtn:focus {
  color: #cd2653 !important;
}