/* Config */
/* Color */
/* Style */
/* Font */
/* Elements */
#body-container .element-map-standard,
#body-container .element-map-advanced,
#body-container .element-map-itinerary {
  position: relative;
  height: 100%;
  border-radius: inherit;
}
#body-container .element-map-standard .map-container,
#body-container .element-map-advanced .map-container,
#body-container .element-map-itinerary .map-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: inherit;
}
#body-container .element-map-standard .map-container.with-itinerary-textual-directions,
#body-container .element-map-advanced .map-container.with-itinerary-textual-directions,
#body-container .element-map-itinerary .map-container.with-itinerary-textual-directions {
  height: 400px;
}
#body-container .element-map-standard .map-textual-directions,
#body-container .element-map-advanced .map-textual-directions,
#body-container .element-map-itinerary .map-textual-directions {
  position: absolute;
  top: 400px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
}
#body-container .element-map-standard .map-textual-directions table.adp-directions,
#body-container .element-map-advanced .map-textual-directions table.adp-directions,
#body-container .element-map-itinerary .map-textual-directions table.adp-directions {
  width: 100%;
}
#body-container .element-map-standard .enlarge-map,
#body-container .element-map-advanced .enlarge-map,
#body-container .element-map-itinerary .enlarge-map {
  position: absolute;
  z-index: 1;
  height: 40px;
  width: 40px;
  bottom: 6px;
  left: 6px;
  border-radius: 50%;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5), 3px 3px 3px rgba(0, 0, 0, 0.25);
}
#body-container .element-map-standard .enlarge-map > a,
#body-container .element-map-advanced .enlarge-map > a,
#body-container .element-map-itinerary .enlarge-map > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marker-info-window {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 250px;
}
.marker-info-window .marker-info-window-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.marker-info-window .marker-info-window-header .marker-info-window-title {
  margin-bottom: 0 !important;
}
.marker-info-window .marker-info-window-header .marker-info-window-close {
  margin-top: 6px;
  border: none;
  background-color: #fff;
}
.marker-info-window .marker-info-window-header .marker-info-window-close svg {
  width: 20px;
  height: 20px;
}
.marker-info-window .marker-info-window-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.marker-info-window .marker-info-window-content a.marker-info-window-content-item {
  text-decoration: none;
}
.marker-info-window .marker-info-window-content a.marker-info-window-content-item:hover {
  text-decoration: underline;
}
.marker-info-window .marker-info-window-content .marker-info-window-content-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
}
.marker-info-window .marker-info-window-content .marker-info-window-content-item svg {
  margin-top: 2px;
}
.marker-info-window .marker-info-window-content .marker-info-window-content-item p {
  margin-bottom: 0 !important;
}
.marker-info-window .marker-info-window-links {
  display: flex;
  gap: 5px;
}
