#mapFrame.simsar-google-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
  border-radius: inherit;
  background: #e9eef2;
  overflow: hidden;
}

.simsar-google-price-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 34px;
  padding: 0 11px;
  border: 3px solid #fff;
  border-radius: 20px;
  background: #0d5f82;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow:
    0 7px 20px
    rgba(16, 24, 40, .28);
  cursor: pointer;
  transition:
    transform .15s ease,
    background .15s ease;
}

.simsar-google-price-marker.rent {
  background: #e86f2d;
}

.simsar-google-price-marker.selected {
  background: #101828;
  transform: scale(1.12);
  z-index: 100;
}

.simsar-google-price-marker:hover {
  transform: scale(1.08);
}

.simsar-google-popup {
  width: 245px;
  padding: 2px;
}

.simsar-google-popup img {
  display: block;
  width: 100%;
  height: 130px;
  margin-bottom: 10px;
  border-radius: 11px;
  object-fit: cover;
}

.simsar-google-popup h3 {
  margin: 0 0 6px;
  color: #172b3a;
  font-size: 15px;
  line-height: 1.35;
}

.simsar-google-popup p {
  margin: 0 0 6px;
  color: #667085;
  font-size: 12px;
}

.simsar-google-popup strong {
  display: block;
  margin: 8px 0;
  color: #0d5f82;
  font-size: 14px;
}

.simsar-google-popup-actions {
  display: flex;
  gap: 7px;
}

.simsar-google-popup-actions button {
  flex: 1;
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.simsar-google-popup-actions button:first-child {
  background: #0d5f82;
  color: #fff;
}

.simsar-google-popup-actions button:last-child {
  background: #eef3f6;
  color: #172b3a;
}

.map-list-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.simsar-coordinate-status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-top: 6px;
  padding: 0 8px;
  border-radius: 20px;
  background: #e7f6ed;
  color: #067647;
  font-size: 9px;
  font-weight: 800;
}

.simsar-coordinate-status.missing {
  background: #fff1e8;
  color: #b54708;
}

.simsar-google-empty,
.simsar-google-map-error {
  display: flex;
  min-height: 260px;
  padding: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.simsar-google-map-error {
  min-height: 620px;
}

.simsar-google-empty h3,
.simsar-google-map-error h3 {
  margin: 0 0 7px;
}

.simsar-google-empty p,
.simsar-google-map-error p {
  margin: 0;
  color: #667085;
}

@media (max-width: 900px) {
  #mapFrame.simsar-google-map {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  #mapFrame.simsar-google-map {
    min-height: 440px;
  }

  .simsar-google-price-marker {
    min-width: 58px;
    min-height: 30px;
    padding: 0 8px;
    font-size: 9px;
  }
}

/* SIMSAR_GOOGLE_MAP_V16 */
.simsar-v16-map-loading{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:10px;
  min-height:420px;
  color:#526075;
  background:
    radial-gradient(circle at 50% 40%,rgba(255,255,255,.8),rgba(239,244,248,.94));
  font-size:13px;
  font-weight:800;
}
.simsar-v16-map-spinner{
  width:28px;
  height:28px;
  border:3px solid rgba(218,50,35,.16);
  border-top-color:#da3223;
  border-radius:50%;
  animation:simsarV16Spin .75s linear infinite;
}
@keyframes simsarV16Spin{to{transform:rotate(360deg)}}
