/*
    Document   : style
    Created on : 26-apr-2012, 17:07:29
    Author     : Jelmer
    Description:
        Purpose of the stylesheet follows.
*/

root {
    display: block;
}
body
{
  font-size: 18px;
  font-weight: 300;
  font-family: 'Titillium Web', sans-serif;
  height: 100%;
}

h4{
  background: #e3e3e3;
  padding: 2px;
}

#footer-inschrijven
{
    display: none;
}


form {
  display: inline-block;
}

form label {
  display: block;
  font-size: 16px;
}

.form-element {
    display: inline-block;
    position: relative;
}

.form-field.has-select .form-element:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0px;
    pointer-events: none;
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg) translateY(-50%);
    -webkit-transform: rotate(45deg) translate(-100%);
}

input[type="text"], input[type="email"], input[type="tel"] {
  padding: 5px;
  font-size: 16px;
  width: 100%;
  background: #f8f8f8;
  border: 1px solid #a6a6a6;
  border-radius: 2px;
  box-sizing: border-box;
}

input + input {
  margin-left: 5px;
}

input#voornaam {
  width: 120px;
}
input#achternaam {
  width: 120px;
}
input#postcode {
  width: 100px;
}
input#huisnummer {
  width: 50px;
}

.form-field {
    padding: 10px 0 0 0;
}

select {
    padding: 5px;
    font-size: 16px;
    width: 180px;
    background: #f8f8f8;
    border: 1px solid #a6a6a6;
    border-radius: 2px;
    box-sizing: border-box;
    -webkit-appearance: none;
}

.form-field.has-button {
  text-align: center;
}
button#sbmt {
  padding: 6px 18px;
  background: #45a731;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-family: "Titillium Web";
  border: 1px solid #45a731;
}
button#sbmt:hover {
  background-color: #31931d;
  border-color: #31931d;
}

@media screen and (min-width: 600px) {
  form label {
    display: inline-block;
    min-width: 200px;
    text-align: right;
  }
  .form-field.has-button {
    padding-left: 200px;
  }
}
