.map.block {
  display: flex;
}

.map.block .map-container {
  width: 100%;
  position: relative;
  float: left;
  box-sizing: border-box;
}

.map.block .map-animated-preview {
  cursor: pointer;
  position: relative;
  margin: 0;
}

@media (min-width: 768px) {
  .map.block .map-animated-preview {
    border: 3px solid #fff;
    outline: #d1d3d6 solid 1px;
  }
}

@media (max-width: 767.98px) {
  .map.block .map-animated-preview {
    border-bottom: 3px solid #fff;
    border-top: 3px solid #fff;
  }
}

.map.block .map-animated-preview__pin {
  pointer-events: none;
  position: absolute;
  top: -24px;
  width: 100%;
  text-align: center;
  line-height: 1.44;
}

@media (min-width: 768px) {
  .map.block .map-animated-preview__pin {
    top: 50%;
    transform: translateY(-50%);
  }
}

.map.block .map-pin {
  position: relative;
  background-color: #fdb900;
  border-radius: 5px;
  border: 2px solid #f48d00;
  font-size: 1.375rem;
  display: inline-block;
  padding: 0.54545em 0.72727em;
  color: #203240;
  font-weight: 900;
  font-style: italic;
}

@media (min-width: 768px) and (max-width: 909px) {
  .map.block .map-pin {
    font-size: 0.875rem;
  }
}

.map.block .map-pin::after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: ' ';
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #f48d00;
  border-width: 10px;
  margin-left: -10px;
}

.map.block .map-animated-preview__img-wrap {
  pointer-events: none;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .map.block .map-animated-preview__img-wrap {
    max-height: 65px;
  }
}

.map.block picture img {
  pointer-events: none;
  display: block;
  width: 100%;
  max-height: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border: 0;
  overflow: clip;
  overflow-clip-margin: content-box;
}