button:focus{
	outline: 0;
}

input:focus{
	outline: 0;
}

select:focus{
	outline: 0;
}

button.submitButton{
	display: inline-block;
	width: 15em;
	height: 15em;
	padding: 0.8em 0;
	box-sizing: border-box;
	text-decoration: none;
	margin-top: 2em;
	text-align: center;
	cursor: pointer;

	background-color: rgba(0,0,0,0);
	color: #000000;
	border: 0.1em solid #000000;
	border-radius: 100%;

	-webkit-transition: all 0.2s;
	-moz-transition: 	all 0.2s;
	-ms-transition: 	all 0.2s;
	-o-transition: 		all 0.2s;
	transition: 		all 0.2s;	
}

input[type=button].submitButton, input[type=submit].submitButton, input[type=reset].submitButton{
	display: inline-block;
	width: 20em;
	padding: 0.8em 0;
	margin: 2em;
	box-sizing: border-box;
	text-decoration: none;
	cursor: pointer;

	text-align: center;

	background-color: rgba(0,0,0,0);
	color: #000000;
	border: 0.1em solid #000000;
	border-radius: 0.12em;

	-webkit-transition: all 0.2s;
	-moz-transition: 	all 0.2s;
	-ms-transition: 	all 0.2s;
	-o-transition: 		all 0.2s;
	transition: 		all 0.2s;
}

input[type=button].submitButton:hover, input[type=submit].submitButton:hover, input[type=reset].submitButton:hover, button.submitButton:hover{
	color: #207f46;
	background-color: #39e47e;
	border-color: #207f46;
}

input[type=text]{
	padding: 0.2em 2em 0.2em 1em;
	margin: 1em;
    box-sizing: border-box;
    border: 0.1em solid #000000;
    border-radius: 0.12em;
  	background-color: rgba(0,0,0,0);
    color: black;
}

label{
	font-size: 1.5em;
}

table {
    border-collapse: collapse;
    width: 80%;
    margin-left: 50%;
    transform: translate(-50%);
}

th, td {
    text-align: left;
    padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2}

th {
    background-color: #e43939;
    color: #7f2020;
}

.radioWrap{
	width: 100%;
	display: flex;
	justify-content: center;
}
.radioWrap div{
	margin: 0;
}
.switch {
  border: 3px solid black;
  display: inline-block;
  padding: 10px;
  position: relative;
  text-align: center;
  transition: background 600ms ease, color 600ms ease;
}
input[type="radio"].toggle {
  display: none;
}
input[type="radio"].toggle + label {
  cursor: pointer;
  min-width: 60px;
}
input[type="radio"].toggle + label:hover {
  background: none;
  /*color: #fff;*/
}
input[type="radio"].toggle + label:after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  transition: left 200ms cubic-bezier(0.77, 0, 0.175, 1);
  width: 100%;
  z-index: -1;
}
input[type="radio"].toggle.toggle-left + label {
  border-right: 0;
}
input[type="radio"].toggle.toggle-left + label:after {
  left: 100%;
}
input[type="radio"].toggle.toggle-right + label {
  margin-left: -5px;
}
input[type="radio"].toggle.toggle-right + label:after {
  left: -100%;
}
input[type="radio"].toggle:checked.toggle-left + label {
  cursor: default;
  color: #fff;
  background: #e43939;
  transition: color 200ms;
}
input[type="radio"].toggle:checked.toggle-right + label {
  cursor: default;
  color: #fff;
  background: #39d0e4;
  transition: color 200ms;
}
input[type="radio"].toggle:checked + label:after {
  left: 0;
}