.map-wrap {
  width: 100%;
  margin: 0 auto;
  background: #dadada;
  min-height: 600px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

@media (min-width: 576px) {
  .map-wrap {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .map-wrap {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .map-wrap {
    max-width: 992px;
    padding-left: 0;
    padding-right: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .map-wrap {
    max-width: 1200px;
  }
}
@media (min-width: 1550px) {
  .map-wrap {
    max-width: 1550px;
  }
}
@media (max-width: 992px) {
  body #map,
  body #accordion {
    width: 100%;
  }
  .map-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
#map {
  height: 600px;
  float: left;
  width: 75%;
  outline: none !important;
}

#accordion {
  width: 25%;
  float: right;
  position: relative;
  z-index: 2;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
  font-family: "GothamBook", sans-serif;
  font-weight: normal;
  color: #111;
}

.accordion-header {
  /*      padding: 10px;*/
  background: #f1f1f1;
  cursor: pointer;
  font-weight: normal;
  position: relative;
  padding: 10px 16px;
  color: #111;
  font-size: 15px;
  user-select: none;
}

.accordion-header.active:after {
  -webkit-transform: rotate(135deg) translate(2px, -2px);
  transform: rotate(135deg) translate(2px, -2px);
}

.accordion-header.active {
  background: #e2e2e2;
  /* Example: change background when active */
}

.accordion-header:after {
  content: "";
  height: 12px;
  width: 12px;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  border-bottom: 1px solid;
  border-left: 1px solid;
  -webkit-transform: rotate(-45deg) translate(2px, -2px);
  transform: rotate(-45deg) translate(2px, -2px);
  position: absolute;
  right: 15px;
  bottom: calc(50% - 5px);
}

.accordion-content {
  overflow: hidden;
  transition: max-height 0.3s ease;
  /* Ensure no fixed max-height is set */
  max-height: 0;
  background: #fff;
}

.accordion-content.show {
  max-height: 500px;
  /* Set a large enough max-height */
  opacity: 1;
  padding: 10px;
  /* Add padding when showing */
}

.accordion-content a {
  display: block;
  padding-top: 3px;
  padding-bottom: 3px;
  cursor: pointer;
  padding-left: 20px;
  font-size: 0.875em;
  color: #111;
  transition: none !important;
  transform: none !important;
}

.accordion-header.active {
  background: #e2e2e2;
  /* Example: change background when active */
}

/*# sourceMappingURL=cg-maps.css.map */
