
body {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #333;
  font-family:'Arimo', sans-serif;
  font-size: 3;  
  
}

#map
{
  background-image: url("images/0A-01.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 900px;
  height: 600px;

  position: absolute;
  top: 40px;
  right: 80px;
}


.measure
{
  display: none;
}

.measure.visible
{
  display: block !important;
}

.imagebox
{
  position:absolute;
  top: 43px;
  left: 60px;

}

.kpivalue
{
  padding-right: 32px;
}

#score-overview
{
  margin-top: 32px;
}


.container {
  width: 1000px;
  max-width: 80%;
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px 2px;
  
  position: fixed;
  bottom: 0px;
  right: 100px;
  opacity: 0.9;
}

.btn-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px;
  margin-top: 20px;
}

.btn {
  background-color: hsl(200, 100%, 50%);
  border: 1px solid hsl(200, 100%, 30%);
  border-radius: 5px;
  padding: 5px 10px;
  color: white;
  outline: none;
  transition: all 0.5s;

}

.btn:hover {
  border-color: black;
  background-color: hsl(199, 29%, 76%);
}

