*{
  margin:0;padding:0;
  font-family: 'Barlow Condensed', sans-serif;
  
}
/*html, body{
  overflow:hidden;
}*/
body{
  margin-bottom:60px;
  background:#fff;
}
table{
  border:0px;
}
hr{
  border:1px solid #ccc;
}
table td{
  padding:0px;
  margin:0px;
  font-size: 1.25em;
}
table td input{
  font-size: 1em;
}
table.header td{
  padding:10px 0px;
  font-size: 1.5em;
}
#inputColValue {
  height:60px
}
#outputColValue {
  height:60px
}

#menu a{
  display:block;
  border:1px solid #ccc;
  border-width: 0 0 1px 0;
  padding:1em;
  text-decoration: none;
  color: #000;
}
#menu a:hover{
  background:#EEE;
}
#menu a:first-of-type{
  border-width: 1px 0;
}

*:focus {
  outline: 0;
}
input[type="checkbox"] {
  display:none;
}
input[type="checkbox"] + label {
  width: 60px;
  height: 30px;
  border: 2px solid #ddd;
  background-color: #EEE;
  display: inline-block;
  content: "";
  float: left;
  margin-right: 5px;
  transition: background-color 0.5s linear;
}
input[type="checkbox"] + label:hover {
  cursor: pointer;
}
input[type="checkbox"] + label::before {
  width: 30px;
  height: 30px;
  background-color: #fff;
  display: block;
  content: "";
  float: left;
  margin-right: 5px;
  transition: margin 0.1s linear;
  box-shadow: 0px 0px 5px #aaa;
}
input[type="checkbox"]:checked+label{
  background-color: #2b8718;
}
input[type="checkbox"]:checked+label::before {
  margin: 0 0 0 30px;
}