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

body {
	background: url("../img/squairy_light.png");
	min-height: 100vh;
	font-family: 'Lato', sans-serif;
	margin: 0;
}
div.container {
	width: 1000px;
	margin: 0 auto;
}
h1 {
	margin: 0 0 40px 0px;
	padding-top: 30px;
	font-size: 40px;
  text-shadow: 1px 1px;
}
table {
	color: #FFF;
	width: 100%;
}
th, tr, td {
	border: 1px solid #FFF;
	padding: 3px;
}
tr td, body {
	background-color: #4895FF;
}
tr th {
	background-color: #1055B2;
	font-weight: bold;
	font-size: 26px;
	text-align: center;
}
tr td:first-child {
	background-color: #2E87FF;
	width: 150px;
}
tr td:hover {
	background-color: #2E87FF;
}
a, a:active, a:visited {
	color: #FFB72E;
}
a:hover {
	color: #B27500;
}

#table-template {
	display: none;
}

.hidden {
	display: none;
}

ul {
	list-style-type: none;
	padding-left: 0;
}
table {
	margin-bottom: 30px;
	border-collapse: collapse;
	border-spacing: 0;
}

button {
	border: 1px solid #B27500;
	border-radius: 5px;
	background-color: #FFB72E;
	cursor: pointer;
	font-size: 20px;
	-webkit-box-shadow: 3px 2px 5px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    3px 2px 5px 0px rgba(50, 50, 50, 0.75);
	box-shadow:         3px 2px 5px 0px rgba(50, 50, 50, 0.75);
}
input {
    margin: 2px 0 2px 26px;
    font-size: 20px;
    border: 1px solid #B27500;
    padding: 2px 5px;
    -webkit-box-shadow: 3px 2px 5px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 3px 2px 5px 0px rgba(50, 50, 50, 0.75);
    box-shadow: 3px 2px 5px 0px rgba(50, 50, 50, 0.75);
}
label {
  width: 100px;
  display: inline-block;
}



/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left:0; top: 2px;
  width: 17px; height: 17px;
  border: 1px solid #aaa;
  background: #f8f8f8;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.3)
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: '✔';
  position: absolute;
  top: 3px; left: 4px;
  font-size: 18px;
  line-height: 0.8;
  color: #09ad7e;
  transition: all .2s;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
[type="checkbox"]:disabled + label {
  color: #aaa;
}
/* accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
  border: 1px dotted blue;
}

/* hover style just for information */
label:hover:before {
  border: 1px solid #4778d9!important;
}
