.route-map {
      display: flex;
      gap: 1.5rem;
      height: var( --route-map-height, 450px );
}

.route-map__canvas {
      flex: 1 1 auto;
      min-width: 0;
      height: 100%;
}

.route-map__steps {
      flex: 0 0 320px;
      overflow-y: auto;
      font-size: 0.875rem;
      line-height: 1.5;
}

.route-map__steps table {
      width: 100%;
}

.adp-placemark{
	background-color:#eceadc;
	font-size:1.2em;

}

@media ( max-width: 782px ) {
      .route-map {
              flex-direction: column;
              height: auto;
      }
      .route-map__canvas {
              height: 300px;
      }
      .route-map__steps {
              flex: 1 1 auto;
              max-height: 320px;
      }
}