/* ADVANCED MARKER STYLES */
.defaultPin {
  background-color: green;
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  padding: 10px 15px;
  position: relative;
}

.defaultPin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid green;
}

.selectedPin {
  background-color: aqua;
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  padding: 10px 15px;
  position: relative;
}

.selectedPin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid aqua;
}
