@charset "utf-8";

#address .flex {
  justify-content: space-between;
  padding-top: 10px;
}
#address .flex div:first-child {
    width: calc(50% - 20px);
    text-align: center;
}
#address .flex div:first-child img {
  margin-bottom: 10px;
  width: 100%;
  background: #fff;
}
#address .flex div:last-child {
  margin-top: 0;
    width: calc(50% - 20px);
}
@media screen and (max-width: 767px) {
  #address .flex {
    flex-direction: column-reverse;
  }
  #address .flex div:first-child,
  #address .flex div:last-child {
    width: 100%;
  }
  #address .flex div:first-child img {
    margin-top: 20px;
  }
}