body {
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

html,
body,
#map {
  height: 100vh;
  width: 100vw;
}

#bottom-right-link {
  position: absolute;
  z-index: 1000;
  bottom: 30px;
  right: 30px;
  width: 280px;
  height: 190px;

  font-size: 20px;
  font-weight: bold;
}

.report-question {
  display: flex;
  background-color: #ED5050;
  color: white;
  width: 100%;
  height: 50%;
  align-items: center;
  border-radius: 15px 15px 0 0;
}
.report-question img {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 35px;
}
.report-question p {
  margin: 0 9%;
  text-align: center;
}
.report-button {
  display: flex;
  background-color: white;
  width: 100%;
  height: 50%;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 15px 15px;
  padding: 15px;
  box-sizing: border-box;
}
.report-button a {
  display: flex;
  background-color: #ED5050;
  text-align: center;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  align-items: center;
  justify-content: space-around;
  padding: 10px;
  box-sizing: border-box;

  font-size: 22px;
  color: white;
  text-decoration: none;
}
.report-button img {
  height: 100%;
}



.legend {
  padding: 6px 8px;
  font-size: 14px;
  background: white;
  line-height: 24px;
  color: #555;
}
#no-margin {
  margin: 0px;
}

.mycluster {
  font-size: 16px;
  margin-left: 5px;
  margin-top: 5px;
  text-align: center;
  border-radius: 20px;
  height: 40px;
  line-height: 40px;
}

.red {
  background-color: rgba(255, 100, 100, 1);
}
.blue {
  background-color: rgba(100, 100, 255, 1);
}



/* thanks Kensparby */
.hover-popup {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: -60%;
  right: 0%;
  width: 360px;
  font-size: 15px;
  background-color: #fff;
  color: black;
  border-radius: 8px;
  padding: 1em;
  z-index: 42;
  transform: scale(0);
  transition: transform 200ms ease;
  transform-origin: 90% 100%;
}

.hover-popup::before {
/* This is the triangle/arrow */
  content: '';
  position: absolute;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  bottom: -10px;
  right: 13px;
}

.hover-target:hover + .hover-popup,
.hover-target:focus + .hover-popup,
.hover-popup:hover{
  transform: scale(1);
}