/*---------------------------------------/*
 # SETTINGS
/*---------------------------------------*/
/*---------------------------------------/*
 # GENERIC - BOOTSTRAP
/*---------------------------------------*/
.form-control {
  display: flex;
  width: 100%;
}
.form-control:focus-visible {
  outline-color: hsl(195, 53%, 79%);
}
.form-label {
  color: black;
}

.mapboxgl-canvas-container.mapboxgl-interactive {
  cursor: pointer;
}

.mapboxgl-ctrl-geocoder {
  width: 100%;
  min-width: 0;
}
@media (max-width: 425px) {
  .mapboxgl-ctrl-geocoder {
    width: 70%;
  }
}

/*---------------------------------------/*
 # ELEMENTS
/*---------------------------------------*/
a {
  color: black;
  text-decoration: none;
}

/*---------------------------------------/*
 # OBJECTS
/*---------------------------------------*/
/*---------------------------------------/*
 # COMPONENTS
/*---------------------------------------*/
.c-form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .c-form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.c-form__value {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
}
.c-form__map {
  padding: 2rem;
}
.c-form__control {
  background-color: rgba(128, 128, 128, 0.6705882353);
  padding: 2rem;
  border: 2px solid teal;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .c-form__control {
    width: 100%;
  }
}
.c-form__control--top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .c-form__control--top {
    flex-direction: column;
    align-items: center;
  }
}
.c-form__control--border {
  border: 2px solid teal;
  height: 100%;
  border-radius: 5px;
}
.c-form__dropdown {
  width: 100%;
  outline: none;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
}
.c-form__dropdown:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.c-form__dropdown:hover {
  cursor: pointer;
}
.c-form__title {
  display: flex;
  justify-content: center;
}
.c-form__forms {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.c-form__row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .c-form__row {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
}

.c-locatie {
  width: 100%;
}
.c-locatie__map {
  display: flex;
  height: 25rem;
  width: 100%;
  border: 2px solid teal;
  border-radius: 5px;
}
.c-locatie__title {
  display: flex;
  justify-content: center;
}

.c-map {
  display: flex;
  height: 25rem;
  border: 5px solid lightblue;
}
.c-map__marker {
  width: 3.9rem;
  height: 6rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/*---------------------------------------/*
 # UTILITIES
/*---------------------------------------*/
.u-hidden {
  display: none;
}