.ol-control.ol-select {
  top: .5em;
  left: 3em;
}
.ol-control.ol-select > button:before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: .73em;
  height: .73em;
  background-color: transparent;
  border: .12em solid currentColor;
  border-radius: 100%;
  top: .35em;
  left: .35em;
}
.ol-control.ol-select > button:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  top: 1.1em;
  left: 1em;
  border-width: .08em .23em;
  border-style: solid;
  border-radius: .03em;
  transform: rotate(45deg);
  box-shadow: -0.18em 0 0 -0.03em;
}
.ol-select > div button {
    width: auto;
    padding: 0 .5em;
    float: right;
    font-weight: normal;
}
.ol-select .ol-delete {
    width: 1.5em;
  height: 1em;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.ol-select .ol-delete:before {
  content:'\00d7';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-weight: bold;
}

.ol-control.ol-select > div {
  display: block;
}
.ol-control.ol-select.ol-collapsed > div {
  display: none;
}

.ol-select ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ol-control.ol-select input[type="text"]  {
  width: 8em;
}

.ol-control.ol-select label  {
  display: block;
}

.ol-select .ol-autocomplete {
  display: inline;
}
.ol-select .ol-autocomplete ul {
  position: absolute;
  display: block;
  background: #fff;
  border: 1px solid #999;
  min-width: 10em;
  font-size: .85em;
}
.ol-select .ol-autocomplete ul li {
  padding: 0 .5em;
}
.ol-select .ol-autocomplete ul li:hover {
  color: #fff;
  background: rgba(0,60,136,.5);
}
.ol-select ul.ol-hidden {
  display: none;
}