@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");
.WT_sidebar {
  width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  top: 0;
  left: 0;
  height: 80vh;
  min-height: 600px;
  overflow: auto;
  font-family: 'Open Sans', sans-serif;
}

@media screen and (max-width: 950px) {
  .WT_sidebar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    height: 100%;
    max-height: 100%;
    display: none;
  }
}

.WT_sidebar--show {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.WT_sidebar__onderdeel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px;
  background-color: #f1f1f1;
  margin-top: 2rem;
  text-align: center;
}

.WT_sidebar__onderdeel p:first-of-type {
  margin: 0 !important;
}

.WT_sidebar__onderdeel a, .WT_sidebar__onderdeel a:active, .WT_sidebar__onderdeel a:visited, .WT_sidebar__onderdeel a:link {
  background-color: #479ddb;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  padding: 15px 20px;
  margin-top: 10px;
}

.WT_sidebar__onderdeel a:hover, .WT_sidebar__onderdeel a:active:hover, .WT_sidebar__onderdeel a:visited:hover, .WT_sidebar__onderdeel a:link:hover {
  opacity: 0.8;
}

.WT_sidebar--mobile {
  display: none;
}

@media screen and (max-width: 950px) {
  .WT_sidebar--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-bottom: 10px;
    background-color: whitesmoke;
    padding: 5px;
  }
}

.WT_sidebar--mobile-button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #479ddb;
  color: #fff;
  padding: 5px;
  margin-left: auto;
}

.WT_sidebar--mobile-button:hover {
  cursor: pointer;
  background-color: #2785c8;
  color: #fff;
}

.WT_sidebar select {
  margin: 5px 0;
  padding: 5px 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  width: 100%;
}

@media screen and (max-width: 950px) {
  .WT_sidebar select {
    max-width: 100%;
  }
}

.WT_sidebar__heading {
  margin-bottom: 15px;
}

.WT_sidebar__heading h2 {
  margin: 0;
  color: red;
  font-size: 25px;
  text-align: center;
}

.WT_sidebar__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.WT_sidebar__filters a,
.WT_sidebar__filters a:active,
.WT_sidebar__filters a:visited,
.WT_sidebar__filters a:link {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px;
  border: 1px solid black;
  text-decoration: none;
  color: black;
}

.WT_sidebar__filters a:not(:last-child),
.WT_sidebar__filters a:active:not(:last-child),
.WT_sidebar__filters a:visited:not(:last-child),
.WT_sidebar__filters a:link:not(:last-child) {
  margin-right: 5px;
}

.WT_sidebar__filters a:hover,
.WT_sidebar__filters a:active:hover,
.WT_sidebar__filters a:visited:hover,
.WT_sidebar__filters a:link:hover {
  background-color: grey;
}

.WT_sidebar__buttons {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  border-top: 1px solid #c9c9c9;
  padding-top: 1rem;
}

.WT_sidebar__buttons a,
.WT_sidebar__buttons a:active,
.WT_sidebar__buttons a:visited,
.WT_sidebar__buttons a:link {
  width: calc(100% / 2 - 5px);
  background-color: #479ddb;
  border-radius: 0px;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-decoration: none;
}

.WT_sidebar__buttons button {
  width: calc(100% / 2 - 5px);
  background-color: #fff;
  border-radius: 0px;
  border: 1px solid #479ddb;
  font-size: 16px;
}

.WT_sidebar__buttons button:hover {
  background-color: #e64d1f;
  border-color: #e64d1f;
  color: #fff;
  cursor: pointer;
}

.WT_sidebar__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.WT_sidebar__details h2 {
  margin: 0;
  font-size: 20px;
  margin-top: 2rem;
}

.WT_sidebar__details p {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 500;
}

.WT_sidebar__details p span {
  color: #479ddb;
}

.WT_sidebar__details p:first-of-type {
  margin: 2rem 0;
}

.WT_sidebar__details img {
  max-width: 100%;
}

.WT_Error {
  width: 100%;
  background-color: #e64d1f;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 5px;
  display: none;
}

.WT_Error--show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.project {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
}

.project:not(:last-child) {
  border-bottom: 1px solid #c2c2c2;
}

.project:hover {
  background-color: #e0e0e0;
  cursor: pointer;
}

.project__photo {
  width: 30%;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: silver;
}

.project__photo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.project__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 15px;
  height: 80%;
  width: 65%;
}

