html,
body {
  margin: 0;
  padding: 0;
  font-family: Poppins, sans-serif;
}

body {
  font-family: Poppins, sans-serif;
  background-color: #fff;
  line-height: 1.2;
  font-size: 20px;
  font-size: 1.25rem;
}

.logo {
  width: 200px;
  margin: 20px;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
  margin: 10px;
}
@media (min-width: 1200px) {
  .container {
    flex-direction: row;
    gap: 50px;
  }
}
.container #map {
  height: 60vh;
  max-height: 700px;
  width: 100%;
  max-width: 700px;
}
@media (min-width: 1200px) {
  .container #map {
    height: 80vh;
  }
}
.container .kleurbetekenis {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.container .kleurbetekenis p {
  margin: 5px 0;
}
.container .kleurbetekenis .blauwContainer {
  border: #33646F solid 3px;
  background: #E4F1D3;
  margin-right: 10px;
}
.container .kleurbetekenis .blauwContainer .blauw {
  background: #33646F;
  width: 14px;
  height: 14px;
  opacity: 0.4;
}
.container .kleurbetekenis .roodContainer {
  border: #E8542C solid 3px;
  background: #E4F1D3;
  margin-right: 10px;
}
.container .kleurbetekenis .roodContainer .rood {
  background: #E8542C;
  width: 14px;
  height: 14px;
  opacity: 0.4;
}
.container .kleurbetekenis .groen {
  background: #33646F;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.container form {
  display: flex;
  flex-direction: column;
  background: #31626e;
  color: #fff;
  padding: 30px;
  gap: 5px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 15px;
}
.container form #Telgebied {
  margin-bottom: 0;
}
.container form #form {
  display: none;
  flex-direction: column;
}
.container form label.Telpartner {
  margin-top: 5px;
}
.container form label span {
  color: red;
  font-size: 25px;
}
@media (min-width: 1200px) {
  .container form {
    width: 500px;
  }
}
.container form textarea {
  resize: vertical;
}
.container form input,
.container form select,
.container form textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 1.25rem;
  font-size: 20px;
}
.container form .partner {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 10px 0;
}
.container form .partner .radioContainer {
  display: flex;
  align-items: center;
}
.container form .partner .radioContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.container form .partner .radioContainer input:checked ~ .checkmark {
  background: #E8531D;
}
.container form .partner .radioContainer .checkmark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  margin-right: 10px;
}
.container form .partner .radioContainer .checkmark:hover {
  background: #adadad;
}
.container form .partner .radioContainer .checkmark:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: white;
}
.container form button {
  background: #E8531D;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}
.container form button:hover {
  background: #33646F;
}

.footer {
  display: flex;
  justify-content: center;
  color: #000;
  padding: 10px 0;
  bottom: 0;
  width: 100%;
}
.footer a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.disabledTelgebied {
  margin: 20px;
}
.disabledTelgebied h3 span {
  border: #000 solid 1px;
  padding: 2px;
}
.disabledTelgebied form input,
.disabledTelgebied form select,
.disabledTelgebied form textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 1.25rem;
  font-size: 20px;
  border: #000 solid 1px;
}
.disabledTelgebied form button {
  background: #537f8a;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}
.disabledTelgebied form button:hover {
  background: #5c8b96;
}
.disabledTelgebied .container-telgebied {
  display: flex;
  justify-content: space-between;
}
.disabledTelgebied .container-telgebied table tr td {
  padding: 10px;
  border: 1px solid #000;
}
.disabledTelgebied .container-telgebied #map {
  height: 60vh;
  max-height: 700px;
  width: 100%;
  max-width: 700px;
}
@media (min-width: 1200px) {
  .disabledTelgebied .container-telgebied #map {
    height: 80vh;
  }
}

.redirect-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 50px 0;
}
.redirect-container h1 {
  color: #000;
  margin: 10px;
}
.redirect-container a {
  background: #537f8a;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}
.redirect-container a:hover {
  background: #5c8b96;
}/*# sourceMappingURL=style.css.map */