@media screen and (min-width: 768px) {
  .products-with-map__map {
    position: sticky;
    width: calc(50vw - 2.25rem - 4px) !important;
    top: 164px;
    [data-target="multi-map"] {
      height: calc(100vh - 164px);
    }
  }
  .show-map-mobile,
  .hide-map-mobile {
    display: none;
  }
  .products-with-map__content {
    .toggle-map-image {
      display: none;
    }
  }
}
@media screen and (max-width: 767px) {
  .products-with-map__content {
    .toggle-map-image {
      display: flex;
    }
    .toggle-map-image {
      display: flex;
    } 
  }
  .products-with-map__map {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(100vh - 81px);
    z-index: 99999;
    display: none;
    .hide-map-mobile {
      position: absolute;
      bottom: 34px;
      left: 14px;
    }
  }
  .show-map-mobile {
    display: inline-flex;
  }
  [data-target="multi-map"] {
    height: 100%;
  }
}

.products-with-map__content {
  position: relative;
}

.layout {
  overflow: unset;
  overflow-y: unset;
}
.layout__section {
  overflow: hidden;
}
[data-section="product-archive-with-map"] {
  overflow: unset;
}

.product__modal {
  position: relative;
  display: none;
}

.product__modal .close {
  position: absolute;
  top: -15px;
  right: -15px;
  cursor: pointer;
  color: #fff;
  border: 3px solid #fff;
  background-color: #d12461;
  border-radius: 2rem;
  font-size: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  z-index: 9;
}

.promo-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.promo-modal-content {
  background-color: #fff;
  background-size: cover;
  background-position: center;
  border: 4px solid #d12461;
  padding: 30px;
  border-radius: 10px;
  width: 868px;
  max-width: 90%;
  position: relative;
  animation: fadeIn 0.3s ease;
  min-height: 450px;
  display: flex;
  align-items: center;
}
.promo-modal-body {
  padding: 60px 0;
}

.promo-modal-content h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.promo-modal-content .description {
  margin-bottom: 20px;
}

.promo-modal .close {
  position: absolute;
  top: -20px;
  right: -20px;
  cursor: pointer;
  color: #d12461;
  border: 3px solid #d12461;
  background-color: #fff;
  border-radius: 2rem;
  font-size: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.promo-modal .btn {
  display: inline-flex;
  font-size: 15px;
  padding: 10px 24px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.products__new [data-target="google-map"] {
  width: 100%;
  height: 100%;
}
.products__new .picture__map {
  padding-top: 65%;
  width: 100%;
  position: relative;
}

.products__new .picture__map .google-map {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}


.products__new .picture__data .data__item .data__text {
    color: #118525;
}