#details-box {
  box-shadow: 0px 7px 40px rgba(0, 0, 0, 0.7);
  opacity: 0%;
  padding: 1rem;
  border-radius: 8px;
  font-size: 18px;
  position: fixed;
  color: white;
  background-color: #f4a100;
  width: fit-content;
  max-width: 400px;
  transform: translateX(-50%);
  transition: opacity .4s ease;
  z-index: 1;
}

.interactive-map {
  display: flex;
}

.interactive-map__map {
  width: 70%;
}

.interactive-map__events {
  width: 30%;
  overflow-y: auto;
  max-height: 500px;
  
}

.interactive-map__event {
  background: #ffffff;
  box-shadow: 0px 8px 24px rgba(0,0,0,0.1);
  padding: 16px;
  margin: 5px;
}

.interactive-map__event h4,
#details-box h4{
  margin: 0;
  font-size: 16px;
  line-height: 23px;
}

.interactive-map__event h5,
#details-box h5,.interactive-map__event h6,
#details-box h6{
  margin: 0;
  line-height: 23px;
}
.interactive-map__event p,
#details-box p {
  margin: 0;
  font-size: 13px;
  margin-bottom: 10px;
  margin top: 6px;
}

#details-box br {height: 5px;}

.interactive-map__event-date {
  margin: 0;
}

@media(max-width: 992px){
  .interactive-map {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .interactive-map__map {
    width: 100%;
    height: auto;
  }

  .interactive-map__map svg {
    height: 350px;
  }
  
  .interactive-map__events {
    width: 100%;
    overflow-y: none;
    max-height: auto;
  }
}

@media(max-width: 767px){
  #details-box {
    display: none;
  }
}
