.boloMap_map {
  position: relative;
  height: 500px;
}

.modal {
  position: absolute;
  z-index: 999;
  left: 0;
  top: 0%;
  width: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal .modal_content {
  position: relative;
  background-color: #fefefe !important;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 27%;
  animation-name: animatemodal;
  animation-duration: 0.4s;
  word-wrap: break-word !important;
  word-break: break-word !important;
}
.modal .modal_content h4 {
  font-size: 13px;
  font-weight: 600;
  color: #333333;
}
.modal .modal_content .detailCard {
  gap: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}
.modal .modal_content .detailCard .imgCon {
  max-height: 100px;
  max-width: 100px;
}
.modal .modal_content .detailCard .imgCon img {
  width: 100%;
  height: 100%;
}
.modal .modal_content .detailCard .someDetails {
  color: white;
  flex-basis: 170px;
  text-align: center;
}
.modal .modal_content .detailCard .someDetails .upper {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 5px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}
.modal .modal_content .detailCard .someDetails .down {
  margin-top: 1rem;
}
.modal .modal_content .detailCard .someDetails .down .itsButton {
  border: 0;
  border-radius: 5px;
  background-color: var(--red-color);
  color: white;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  padding: 5px 10px;
}
@media only screen and (max-width: 950px) {
  .modal .modal_content {
    width: 41%;
  }
}
@media only screen and (max-width: 550px) {
  .modal .modal_content {
    width: 89%;
  }
}
.modal .close {
  position: absolute;
  color: #fff;
  right: -2%;
  top: -3%;
  font-size: 17px;
  font-weight: bold;
  background-color: var(--red-color);
  border-radius: 50%;
  text-align: center;
  width: 25px;
  height: 25px;
}
.modal .close:hover,
.modal .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
@keyframes animatemodal {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

.modalTwo {
  position: absolute;
  z-index: 999;
  left: 0;
  top: 0%;
  width: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modalTwo .modal_content {
  position: relative;
  background-color: #fefefe !important;
  margin: 4% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
  animation-name: animatemodal;
  animation-duration: 0.4s;
}
.modalTwo .modal_content .imgSetModalContainer img {
  width: 100%;
  height: 100%;
}
.modalTwo .close {
  position: absolute;
  color: black;
  right: 0%;
  top: 1%;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  width: 25px;
  height: 25px;
}
.modalTwo .close:hover,
.modalTwo .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
@keyframes animatemodal {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

.mapContainer {
  width: 100%;
  max-width: 800px;
  height: 500px;
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f4f4f4;
}/*# sourceMappingURL=usaMap.module.css.map */