#museumMap {
  display: block;
  transition: height .7s;
}

.location-map {
  position: relative;
  z-index: 7;
}

.location-map .click-overlay {
  background-color: rgba(102, 89, 190, .50);
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  cursor: pointer;
}

@media (min-width:768px) and (max-width:1023px) {
  .location-map .click-overlay {
    opacity: 1
  }
}

@media (min-width:1024px) {
  .location-map .click-overlay {
    opacity: 0
  }

  .location-map .click-overlay:hover {
    opacity: 1;
    -webkit-animation: fadeIn .7s 0s 1 ease-out forwards;
    animation: fadeIn .7s 0s 1 ease-out forwards
  }
}

.location-map .expand-icon {
  color: #fff;
  width: 100%;
  position: relative;
  top: 40%;
  text-shadow: 0 2px 4px #000
}

.location-map .map-collapse {
  position: relative;
  z-index: 6;
  height: 2rem;
  background-color: #6659BE;
  color: #fff;
  display: none;
  cursor: pointer;
}

.location-map .map-collapse i {
  padding: .5rem 0
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}