.article.google-map-users {
  padding: 15px;
  width: 100%;
}
.article.google-map-users .gm-style .gm-style-iw-d {
  overflow: auto;
  max-width: 100%;
}
.article.google-map-users .google-map-canvas {
  position: relative;
  width: 100%;
  height: 575px;
}
.article.google-map-users .google-map-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(11, 19, 30, 0.42), rgba(11, 19, 30, 0.52)), rgba(11, 19, 30, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--shortTransition);
}
.article.google-map-users .google-map-search {
  width: min(100%, 320px);
  margin: 0;
}
.article.google-map-users .google-map-search.google-map-search-control {
  position: absolute;
  top: 12px;
  left: 12px;
  box-sizing: border-box;
  z-index: 4;
  display: flex;
  flex-direction: column;
  padding: 4px 8px;
  border: 1px solid rgba(60, 64, 67, 0.16);
  border-radius: 28px;
  background-color: var(--defaultWhite);
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.16), 0 2px 6px rgba(60, 64, 67, 0.2);
  overflow: hidden;
  transition: border-color var(--shortTransition), box-shadow var(--shortTransition);
}
.article.google-map-users .google-map-search.google-map-search-control:focus-within {
  border-color: #1a73e8;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.2), 0 4px 10px rgba(60, 64, 67, 0.24), 0 0 0 1px #1a73e8;
}
.article.google-map-users .google-map-search .google-map-search-shell {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
  min-height: 52px;
}
.article.google-map-users .google-map-search .google-map-search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 40px;
  padding: 0 8px 0 16px;
  border: 0;
  background-color: transparent;
  color: var(--defaultTextColor);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.article.google-map-users .google-map-search .google-map-search-input::placeholder {
  color: rgba(60, 64, 67, 0.72);
}
.article.google-map-users .google-map-search .google-map-search-input:focus {
  outline: 0;
}
.article.google-map-users .google-map-search .google-map-search-action {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: transparent;
  color: #5f6368;
  cursor: pointer;
  transition: background-color var(--shortTransition), color var(--shortTransition), box-shadow var(--shortTransition);
}
.article.google-map-users .google-map-search .google-map-search-action::before, .article.google-map-users .google-map-search .google-map-search-action::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  transform-origin: center;
}
.article.google-map-users .google-map-search .google-map-search-action.is-search::before {
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-9px, -9px);
}
.article.google-map-users .google-map-search .google-map-search-action.is-search::after {
  width: 9px;
  height: 2px;
  background-color: currentColor;
  border-radius: 999px;
  transform: translate(2px, 4px) rotate(45deg);
}
.article.google-map-users .google-map-search .google-map-search-action.is-reset::before, .article.google-map-users .google-map-search .google-map-search-action.is-reset::after {
  width: 16px;
  height: 2px;
  background-color: currentColor;
  border-radius: 999px;
}
.article.google-map-users .google-map-search .google-map-search-action.is-reset::before {
  transform: translate(-8px, -1px) rotate(45deg);
}
.article.google-map-users .google-map-search .google-map-search-action.is-reset::after {
  transform: translate(-8px, -1px) rotate(-45deg);
}
.article.google-map-users .google-map-search .google-map-search-action:hover {
  background-color: rgba(60, 64, 67, 0.08);
}
.article.google-map-users .google-map-search .google-map-search-action:focus-visible {
  outline: 0;
  color: #174ea6;
  background-color: rgba(26, 115, 232, 0.16);
  box-shadow: 0 0 0 2px var(--defaultWhite), 0 0 0 4px #1a73e8;
}
.article.google-map-users .google-map-search .google-map-search-message {
  display: none;
  margin: 0;
  padding: 0 16px 10px;
  font-size: 14px;
  line-height: 1.4;
}
.article.google-map-users .google-map-search .google-map-search-message:empty {
  display: none;
}
.article.google-map-users .google-map-search .google-map-search-message:not(:empty) {
  display: block;
}
.article.google-map-users .google-map-search .google-map-search-message.is-error {
  color: #b3261e;
}
.article.google-map-users .google-map-search .google-map-search-message.is-info {
  color: var(--defaultTextColor);
}
@media (max-width: 767px) {
  .article.google-map-users .google-map-search {
    width: min(100% - 24px, 100vw - 54px);
  }
  .article.google-map-users .google-map-search.google-map-search-control {
    padding: 4px 6px 6px;
  }
  .article.google-map-users .google-map-search .google-map-search-shell {
    min-height: 48px;
  }
  .article.google-map-users .google-map-search .google-map-search-input {
    padding-left: 14px;
  }
  .article.google-map-users .google-map-search .google-map-search-action {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }
  .article.google-map-users .google-map-search .google-map-search-message {
    padding: 0 14px 8px;
  }
}
.article.google-map-users .google-map[data-full-site-width="1"] {
  margin-left: 50%;
  width: 100vw;
  transform: translate3d(-50%, 0, 0);
}
.article.google-map-users.has-search-first-mode.is-search-idle-hidden .google-map-canvas::after {
  opacity: 1;
}
.article.google-map-users.has-search-first-mode.is-search-idle-hidden .google-map-search.google-map-search-control {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100% - 32px, 460px);
  margin: 0;
  transform: translate(-50%, -50%);
}
.article.google-map-users.has-search-first-mode.is-search-idle-hidden .user-list {
  display: none;
}
.article.google-map-users.has-search-first-mode.is-search-results .google-map-search.google-map-search-control {
  top: 12px;
  left: 12px;
  right: 12px;
  width: auto;
  max-width: 320px;
  margin: 0;
  transform: none;
}
.article.google-map-users .google-map-canvas .cart {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.article.google-map-users .google-map-canvas .cart .gm-style-cc {
  display: none;
}
.article.google-map-users .google-map-canvas .cart img[src="http://maps.gstatic.com/mapfiles/api-3/images/google_white2.png"], .article.google-map-users .google-map-canvas .cart img[src="http://maps.gstatic.com/mapfiles/api-3/images/google_white2_hdpi.png"], .article.google-map-users .google-map-canvas .cart img[src="http://maps.gstatic.com/mapfiles/api-3/images/google_white5.png"], .article.google-map-users .google-map-canvas .cart img[src="http://maps.gstatic.com/mapfiles/api-3/images/google_white5_hdpi.png"] {
  display: none;
}
@media (max-width: 767px) {
  .article.google-map-users.has-search-first-mode.is-search-idle-hidden .google-map-search.google-map-search-control {
    left: 10px;
    right: 10px;
    width: auto;
    transform: translateY(-50%);
  }
}
.row.full-site-width .article.google-map-users .article.google-map-users .user-list {
  max-width: 1500px;
  margin: 0 auto;
  float: none;
}
.article.google-map-users .user-list {
  margin-top: 50px;
}
.article.google-map-users .user-list .user-info {
  margin-bottom: 20px;
}
.article.google-map-users .user-list .user-info.is-hidden {
  display: none;
}
.article.google-map-users .user-list .user-info .left {
  float: left;
  width: 100px;
  height: 100px;
  display: table;
}
.article.google-map-users .user-list .user-info .left > .photo {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  color: var(--defaultBorderColor);
  font-size: var(--smallerFontSize);
}
.article.google-map-users .user-list .user-info .left > .photo > div {
  display: none;
}
.article.google-map-users .user-list .user-info .left > .photo > img {
  display: block;
}
.article.google-map-users .user-list .user-info .right {
  float: left;
  width: 65%;
  padding-left: 20px;
}
.article.google-map-users .user-list .user-info .right > .info-row {
  display: block;
  line-height: 1.5em;
}
.article.google-map-users .user-list .user-info .right > .info-row.company {
  font-weight: 600;
}
.article.google-map-users .info-window-content > .left,
.article.google-map-users .info-window-content > .right {
  width: 100%;
  display: table;
}
.article.google-map-users .info-window-content > .left > .title {
  padding: 15px 10px 5px 10px;
  color: #565656;
  font-size: var(--smallerFontSize);
  font-weight: bold;
}
.article.google-map-users .info-window-content > .left > .title:not(.maps) {
  display: none;
}
.article.google-map-users .info-window-content > .left > a {
  padding-left: 10px;
}
.article.google-map-users .info-window-content > .left > a::after {
  top: 3px;
}
.article.google-map-users .info-window-content > .left > .photo {
  min-height: 150px;
  height: 150px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
}
.article.google-map-users .info-window-content > .left > .photo > div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  text-align: left;
  background-image: url("/site/media/images/bg-gradiant.png");
  background-position: 100% 10%;
  background-repeat: repeat-x;
}
.article.google-map-users .info-window-content > .left > .photo > div > div {
  position: absolute;
  bottom: 0;
  padding: 15px;
}
.article.google-map-users .info-window-content > .left > .photo > div > div > .title {
  color: var(--defaultWhite);
  font-weight: 400;
  font-size: var(--biggerFontSize);
}
.article.google-map-users .info-window-content > .left > .photo > div > div > .sub-title {
  color: var(--defaultWhite);
  font-size: var(--smallerFontSize);
}
.article.google-map-users .info-window-content > .overlay-popup {
  display: none;
}
.article.google-map-users .info-window-content > .right {
  padding: 15px;
}
.article.google-map-users .info-window-content > .right > .info-row {
  font-size: var(--smallerFontSize);
  line-height: 18px;
}
.article.google-map-users .info-window-content > .right > .info-row.phone {
  padding-top: 10px;
}
.article.google-map-users .info-window-content > .right > .info-row.text {
  display: block;
  float: none;
  width: 100%;
}
.article.google-map-users .info-window-content > .right > .info-row.text a {
  border-radius: 50px;
  padding: 10px;
  display: block;
  width: 100%;
  color: var(--defaultWhite);
  background-color: #2c0f3d;
  transition: background-color var(--shortTransition);
  text-align: center;
}
.article.google-map-users .info-window-content > .right > .info-row.text a:hover {
  background-color: #451a5e;
}
.article.google-map-users .info-window-content > .right > .image-right {
  padding-left: 10px;
  text-align: right;
}
.article.google-map-users .info-window-content > .right > .aanmelden {
  display: none;
}
.article.google-map-users .info-window-content > .right > .aanmelden.maps {
  display: block;
  margin-bottom: 10px;
}
.article.google-map-users .custom-iw .gm-style-iw {
  width: 100%;
  max-width: 100%;
}
.article.google-map-users .custom-iw .gm-style-iw > div {
  width: 100%;
  max-width: 100%;
}
.article.google-map-users .custom-iw .gm-style-iw > div > div {
  width: 100%;
  max-width: 100%;
}
.article.google-map-users .gm-style .photo-info-window img {
  width: 100%;
  max-width: 290px;
  position: relative;
}
.article.google-map-users .gm-style-iw {
  position: absolute;
  top: 0;
  margin: 0 auto;
  width: 200px;
  left: 10px;
  background-color: var(--defaultWhite);
  box-shadow: 0 1px 6px rgba(178, 178, 178, 0.6);
  border-radius: 5px;
}
.article.google-map-users .gm-style-iw > div {
  width: 100%;
}
.article.google-map-users .custom-iw > div:first-child > div:nth-child(2) {
  display: none;
}
.article.google-map-users .custom-iw .gm-style-iw {
  width: 100%;
  max-width: 100%;
}
.article.google-map-users .custom-iw .gm-style-iw > div {
  width: 100%;
  max-width: 100%;
}
.article.google-map-users .custom-iw .gm-style-iw > div > div {
  width: 100%;
  max-width: 100%;
}
.article.google-map-users .gm-style-iw ~ div {
  right: 35px;
  top: 25px;
}
.article.google-map-users .gm-style .gm-style-iw-c {
  padding: 0px;
  margin-left: -9px;
  border-radius: 0;
}
.article.google-map-users .gm-style .gm-style-iw-t::after {
  left: 0;
}
.article.google-map-users .gm-ui-hover-effect {
  top: 0px;
  right: 0px;
}
.article.google-map-users .gm-ui-hover-effect img {
  filter: invert(1);
  width: 24px;
  height: 24px;
  margin: 3px;
}

/* Grade A */
/* Grade B */
@media (max-width: 991px) {
  .article.google-map-users .user-list .user-info {
    width: 50%;
  }
}
/* Grade C */
@media (max-width: 767px) {
  .article.google-map-users .user-list .user-info {
    width: 100%;
  }
}
/* Grade D */

/*# sourceMappingURL=googleMapsUsers.css.map */