
#map {
  width: 100%;
  height: 800px;
}

.map {
  position: relative;
}


#map-filters {
  position: absolute;
  right: 50px;
  top: 30px;
  z-index: 1;
  cursor: pointer;
  background-color: #fff;
  border-radius: 10px;
  color: black;
  font-weight: bold;
  padding: .5em;
  display: flex;
}

#map-filters div {
  margin: 0 10px;
  position: relative;
  padding-left: 20px;
}

@media (min-width: 1024px) { 
  #map-filters #reset-markers-button {
    font-weight: 400;
    text-decoration: underline;
    padding-left: 0;
    margin-right: 50px;
  }
}

@media (max-width: 1024px) {
  #map-filters #reset-markers-button {
    width: 100%;
    padding-left: 0;
  }
}


.map-filters::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: -0px;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
}

.map-filters:hover {
  opacity: 0.7;
}

.map-filters[data-sector="environmental-compliance"]::before {
  background: #3ce664;
}

.map-filters[data-sector="waste-management"]::before {
  background: #5ba9e4;
}

.map-filters[data-sector="supply-chain"]::before {
  background: #e1e600;
}


@media (max-width: 1024px) {
  #map-filters {
    flex-wrap: wrap;
    gap: 1em;
    right: auto;
    left: 0;
    top: 70px;
    width: calc(100% - 50px);
  }

}

/* edit map styles here */
