.map {
  display: flex;
  align-items: center;
}
.map__block-wrapper {
  flex: 1 0 0;
  position: relative;
  align-self: stretch;
}
.map__block-wrapper--full {
  padding-top: 50%;
}
.map__block-wrapper--full .map__block {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.map__block {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgba(var(--content-bg-color));
}
.map__info {
  padding: 30px;
  text-align: center;
}
.map__title {
  margin-bottom: 15px;
}
.map__store-info {
  margin-bottom: 30px;
}
.map__info .button {
  display: inline-flex !important;
  align-items: center;
}
.map__info .button .btn-icon {
  margin-inline-end: 10px;
  width: 21px;
  height: 21px;
}
.map__info .button .btn-text {
  flex: 1 0 0;
  word-break: break-word;
}
.map__display {
  height: 100%;
}
.map__display .empty-image-class {
  width: 100%;
  background-color: rgba(var(--color-text), 0.1);
}
.map__display .image-position-80\%-0 {
  object-position: 80% 0 !important;
}
.map__display .image-position-20\%-0 {
  object-position: 20% 0 !important;
}
.map__display .image-position-20\%-50\% {
  object-position: 20% 50% !important;
}
.map__display .image-position-80\%-50\% {
  object-position: 80% 50% !important;
}
.map__display .image-position-20\%-100\% {
  object-position: 20% 100% !important;
}
.map__display .image-position-80\%-100\% {
  object-position: 80% 100% !important;
}
.map__display .image-position-center-center {
  object-position: center center !important;
}
.map__display .image-position-top-center {
  object-position: center top !important;
}
.map__display .image-position-bottom-center {
  object-position: center bottom !important;
}
.map__iframe {
  border: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.map__empty-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background-color: rgba(var(--color-text), 0.05);
}
.map__image {
  position: relative;
  width: 100%;
  height: 100%;
}
.map__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 959px) {
  .map {
    display: block;
  }
  .map__block-wrapper--full {
    padding-top: 100%;
  }
  .map__info {
    padding: 40px 20px;
  }
}