@charset "utf-8";
/* CSS Document */
.map {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  filter: invert(1) grayscale(1) brightness(1.2) contrast(1.1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.map:hover {
  filter: invert(0) grayscale(0) brightness(.9);
}
.map .innermap {
  width: 100%; 
}
.map iframe {
  width: 100%;
  height: 700px !important;
  border: solid 1px rgba(210, 210, 208, 0.7)
}
@media (min-width: 992px) and (max-width: 1571px) and (orientation: landscape) {}
@media (max-width: 991px) {
  .map iframe {
    height: 300px !important
  }
}
@media (max-width: 767px) {}