@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat";
  color: #444;
}

.ig_wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 100vw;
  color: #444;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.ig_container {
  flex-direction: row;
  justify-content: center;
  position: relative;
}

.ig_container .mobil {
  max-width: 583.53px;
  max-height: 889.85px;
  width: 100%;
  height: auto;
  display: none;
}

.ig_container .desktop {
  max-width: 1042px;
  max-height: 735.5px;
  width: 75%;
  height: auto;
  display: flex;
}



.ig_container svg g path {
  transition: fill 0.3s ease, stroke 0.3s ease;
  cursor: pointer;
}

.ig_container .cls-1 {
  fill: #f59b00;
}

.ig_container .cls-2 {
  fill: #e53009;
}

.ig_container .cls-3 {
  fill: #37aa32;
}

.ig_container .cls-4 {
  stroke-width: 1.24px;
}

.ig_container .cls-4,
.ig_container .cls-5,
.ig_container .cls-6 {
  stroke: #fff;
}

.ig_container .cls-4,
.ig_container .cls-5,
.ig_container .cls-6,
.ig_container .cls-7 {
  fill: none;
  stroke-miterlimit: 10;
}

.ig_container .cls-5 {
  stroke-width: 1.19px;
}

.ig_container .cls-8 {
  fill: #fff;
}

.ig_container .cls-6 {
  stroke-width: 0.25px;
}

.ig_container .cls-7 {
  stroke: #e53009;
  stroke-width: 1.5px;
}

.ig_container .cls-9 {
  fill: #feecd3;
}

.ig_container .cls-10 {
  fill: #6e6e6e;
}

.ig_container .cls-11 {
  fill: #fbd3be;
}

.ig_container .ig_infobox {
  width: 25%;
  padding: 10px;
  hyphens: manual;
  background-color: #ccc;
  overflow-y: auto;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transition: transform 0.3s ease-in-out;
  z-index: 100;
}

.ig_container .ig_infobox p {
  white-space: pre-line;
  margin-bottom: 10px;
}

.ig_container h3 {
  margin-bottom: 10px;
  color: #38aa32;
  font-weight: 900;
}

.ig_container .ig_close-button {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 5px;
  border: 1px solid #444;
  background-color: #ccc;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: border-color 0.3s ease;
  padding: 0;
}

.ig_container .ig_infobox .ig_close-button {
  top: 10px;
  right: 10px;
}

.ig_container .legend-container .ig_close-button {
  top: 10px;
  left: 195px;
  z-index: 200;
}

.ig_container .ig_close-button svg path {
  fill: #444;
  transition: fill 0.3s ease;
}

.ig_container .ig_close-button:hover {
  border-color: #38aa32;
}

.ig_container .ig_close-button:hover svg path {
  fill: #38aa32;
}

.ig_container .ig_infobox-label {
  position: absolute;
  width: 60px;
  text-align: center;
  font-size: 12px;
  background-color: #ccc;
  color: #444;
  border: 1px solid #444;
  cursor: pointer;
  z-index: 0;
  transition: border-color 0.3s ease, color 0.3s ease;
  right: 26px;
  top: 8px;
  transform-origin: top right;
  transform: rotate(-90deg);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-color: #ccc;
}

.ig_container .ig_infobox-label:hover,
.ig_container .legend-label:hover {
  color: #38aa32;
  border-color: #38aa32;
}
@media (max-width: 768px) {
  .ig_container .ig_infobox {
    width: 45%;
    transform: translateX(100%);
  }

  .ig_container .desktop {
    display: none;
  }

  .ig_container .mobil {
    display: flex;
  }
}