@import url('https://fonts.googleapis.com/css?family=Oswald');



.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

nav {
  padding: 10px;
  width: 100%;
  left: 0;
  top: 0;
  text-align: center; 
  line-height: 76px;
  }

nav a {
  font-family: Oswald, sans-serif;
  font-size: 24px;
  font-weight: light; 
  margin: 5px;
  padding: 13px;
  background: #06214f;
  border-style: solid;
  border-width: 1px;
  border-color: #06214f;
}

nav a:link {
  color: #fff;
  text-decoration: none;
}

nav a:visited {
  color: #fff;
  text-decoration: none;
}

nav a:hover {
  color: #06214f;
  border-style: solid;
  border-width: 1px;
  border-color: #000;
  background: #fff;
}

nav a:active {
  color: #000;
}

p {

  font-family: 'Verdana', sans-serif;
  font-size: 16px;
  line-height: 18px; 
  margin: 10px;
  margin-bottom: 20px;

}

em  {

  font-family: 'Verdana', sans-serif;
  font-size: 16px;
  line-height: 18px; 
  margin: 0px;
  margin-bottom: 20px;

}


p.wrong {

  background: #cc0000;
  color: #fff;
  font-size: 24px;
  line-height: 26px;
  margin: 0px;
  /*width: 70%;*/
  padding: 5px;

}

p.maintenance {

  background: #cc0000;
  color: #fff;
  font-size: 24px;
  line-height: 26px;
  margin: 0px;
  /*width: 70%;*/
  padding: 5px;
  text-align: center;

}

/* === FOOTER === */

footer, footer p {
  color: #000;
  font-family: verdana, sans-serif;
  font-size: 11px;
  text-align: center;
}

/* === CONTACT FORM === */

#formwrapper {
  margin: 20px auto;
  width: 50%;
  padding: 20px;
  background: #ccc;
  border-radius: 10px;
}


textarea {
  display: block;
  width: 70%;
  height: 150px;
  padding: 10px;
  border-radius: 4px;
  border: 2px solid #003354;
  background: #fff;
  font-size: 16px;
  font-family: Cardo, serif;
  resize: none;
  color: #ccc;
  margin-left: 5px;
  margin-bottom: 24px;
  outline: none;
  transition: all .3s;
}

textarea:focus {
  background: #fff;
  color: #003354;
  outline: none;
}

label {
  font-family: Cardo, serif;
  font-size: 24px;
  color: #003354;
  font-weight: normal;
  letter-spacing: 0px;
  margin: 5px;
}

#email_address {
  display: none;
}

#formwrapper {
  margin: 0px auto;
  width: 33%;
  padding: 20px;
  background: #b5d1ff;
}

input[type=text], input[type=email], input[type=password] {
  width: 70%;
  padding: 10px;
  margin: 5px;
  display: block;
  border: none;
  border-bottom: 2px solid #fff;
  border-radius: 4px;
  font-size: 20px;
  font-family: 'Oswald', sans-serif;
  color: #fff;
  background: #06214f;
  transition: all .3s;
}

input[type=text]:focus, input[type=email]:focus, input[type=password]:focus {
  background: #06214f;
  color: #fff;
  outline: none;
  border-bottom: 2px solid #fff;
  margin: 5px;
}

input[type=submit], input[type=reset] {
  width: 20%;
  background: #06214f;
  color: #fff;
  padding: 10px;
  margin: 14px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  font-family: 'Oswald', sans-serif;
  box-shadow: 1px 1px 15px #000;
  outline: none;
  text-align: center;
  transition: all .3s;
}

input[type=submit]:hover, input[type=reset]:hover {
  background: #06214f;
  color: #fff;
}

input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  border-radius: 50%;
  width: 16px;
  height: 16px;

  border: 2px solid #06214f;
  transition: 0.2s all linear;
  margin-right: 0px;

  position: relative;
  top: 4px;
  padding: -10px;
}

input[type="radio"]:checked {
  border: 6px solid #06214f;
}

input[type="radio"]:focus + label {
    background-color: #fff;
    color: #000;
}

label {
    display: inline-block;
    background-color: #06214f;
    color: #fff;
    padding: 10px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    border: none;
    border-radius: 4px;
}

.rapids input[type=text] {
  width: 50%;
  padding: 2px 2px 2px 10px;
  margin-bottom: 3px;
  display: block;
  border: none;
  border-bottom: 2px solid #fff;
  border-radius: 4px;
  font-size: 18px;
  font-family: 'Oswald', sans-serif;
  color: #fff;
  background: #06214f;
  transition: all .3s;
}

.rapids input[type=text]:focus {
  background: #06214f;
  color: #fff;
  outline: none;
  border-bottom: 2px solid #fff;
}

meter {
    /* Reset the default appearance */
  /* -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;*/
            
  margin: 0 auto 10px;
  width: 25%;
  height: 16px;
    
    /* Applicable only to Firefox */
  background: none;
  background-color: rgba(0,0,0,0.1);
}

meter::-webkit-meter-bar {
  background: none;
  background-color: rgba(0,0,0,0.1);
}

meter[value="1"]::-webkit-meter-optimum-value { background: red; }
meter[value="2"]::-webkit-meter-optimum-value { background: orange; }
meter[value="3"]::-webkit-meter-optimum-value { background: yellow; }
meter[value="4"]::-webkit-meter-optimum-value { background: green; }

meter[value="1"]::-moz-meter-bar { background: red; }
meter[value="2"]::-moz-meter-bar { background: orange; }
meter[value="3"]::-moz-meter-bar { background: yellow; }
meter[value="4"]::-moz-meter-bar { background: green; }

.feedback {
  color: #000000;
  font-size: 10px;
  padding: 0 5px;
  font-family: verdana, sans-serif;
  margin-top: 5px;
}