body{
	margin: 0px;
	padding: 50px;
	height: 100%;
	width: 100%;
	background-color: rgb(240,240,240);
	color: rgb(123,0,0);	
}
/*

RESPONSTABLE 2.0 by jordyvanraaij
  Designed mobile first!

If you like this solution, you might also want to check out the 1.0 version:
  https://gist.github.com/jordyvanraaij/9069194

*/
.responstable {
  margin: 1em 0;
  width: 90%;
  overflow: hidden;
  background: #FFF;
  color: #024457;
  color: rgb(123,0,0);
  border-radius: 10px;
  border: 1px solid rgb(123,0,0);
}
.responstable tr {
  border: 1px solid #D9E4E6;
}
.responstable tr:nth-child(odd) {
  background-color: #EAF3F3;
}
.responstable th {
  display: none;
  border: 1px solid #FFF;
  background-color: #167F92;
  background-color: rgb(123,0,0);
  color: #FFF;
  padding: 1em;
}
.responstable th:first-child {
  display: table-cell;
  text-align: center;
}
.responstable th:nth-child(2) {
  display: table-cell;
}
.responstable th:nth-child(2) span {
  display: none;
}
.responstable th:nth-child(2):after {
  content: attr(data-th);
}
@media (min-width: 400px) {
  .responstable th:nth-child(2) span {
    display: block;
  }
  .responstable th:nth-child(2):after {
    display: none;
  }
}
.responstable td {
  display: block;
  word-wrap: break-word;
  max-width: 7em;
}
.responstable td:first-child {
  display: table-cell;
  text-align: center;
  border-right: 1px solid #D9E4E6;
}
@media (min-width: 400px) {
  .responstable td {
    border: 1px solid #D9E4E6;
  }
}
.responstable th, .responstable td {
  text-align: left;
  margin: .3em 1em;
}
@media (min-width: 400px) {
  .responstable th, .responstable td {
    display: table-cell;
    padding: 1em;
  }
}

 .inputs {
    height: 25px;
    border: 3px solid #bd7d71;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    width: 400px;
    color: #bd7d71;	
    font-size: 18px;
}

.inputs:focus {
    border-color: #bd7d71;
    outline: none;
}


.myButton {
  background: #a10000;
  background-image: -webkit-linear-gradient(top, #a10000, #c20000);
  background-image: -moz-linear-gradient(top, #a10000, #c20000);
  background-image: -ms-linear-gradient(top, #a10000, #c20000);
  background-image: -o-linear-gradient(top, #a10000, #c20000);
  background-image: linear-gradient(to bottom, #a10000, #c20000);
  -webkit-border-radius: 10;
  -moz-border-radius: 10;
  border-radius: 10px;
  font-family: Arial;
  color: #ffffff;
  font-size: 14px;
  padding: 5px 10px 5px 10px;
  text-decoration: none;
}

.myButton:hover {
  background: #e03314;
  background-image: -webkit-linear-gradient(top, #e03314, #eb1212);
  background-image: -moz-linear-gradient(top, #e03314, #eb1212);
  background-image: -ms-linear-gradient(top, #e03314, #eb1212);
  background-image: -o-linear-gradient(top, #e03314, #eb1212);
  background-image: linear-gradient(to bottom, #e03314, #eb1212);
  text-decoration: none;
}


