.you-are-here-wrapper {
  position: relative;
  margin: 0 !important;
}

.you-are-here {
  position: absolute;
  background: #3aaa35;
  border: 4px solid #fff;
  height: 50px;
  width: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;

  -webkit-animation: youarehere 2.3s ease-in-out infinite;
  -moz-animation: youarehere 2.3s ease-in-out infinite;
  animation: youarehere 2.3s ease-in-out infinite;

  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

@keyframes youarehere {
  0%   { transform: scale(0.3, 0.3); opacity: 1; }
  50%  { transform: scale(1.1, 1.1); opacity: 1; }
  100% { transform: scale(0.3, 0.3); opacity: 1; }
}
@-moz-keyframes youarehere {
  0%   { transform: scale(0.3, 0.3); opacity: 1; }
  50%  { transform: scale(1.1, 1.1); opacity: 1; }
  100% { transform: scale(0.3, 0.3); opacity: 1; }
}
@-webkit-keyframes youarehere {
  0%   { transform: scale(0.3, 0.3); opacity: 1; }
  50%  { transform: scale(1.1, 1.1); opacity: 1; }
  100% { transform: scale(0.3, 0.3); opacity: 1; }
}
@-ms-keyframes youarehere {
  0%   { transform: scale(0.3, 0.3); opacity: 1; }
  50%  { transform: scale(1.1, 1.1); opacity: 1; }
  100% { transform: scale(0.3, 0.3); opacity: 1; }
}

@media only screen and (max-width: 16cm) and (orientation: portrait),
       only screen and (max-width: 19cm) and (orientation: landscape) {
  #main div.vrtx-introduction-image {
    max-width: 100%;
  }
  #main div.vrtx-introduction-image img,
  #main img.vrtx-introduction-image {
    width: 100% !important;
  }
}
