header .c-mobile-menu__toggle-btn {
	display: none!important;
}
.image-container {
	margin: 0 -10px
}
.image-container img {
	padding: 10px
}

.button-previous, .button-next, .button-submit {
    margin-top: 25px;
}
.button-next, .button-submit {
    background-color: var(--color-c);
}
.button-previous {
	margin-right: 10px;
    background-color: #ededed;
    color: black;
}
.leaflet-draw-section .leaflet-draw-toolbar-top {
    border: 2px solid var(--color-c);
}
.question {
	margin-bottom: 15px;
}
input[type=text] {
	padding: 2px 8px;
	width: 100%;
	max-width: 500px;
	border: 1px solid #3d3d3d;
	border-radius: 5px;
	outline: none;
}

#map {
	margin-top: 15px;
}
#questionnaire .leaflet-control-attribution a {
    font-size: 10px;
}
#questionnaire .leaflet-touch .leaflet-draw-actions a {
    font-size: 12px;
}
#questionnaire .leaflet-touch .leaflet-control-zoom-in, 
#questionnaire .leaflet-touch .leaflet-control-zoom-out {
    font-size: 22px;
}
#questionnaire label {
	display: block;
	width: fit-content;
	font-weight: 500;
}
#questionnaire textarea, #questionnaire input{
	font-size: 16px;
}
#questionnaire textarea{
	padding: 10px;
	border: 1px solid #3d3d3d;
	border-radius: 5px;
	outline: none;
	width: 100%;
	max-width: 500px;
}

#questionnaire .section div {
	line-height: 1.8;
}

#questionnaire label.checkbox-wrapper {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default checkbox */
.checkbox-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox-wrapper:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-wrapper input:checked ~ .checkmark {
  background-color: var(--color-c);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-wrapper input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-wrapper .checkmark:after {
  left: 9px;
  top: 5px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}