body {
  background-color: white;
  /* display: block; */
  margin: 0;
  margin-left: 30px;
  margin-right: 30px;
}
div {
  background-color: white;
  /* margin-top: 0px; */
}
h1 {  font-size: 1rem;}
h2 {
  margin-top: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  color: #66BFBF;
  padding-bottom: 10px;
  text-align: center;
}
h3 {
  color: #66bfbf;
  font-size: 1.2rem;
}
hr {
  background-color: #eaf6f6;
  border-style: none;
  border-top-style: dotted;
  border-width: 6px;
  border-color: grey;
  width: 2.5%
}
/* img {width: 15%} */
  
/* class selectors */
.btn {
  background: #11CDD4;
  background-image: -webkit-linear-gradient(top, #11CDD4, #11999E);
  background-image: -moz-linear-gradient(top, #11CDD4, #11999E);
  background-image: -ms-linear-gradient(top, #11CDD4, #11999E);
  background-image: -o-linear-gradient(top, #11CDD4, #11999E);
  background-image: linear-gradient(to bottom, #11CDD4, #11999E);
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  font-size: 13px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

.circular { border-radius: 10%;}

.code-img-left {
  float: left;
  margin-right: 30px;
}

.code-img-right {
  width: 25%;
  float: right;
  margin-left: 30px;
}

.contact {
  /* border: solid; */
  position: relative;
    bottom: 635px;
}

.contact-message {
  width: 40%;
  margin: 10px auto 20px;
}

/* Dropdown Button */
.dropbtn {
  background-color: #11CDD4;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
/* .show {display:block;} */

.horizontal {
  /* border: solid; */
  position: relative;
    bottom: 650px;
  /* margin: 10px;
  margin-left: 800px;
  
    left: 20px;
  width: 33%; */
}

.img-parabank {
  position: relative;
    bottom: 18px;
    left: 50px;
}

.img-garage {
  position: relative;
    left: 220px;
}

.img-servicebeurt {
  position: relative;
    bottom: 10px;
    left: 0px;
}

.parabank {
  /* border: solid; */
  /* height: 400px;   */
  margin: 10px;
  margin-left: 800px;
  position: relative;
    bottom: 605px;
    left: 20px;
  width: 33%;
}

.rollercoaster {
  /* border: solid; */
  margin: 10px;
  width: 33%;
}

.servicebeurt {
  /* border: solid; */
  margin: 10px;
  margin-left: 400px;
  position: relative;
  bottom: 150px;
  width: 33%;
}

.text-cleared-left {
  clear: left;
}

.text-cleared-right {
  clear: right;
}

/* Checkboxes */
/* Customize the label (the container) */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* Create a custom checkbox */
.checkbox-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #ccc;
}
/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkbox-checkmark {
  background-color: #eee;
}
/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkbox-checkmark {
  background-color: #2196F3;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkbox-checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
.checkbox-container .checkbox-checkmark:after {
  left: 5px;
  top: 1px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Radio buttons */
/* Customize the label (the container) */
.radio-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default radio button */
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* Create a custom radio button */
.radio-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #ccc;
  border-radius: 50%;
}
/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .radio-checkmark {
  background-color: #eee;
}
/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .radio-checkmark {
  background-color: #2196F3;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .radio-checkmark:after {
  display: block;
}
/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
