.container {
  width: 90%;
  max-width: 1245px;
  padding-top: 10px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.left-col {
  flex-basis: 80%;
  text-align: left;
  margin-bottom: 0;
  padding-right: 20px;
  padding-left: 20px;
}

.left-col h2 {
  padding-bottom: 0;
}

.map {
  position: relative;
  width: 100%;
  padding-top: 75%; /* = height ÷ width × 100 */
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pharmacy-photo {
  padding-top: 15px;
  padding-bottom: 10px;
}

.pharmacy-photo ul{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
}

.pharmacy-photo ul li {
  padding-bottom: 0px;
  padding-left: 10px;
  /* margin: 10px; */
}

.pharmacy-photo ul li img {
  width: 300px;
  height: auto;
}

.right-col {
  flex-basis: 20%;
  text-align: center;
  padding-right: 20px;
  padding-left: 20px;
}

.pharmacy-info {
  padding-top: 10px;
  /* background-color: #e8e8e8; */
  padding-bottom: 20px;
}

.pharmacy-info-table {
  background-color: #e8e8e8;
}

table {
  width: 500px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0px 15px;
  font-size: 12px;
}
  
table th,
table td {
  padding: 10px;
}
  
table th {
  background: #a6d4a5;
  vertical-align: middle;
  text-align: left;
  width: 120px;
  overflow: visible;
  position: relative;
  color: #000000;
  font-weight: normal;
  font-size: 15px;
}
  
table th:after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #a6d4a5;
  border-width: 10px;
  margin-top: -10px;
}
  
table td {
  background: #ffffff;
  width: 360px;
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  .pharmacy-photo ul li img {
    width: 245px;
  }
 
  /* table {
    width: 100%;
    border-spacing: 0px 0px;
  }

  table th,
  table td {
    display: block;
    width: 100%;
    padding: 0;
  }

  table th::after {
    display: none;
  } */
}

@media screen and (max-width: 426px) {
  .left-col {
    flex-basis: 100%;
    /* text-align: center; */
    padding: 0;
    margin: 0;
  }

  .pharmacy-photo ul{
    display: block;
  }

  /* .pharmacy-photo ul li {
    padding: 0;
  } */

  .pharmacy-photo ul li img {
    width: 95%;
  }

  .right-col {
    flex-basis: 100%;
  }

  table {
    width: 100%;
    border-spacing: 0px 0px;
  }

  table th,
  table td {
    display: block;
    width: 100%;
    padding: 2px 0;
    padding-left: 10px;
  }

  table th::after {
    display: none;
  }

  .right-col {
    display: none;
  }
}