.map-block {}

.map-block .shortcode-map {
  /* IMORTANT TO OVERRIDE REQUIRED INLINE ELEMENT STYLE */
  height: 500px !important;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 3px 6px #00000029;
  position: relative;
}

.shortcode-map.loading .marker {
  display: none;
}

.shortcode-map.loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .6);
  display: block;
}

.shortcode-map.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border: 3px solid #0a6fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: mapspin .7s linear infinite;
}

@keyframes mapspin {
  to {
    transform: rotate(360deg);
  }
}