.iumap {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto 40px;
  position: relative;
  display: block;
  overflow: visible;
  clear: both;
}
.iumap * {
  box-sizing: border-box;
}
.iumap::before, .iumap::after {
  content: "";
  display: table;
}
.iumap::after {
  clear: both;
}
.iumap__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  position: relative;
  overflow: visible;
}
.iumap__map-card, .iumap__panel {
  background: #fff;
  border: 1px solid #d9e0e7;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  padding: 24px;
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 517px;
  min-height: 517px;
  max-height: 517px;
}
.iumap__map-card {
  flex: 1 1 calc(58% - 12px);
  max-width: calc(58% - 12px);
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.iumap__panel {
  flex: 1 1 calc(42% - 12px);
  max-width: calc(42% - 12px);
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
}
.iumap__svg-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.iumap__svg-wrap svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
}
.iumap__svg-wrap [id] {
  transition: fill 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
  transform-box: fill-box;
  transform-origin: center;
}
.iumap__svg-wrap .is-hovered {
  transform: scale(1.02);
}
.iumap__title {
  margin: 0 0 16px;
  font-size: clamp(28px, 2.7vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #0f4f86;
  font-weight: 700;
  flex: 0 0 auto;
}
.iumap__search-wrap {
  position: relative;
  width: 100%;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.iumap__search {
  width: 100%;
  height: 54px;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 12px 50px 12px 14px;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #0f4f86;
  outline: none;
  box-shadow: none;
  display: block;
}
.iumap__search::-moz-placeholder {
  color: #0f4f86;
  opacity: 1;
}
.iumap__search::placeholder {
  color: #0f4f86;
  opacity: 1;
}
.iumap__search:focus {
  border-color: #d5d5d5;
  box-shadow: none;
}
.iumap__search-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.iumap__search-btn svg,
.iumap__search-btn img {
  width: 22px;
  height: 22px;
  display: block;
}
.iumap__results {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0 4px 0 0;
  scrollbar-width: thin;
  scrollbar-color: #d4dbe3 transparent;
}
.iumap__results::-webkit-scrollbar {
  width: 6px;
}
.iumap__results::-webkit-scrollbar-thumb {
  background: #d4dbe3;
  border-radius: 20px;
}
.iumap__results::-webkit-scrollbar-track {
  background: transparent;
}
.iumap__result-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #d7e4f2;
  background: #f8fbff;
  border-radius: 999px;
  padding: 14px 18px;
  color: #0f4f86;
  transition: all 0.2s ease;
  min-height: 82px;
  position: relative;
  flex: 0 0 auto;
}
.iumap__result-item:hover, .iumap__result-item:focus {
  background: #eef6ff;
  border-color: #9eb8d1;
  color: #0c4370;
  outline: none;
}
.iumap__result-state {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 4px;
  color: #8a0893;
}
.iumap__result-page {
  display: block;
  width: 100%;
  color: #3e6691;
  font-size: 13px;
  line-height: 1.2;
}
.iumap__empty {
  color: #6b7280;
  padding: 10px 2px;
  font-size: 14px;
}
.iumap__tooltip {
  position: fixed;
  z-index: 99999;
  visibility: hidden;
  pointer-events: none;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(2, 6, 23, 0.08);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .iumap__grid {
    flex-direction: column;
    gap: 20px;
  }
  .iumap__map-card, .iumap__panel {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    height: 517px;
    min-height: 517px;
    max-height: 517px;
  }
}
@media (max-width: 767px) {
  .iumap {
    margin-bottom: 32px;
  }
  .iumap__map-card {
    padding: 18px;
    border-radius: 18px;
    height: 276px;
    min-height: 276px;
    max-height: 276px;
  }
  .iumap__panel {
    padding: 18px;
    border-radius: 18px;
    height: 410px;
    min-height: 410px;
    max-height: 410px;
  }
  .iumap__title {
    font-size: 28px;
  }
  .iumap__search {
    height: 50px;
    font-size: 14px;
    padding: 10px 46px 10px 12px;
  }
  .iumap #iumap-search {
    padding: 10px;
  }
  .iumap__results {
    gap: 12px;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .iumap__result-item {
    min-height: 76px;
    padding: 12px 14px;
  }
  .iumap__result-state {
    font-size: 13px;
  }
  .iumap__result-page {
    font-size: 12px;
  }
}
/* Elementor wrapper fixes */
.iumap,
.iumap__grid,
.iumap__map-card,
.iumap__panel {
  overflow: visible !important;
}

.elementor-widget-shortcode,
.elementor-widget-shortcode .elementor-widget-container,
.elementor-shortcode {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  clear: both !important;
}

.elementor-widget-heading,
.elementor-widget-text-editor {
  position: relative;
  z-index: 0;
}
input#iumap-search {
    padding: 10px !important;
}
/*# sourceMappingURL=map.css.map */