#details-box {
  box-shadow: 0px 7px 40px rgba(0, 0, 0, 0.7);
  opacity: 0%;
  padding: 1rem;
  border-radius: 8px;
  font-size: 18px;
  position: fixed;
  color: white;
  background-color: #f4a100;
  width: fit-content;
  max-width: 400px;
  transform: translateX(-50%);
  transition: opacity .4s ease;
  z-index: 1;
}

.wisconsin-map path:hover{
  cursor: pointer;
}
.wisconsin-map path:hover{
  opacity: 0.5;
}

.wisconsin-map__content {
  display: flex;
  justify-content: center;
}


.wisconsin-map__map {
  width: 80%;
}

.wisconsin-map__accordion {
  width: 20%;
}

.accordion-item {
  margin-bottom: 10px;
}

.accordion-header {
  background-color: #eee;
  padding: 10px;
  cursor: pointer;
  color: #ffffff;
  border-radius: 6px;
}

.accordion-content {
  padding: 10px;
  display: none;
}

@media(max-width: 992px){
  .wisconsin-map__content {
    display: flex;
  }

  .wisconsin-map__map svg {
    height: auto !important;
  }

}

@media(max-width: 767px){
  .wisconsin-map__content {
    display: flex;
    flex-direction: column-reverse;
  }


  .wisconsin-map__map {
    width: 100%;
  }

  .wisconsin-map__accordion {
    width: 100%;
  }

  .wisconsin-map__map svg {
    height: auto !important;
  }

}

/* Model Start  */
.trigger{
      text-align: center;
    padding: 7px 13px;
    background: #3e3e3e;
    color: #fff;
    font-size: 15px;
    outline: none;
    border: none;
    border-radius: 5px;
    font-family: cursive;
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1rem 1.5rem;
    width: 800px;
    border-radius: 0.5rem;
}
.close-button {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: lightgray;
}
.close-button:hover {
    background-color: darkgray;
}
.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
/* Model End  */