.subdomain-map-info__wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.subdomain-map-info__item {
  border-radius: 10px;
  overflow: hidden;
}
.subdomain-map-info__item:nth-child(2) {
  background-color: #eff6f9;
}
.subdomain-map-info__item_map {
  position: relative;
}
.subdomain-map-info__item_map iframe {
  height: 100%;
}
.subdomain-map-info__content-wrapper {
  padding: 30px;
}
.subdomain-map-info__description {
  font-size: 14px;
  line-height: 22px;
}

.map-over {
  right: 40px;
  bottom: 40px;
  position: absolute;
  width: 286px;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
}
.map-over__item {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(36, 36, 36, 0.1019607843);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.map-over__item:last-child {
  border: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.map-over__item-title {
  display: flex;
  gap: 10px;
  grid-column: span 2/span 2;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  align-items: center;
}
.map-over__item-icon {
  width: 24px;
  height: 24px;
  background-image: url(../img/blocks/subdomain-map-info/check.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
.map-over__item-value {
  font-size: 24px;
  font-weight: 800;
  line-height: 36px;
  color: #3aad81;
}
.map-over__item-value_red {
  color: #ff4444;
}
@media (max-width: 1024px) {
  .subdomain-map-info__wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .subdomain-map-info__item_map iframe {
    height: 300px;
  }
}
