.custom-location-widget {
  position: relative; /* Ensure the location-details are positioned relative to the widget container */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%; /* Ensure the widget container takes full height of the content */
  min-height: 590px;
}

.map-iframe {
  flex: 1;
}

.location-details {
  background-color: #f4f6fa;
  max-width: 400px;
  padding: 40px 50px 50px;
  position: absolute;
  top: 50%;
  right: 6.5%;
  transform: translateY(-50%);
  z-index: 3;
}

.location-details img {
  max-width: 100%;
  height: auto;
  margin-top: 20px; /* Optional: space between text and image */
}
.location-description {
  color: #171b25;
  display: flex;
  /* float: left; */
  font-size: 18px;
  line-height: 1.88em;
  padding-bottom: 15px;
}
.location-description p {
  padding-left: 20px;
  line-height: 2em;
}
.location-details .location-description:before {
  content: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 384 512%22 aria-hidden%3D%22true%22%3E%3Cpath d%3D%22M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z%22%2F%3E%3C%2Fsvg%3E");
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 5px;
}

.location-details .email_icon::before {
  content: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" aria-hidden="true"><g id="envelope3_layer"><path d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></g></svg>');
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 5px;
}
.location-details .email_icon a,
.location-details .phone_icon a {
  color: #171b25;
  display: inline-block;
  font-size: 18px;
  line-height: 1.88em;
  padding-bottom: 15px;
  text-decoration: none;
  padding-left: 15px;
}
.location-details .phone_icon::before {
  content: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" aria-hidden="true"><g id="phone4_layer"><path d="M493.397 24.615l-104-23.997c-11.314-2.611-22.879 3.252-27.456 13.931l-48 111.997a24 24 0 0 0 6.862 28.029l60.617 49.596c-35.973 76.675-98.938 140.508-177.249 177.248l-49.596-60.616a24 24 0 0 0-28.029-6.862l-111.997 48C3.873 366.516-1.994 378.08.618 389.397l23.997 104C27.109 504.204 36.748 512 48 512c256.087 0 464-207.532 464-464 0-11.176-7.714-20.873-18.603-23.385z"></path></g></svg>');
  display: inline-block;
  width: 1em;
  height: 1em;
  transform: rotateZ(98deg);
}
.location-details p {
  margin-bottom: 0;
}

.hucon-stack-parent {
  display: grid;
  grid-template-columns: 1fr;
}

.hucon-stack-child {
   grid-row-start: 1;
   grid-column-start: 1;
}

.privacy-notice {
  z-index: 1;
  max-width: 600px;
  justify-self: right;
  margin-right: calc(8% + 400px);
  text-align: center;
}

.location-map {
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .custom-location-widget {
    /*display: block;*/
	flex-flow: column;
  }
  .location-details {
    position: unset;
    transform: translateY(0);
    background: none;
  }
  .privacy-notice {
  	max-width: unset;
	justify-self: center;
	margin-right: 0;
  }
}

