section table td:last-child {
	width: 380px;
}

/*
 * Switch
 */
#switch {
	display: table;
	margin: auto;
	padding-top: 20px;
}

#switch span {
	display: table-cell;
	vertical-align: middle;
}
#switch span:first-child {
   padding-right: 10px;
}
#switch span:last-child {
   padding-left: 10px;
}

#switch input {
	display: table-cell;
	position: absolute;
	visibility: hidden;
}

#switch input + label {
	display: block;
	position: relative;
	cursor: pointer;
	outline: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	padding: 2px;
	width: 60px;
	height: 30px;
	background-color: #dddddd;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	-ms-border-radius: 60px;
	-o-border-radius: 60px;
	border-radius: 60px;
	-webkit-transition: background 0.4s;
	-moz-transition: background 0.4s;
	-o-transition: background 0.4s;
	transition: background 0.4s;
}
#switch input + label:before,
#switch input + label:after {
	display: block;
	position: absolute;
	content: "";
}
#switch input + label:before {
	top: 2px;
	left: 2px;
	bottom: 2px;
	right: 2px;
	background-color: #fff;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	-ms-border-radius: 60px;
	-o-border-radius: 60px;
	border-radius: 60px;
	-webkit-transition: background 0.4s;
	-moz-transition: background 0.4s;
	-o-transition: background 0.4s;
	transition: background 0.4s;
}
#switch input + label:after {
	top: 4px;
	left: 4px;
	bottom: 4px;
	width: 26px;
	background-color: #dddddd;
	-webkit-border-radius: 52px;
	-moz-border-radius: 52px;
	-ms-border-radius: 52px;
	-o-border-radius: 52px;
	border-radius: 52px;
	-webkit-transition: margin 0.4s, background 0.4s;
	-moz-transition: margin 0.4s, background 0.4s;
	-o-transition: margin 0.4s, background 0.4s;
	transition: margin 0.4s, background 0.4s;
}
#switch input:checked + label {
	background-color: #8ce196;
}
#switch input:checked + label:after {
	margin-left: 30px;
	background-color: #8ce196;
}
