.image__map_container {
  position: relative;
  text-align: center;
}

.image__map_container area:active,
.image__map_container area:focus,
.image__map_container area:hover,
.image__map_container area:link {
  border: 0px red solid;
}

.image__map_container area {
  outline-color: transparent;
}

.image__map_container .image__popup_images img {
  max-width: 300px;
  width: 100%;
}

.image__map_container #image__map_popup {
  top: 2%;
  background: #e3d0ae;
  color: #000;
  font-weight: normal;
  opacity: 1;
  font-size: 16px;
  padding: var(--space-l) var(--space-m);
  display: none;
  max-width: 380px;
  width: 380px;
  text-align: center;
  position: absolute;
  left: 80%;
  transform: translateX(-50%);
  font-family: "Crimson Pro";
}

.image__map_container div#image__map_popup div span {
  font-family: "Crimson Pro"; 
}

.image__map_container .image__popup_cost span,
.image__map_container .image__popup_title span,
.image__map_container .image__popup_procedure span {
  font-weight: bold;
}

.image__map_container .image__popup_title {
  font-weight: bold;
  text-transform: capitalize;
  font-size: 22px;
}

.image__map_container .image__popup_desciption span,
.image__map_container .image__popup_recover {
  font-size: 16px;
}

.image__map_container .image__popup_recover span {
  font-weight: normal;
}

.image__map_container div#image__map_popup div#image__popup_close {
  text-align: right;
  font-size: 14px;
  cursor: pointer;
  color: #000;
  font-weight: 300;
  margin-top: 0px;
  margin-bottom: 5px;
  position: absolute;
  right: 10px;
  top: 10px;
  font-family: "Crimson Pro"!important;
}

.image__map_container .image__popup_button {
  text-align: center;
  margin: 20px 0px;
}

.image__map_container .image__popup_cost,
.image__map_container .image__popup_procedure,
.image__map_container .image__popup_recover,
.image__map_container .image__popup_result {
  font-weight: bold;
}

.image__map_container .image__popup_button a {
  text-align: center;
  background: black;
  text-transform: uppercase;
  color: #fff;
  padding: var(--space-xs) var(--space-xl);
  font-size: var(--text-m);
  font-family: "Instrument Sans";
  letter-spacing: 1px;
  text-decoration:none!important;
   line-height: 1.5;
  transition: 0.3s;
  box-shadow: 0 5px 23px 5px var(--black-trans-10);
  border-radius: 8px;
}

.image__map_container .image__popup_button a:hover {
  background-color: var(--white);
  color: var(--black);
}

.image__map_container area {
  cursor: pointer;
}

.image__map_container #pulsating-circle:after {
  display: flex;
  background: rgb(3 38 252 / 61%);
  border-radius: 50%;
  height: 20px;
  width: 20px;
  animation: pulsate 2.5s ease-out;
  animation-iteration-count: infinite;
  opacity: 0;
  content: "";
  margin: auto;
  position: absolute;
  top: -112px;
  left: -137px;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

@keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

@media all and (max-width: 1100px) {
  .image__map_container #image__map_popup {
    top: 5%;
    left: 50%;
  }
}

.image__popup_title {
  font-size: var(--h3) !important;
  margin-bottom: var(--space-s) !important;
}


.image__popup_cost,
.image__popup_procedure,
.image__popup_recover,
.image__popup_cost span,
.image__popup_procedure span,
.image__popup_recover span {
  font-size: var(--text-l) !important;
}

.image__popup_cost,
.image__popup_procedure,
.image__popup_recover {
    margin-bottom: 5px !important;
}

.image__popup_recover {
    margin-bottom: var(--space-s) !important;
}

.image__popup_title,
.image__popup_cost,
.image__popup_procedure,
.image__popup_recover,
.image__popup_title span,
.image__popup_cost span,
.image__popup_procedure span,
.image__popup_recover span {
  font-family: "Crimson Pro" !important;
  text-align: center;
  line-height: 1 !important;
  font-weight: 400 !important;
}

.image__popup_desciption,
.image__popup_desciption span {
    text-align: left;
    font-size: 18px;
}

.image__popup_result,
.image__popup_result span {
    text-align: left;
    font-size: var(--text-m);
    font-family: "Instrument Sans"!important;
    font-weight: 500 !important;
     line-height: 1.5;
     margin-top: 10px;
}

.image__popup_result {
    margin-bottom: var(--space-xs);
}
@media all and (max-width: 1100px) {
.image__map_container #image__map_popup {
  max-width: 300px;
  width: 300px;
}
}