label.container {
  display: block;
  position: relative;
  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;
  }
}

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

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #E3AC53;
}

/* 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;
} */

.error-message {
  color: red !important;
  font-size: 0.9em !important;
}

form fieldset {
  border: none;
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;

  label {
    position: absolute;
    display: block;
    margin: 0;
    z-index: 1;
    top: 0;
    padding: 12px 15px;
    width: calc(100% - (15px * 2));
    color: #6B6B6B;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
  }

  input[type=phone],
  input[type=text],
  input[type=email] {
    background-color: rgba(217, 217, 217, 0.4);
    display: block;
    border: 0px;
    border-radius: 7px;
    outline: none;
    margin-bottom: 25px;
    padding: 12px 15px;
    width: calc(100% - (15px * 2));
    color: #000046;

    &:focus + label,
    &.not-empty + label {
      transform: scale3d(0.8, 0.8, 1) translate3d(-0.9rem, -1.95em, 0);
    }
  }
}

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

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

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

  .inner-wrapper {
    width: calc(55% - 50px);

    @media (max-width: 850px) {
      width: 100%;
    }
  }
}

@media screen and (max-width: 1024px) {

      input[type=button], input[type=submit], input[type=reset] {
        font-size: 1.5em;
        margin-bottom: 10px;
        width: 100%;
      }

      input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
        font-size: 1.5em;
        margin-bottom: 10px;
        width: 100%;
      }
}