.project__content h3 {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.project__content p {
  margin: 0;
  margin-top: 10px;
}

.project__content a, .project__content a:active, .project__content a:visited, .project__content a:link {
  margin-top: auto;
  text-decoration: none;
  color: #479ddb;
  font-size: 14px;
}

.map {
  width: 100%;
  min-width: 100% !important;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.map__cta {
  position: absolute !important;
  right: 20px;
  bottom: 20px;
  z-index: 5;
  width: 20%;
}

@media screen and (max-width: 950px) {
  .map__cta {
    display: none !important;
  }
}

@media screen and (max-width: 950px) {
  .map {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.map > #map {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 950px) {
  .map > #map {
    height: 50vh;
  }
}

.mapMobile {
  display: none;
}

@media screen and (max-width: 950px) {
  .mapMobile {
    position: absolute;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 50px;
    width: 100%;
    z-index: 5;
    background-color: #479ddb;
    color: #fff;
  }
  .mapMobile:hover {
    background-color: #2785c8;
    cursor: pointer !important;
  }
  .mapMobile p {
    margin: 0;
  }
}

.box-shadow-top {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 2px 2px rgba(0, 0, 0, 0.15), 0 4px 4px rgba(0, 0, 0, 0.15), 0 8px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 2px 2px rgba(0, 0, 0, 0.15), 0 4px 4px rgba(0, 0, 0, 0.15), 0 8px 8px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
}

.marker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  /* position: relative; */
}

.marker:hover {
  z-index: 50;
  cursor: pointer;
}

.marker p {
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: slategrey;
  color: #fff;
  font-size: 13px;
  position: absolute;
  bottom: 20px;
  display: none;
  white-space: nowrap;
  z-index: 999;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
}

.marker:hover p {
  display: block;
  cursor: pointer !important;
}

.marker img {
  /* filter: invert(100%); */
  max-width: 25px !important;
  z-index: -1;
  position: relative;
  cursor: pointer !important;
}

.marker img:hover {
  cursor: pointer !important;
}

.marker:hover {
  cursor: pointer !important;
}

.mapboxgl-popup {
  max-width: 200px;
  height: 250px;
}

.mapboxgl-popup-content {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  background-color: slategrey;
  color: #fff;
  height: 120px;
  width: 200px;
  border-radius: 0;
  padding: 0;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mapboxgl-popup-content img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.mapboxgl-popup-content p {
  color: #fff;
  text-shadow: 2px 2px #000000;
  font-size: 20px;
  z-index: 999;
  font-family: 'Open Sans', sans-serif;
}

.project__popup {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mapboxgl-popup-content {
  padding: 0 !important;
}

.filters__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.filters__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.filters__item, .filters__back {
  border: 2px solid #479ddb;
  color: #479ddb;
  padding: 5px;
  font-size: 15px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
}

.filters__item:not(:last-child), .filters__back:not(:last-child) {
  margin-right: 5px;
}

.filters__back {
  background-color: #479ddb;
  color: #fff !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.filters__back img {
  -webkit-filter: invert(1);
          filter: invert(1);
  margin-right: 5px;
}

.filters__back:hover {
  cursor: pointer;
  color: #fff !important;
  border-color: #2785c8;
  background-color: #2785c8;
}

.loadingContainer {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loadingSpinner {
  pointer-events: none;
  width: 2.5em;
  height: 2.5em;
  border: 0.4em solid transparent;
  border-color: #eee;
  border-top-color: #3E67EC;
  border-radius: 50%;
  -webkit-animation: loadingspin 1s linear infinite;
          animation: loadingspin 1s linear infinite;
}

@-webkit-keyframes loadingspin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loadingspin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.sub-menu {
  z-index: 2 !important;
}

.backend__upload {
  background-color: #fff;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem;
  border-radius: 5px;
  margin-top: 1rem;
}

.backend__upload p {
  background-color: #ffe4b3;
  padding: 10px;
  border-left: 5px solid #c9bd1d;
  line-height: 22px;
}

.backend__upload p span {
  background-color: #3e3c55;
  padding: 3px;
  border-radius: 2.5px;
  color: #fff;
}

.backend__message {
  background-color: #a1f09a !important;
  padding: 10px;
  border-left: 5px solid #3fc91d !important;
  line-height: 22px;
}

.backend__form {
  padding: 10px;
  background-color: #d6d6d6;
  border-radius: 5px;
}

.backend__delete {
  padding: 10px;
  background-color: #b41515;
  border: 1px solid red;
  color: #fff;
  margin-bottom: 1rem;
}

.backend__delete:hover {
  background-color: #962929;
  cursor: pointer;
}

.backend__oops p {
  background-color: unset;
  border: unset;
  padding: 0;
}
/*# sourceMappingURL=style.css.map */