.info-button:hover {
  background-image: var(--dina-icon-url__dina-info-white);
  background-color: #003e23;
}


.info-button {
  height: 32px;
  width: 32px;
  flex: 0 0 auto;
  background-image: var(--dina-icon-url__dina-info-green);
  background-size: 10px 14px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  appearance: none;
  background-position: center;
  background-color: white;
  border: 2px solid #003e23;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.1s linear;
  outline: none;
  font-size: 0px;
  margin: -0.5rem 0;
}

.info-button:focus {
  outline: 2px solid #003e23;
}

.info-tooltip {
  position: absolute;
  top: calc(100% + 0px);
  left: 56px;
  background-color: #003e23;
  padding: 20px;
  border-radius: 4px;
  width: max-content;
  max-width: 300px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  display: none;
}

.info-tooltip.show {
  display: block;
}

.mini-info-tooltip {
  position: absolute;
  top: calc(100% + 0px);
  left: 56px;
  background-color: #003e23;
  padding: 20px;
  border-radius: 4px;
  width: max-content;
  max-width: 300px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  display: none;
}
.mini-info-tooltip.show {
  display: block;
}