label.container {
  display: block;
  position: relative;
  padding: 3px 0px;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

::-webkit-scrollbar { 
    display: none; 
}


/* Hide the browser's default radio button */
label.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 5px;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #eee;
  border-radius: 50%;
  transition: background-color 0.3s ease;

  @media (max-width: 1250px){
    top: 0px;
  }

  @media (max-width: 450px){
    top: 0px;
  }
}

.container input[type="radio"]:checked + .checkmark {
  /* kleur op basis van positie in de gradient */
  background: color-mix(
    in oklab,
    var(--c-start) calc((1 - var(--pos)) * 100%),
    var(--c-end)   calc(var(--pos) * 100%)
  );
  border-color: transparent;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  /* background-color: #ccc; */
  background: color-mix(
    in oklab,
    var(--c-start) calc((1 - var(--pos)) * 100%),
    var(--c-end)   calc(var(--pos) * 100%)
  );
  border-color: transparent;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  /* background: linear-gradient(var(--angle), #E5ACF4 0%, #387FF7 100%); /* #E95934; */
  background: #E5ACF4; */
}

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

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
/* .container .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
} */

.vraag {
  height: auto;
  min-height: calc(100vh - 50px); /* - footer-height */

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
  --c-start: #E5ACF4;  /* roze boven */
  --c-end:   #387FF7;  /* paars onder */
}

.vraag .container:nth-of-type(1) { --pos: 0; }
.vraag .container:nth-of-type(2) { --pos: .5; }
.vraag .container:nth-of-type(3) { --pos: 1; }

.vraag.vraag-1 {
  min-height: calc(100vh - 160px - 50px); /* header-height - footer-height */
}

.vraag .inner-wrapper {
  width: calc(55% - 50px);
}
@media (max-width: 850px) {
  .vraag .inner-wrapper {
    width: 100%;
  }
}

form [type="submit"] {
  margin-top: 0;
}