.msa-course-locations{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 12px;
    background-color: #EFEFEF;
    border-radius: 12px;
}

.msa-location-list {
    display: flex;
    flex-direction: column;
    padding-left: 20px ;
    gap: 12px;
    max-height: 336px;
    margin: 0;
    overflow-y: auto;
    scrollbar-width: none;
    cursor: pointer;
}

.msa-location-item {
    width: 100%;
    text-decoration: underline;
    color: #000000;
    padding: 0;

    font-size: 14px;
}

.msa-infowindow {
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 16px;
  font-family: var(--font-primary);
  color: #000;
  line-height: 1.4;
  position: relative;
}

.msa-infowindow .msa-title {
  margin-bottom: 8px;
  font-size: 16px;
}

.msa-direction-link {
  text-decoration: none;
}

.msa-card-direction {
  display: flex;
  gap: 4px;
  align-items: center;
  color: #000;
  justify-content: end;
}

.msa-card-direction img {
  width: 24px;
  height: 24px;
  margin-bottom: 2px;
  margin-left: 2px;
}

.gm-style-iw-chr {
  display: none;
}

@media (max-width: 992px) {
    .msa-location-list {
        max-height: 168px;
    }
}

@media (max-width: 576px) {
    .msa-location-list {
        max-height: 288px;
    }
}