html {
	/* this is necessary for keeping the established background color when going into full screen mode*/
	background-color: #2b3e50;
}

.navbar-header {
	font-weight: bold;
}

.navbar-nav li a {
	font-size: 14px;
	font-weight: bold;
}

label, th, td {
	font-size: 14px;
}

.table>thead:first-child>tr:first-child>th {
	border-bottom: 1px solid #4E5D6C;
}

.element img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 80%;
}

.darker-background {
	background-color: #253443;
	color: #FFFFFF;
}

.lighter-background {
	background-color: #627588;
	color: #FFFFFF;
}

.next-background, .complete-background { /* GREEN */
	background-color: #619A39;
	color: #FFFFFF;
}

.error-background {
	background-color: #7A2727;
	color: #FFFFFF;
}

.alert-background {
	background-color: #D42424;
	color: #FFFFFF;
}

.incomplete-background { /* RED */
	background-color: #D46A6A;
	color: #000000;
}

.unpicked-background { /* YELLOW */
	background-color: #D4D424;
	color: #000000;
}

.clickable {
	cursor: pointer;
}

#pagetransition, #processingtransition {
	opacity: 0.75;
	background-color: #000000;
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
	font-size: 1.5em;
	padding-top: 150px;
	position:fixed;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
	z-index:1000;
}

.sectionbuttonlabel {
	border-top: 1px solid #2b3e50;
	text-align: center;
	font-weight: bold;
	font-size: 4vw;
	height: 70px;
	padding-left: 0px;
	padding-right: 0px;
}

/* -------------------------------------------------------------- Switch element */

.switch {
	position: relative;
	display: block;
	width: 60px;
	height: 34px;
}

.switch input {
	display:none;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #4E5D6C;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
	background-color: #5CB85C;
}

input:focus + .slider {
	box-shadow: 0 0 1px #5CB85C;
}

input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}


/* -------------------------------------------------------------- Small Switch element */

.smallswitch {
	position: relative;
	display: block;
	width: 48px;
	height: 28px;
}

.smallswitch input {
	display:none;
}

.smallslider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #4E5D6C;
	-webkit-transition: .4s;
	transition: .4s;
}

.smallslider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .smallslider {
	background-color: #5CB85C;
}

input:focus + .smallslider {
	box-shadow: 0 0 1px #5CB85C;
}

input:checked + .smallslider:before {
	-webkit-transform: translateX(20px);
	-ms-transform: translateX(20px);
	transform: translateX(20px);
}

.smallslider.round {
	border-radius: 28px;
}

.smallslider.round:before {
	border-radius: 50%;
}