
/* --------------------------------START OPTION BUTTON STYLE------------------------------------------ */

@media screen and (min-width: 992px) {
.registration-show-mobile {
	display: none;
}
}
h2 {
	color: #18191b;
	margin-bottom: 2rem;
}
.section1 {
	display: flex;
	flex-flow: row wrap;
}
.section1> div {
	flex: 1;
	padding: 0.5rem;
}
input[type="radio"] {
	display: none;
}
input[type="radio"]:not(:disabled)~ .label1 {
	cursor: pointer;
}
input[type="radio"]:disabled~ .label1 {
	color: #bcc2bf;
	border-color: #bcc2bf;
	box-shadow: none;
	cursor: not-allowed;
}
.label1 {
	height: 250px;
	display: block;
	background: white;
	border: 2px solid #0A68B5;
	border-radius: 20px;
	padding: 1em;
	margin-bottom: 1em;
	text-align: center;
	/*box-shadow: 0px 3px 10px -2px rgba(161, 170, 166, 0.5);*/
	position: relative;
}
input[type="radio"]:checked+ .label1 {
	background: #ffcc00;
	/*background: #20df80;*/
	color: white;/*box-shadow: 0px 0px 20px rgba(0, 255, 128, 0.75);*/
}
input[type="radio"]:checked+ .label1::after {
	color: #00CC3D;
	font-family: FontAwesome;
	border: 2px solid #0A68B5;
	content: "\f00c";
	font-size: 24px;
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	height: 50px;
	width: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	background: white;/*box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.25);*/
}
input[type="radio"]#control_05:checked+ .label1 {
	background: red;
	border-color: red;
}

@media only screen and (max-width: 700px) {
section {
	flex-direction: column;
}
}

/* --------------------------------END OPTION BUTTON STYLE------------------------------------------ */
	/* --------------------------------START STYLE OF FORM------------------------------------------ */

@media only screen and (max-width: 921px) {
.form-margin {
	margin-right: 10px;
	margin-left: 10px;
	padding-right: 0px;
	padding-left: 0px;
}
}

#regForm {
	margin: 20px auto;
}
@media only screen and (min-width: 922px) {
	#regForm {
		background-color: #ffffff;
		margin: 40px auto;
		padding: 40px;
		width: 70%;
		min-width: 300px;
	}
}

@media only screen and (max-width: 921px) {
	#regForm {
		background-color: #ffffff;
		margin-right: 10px;
		margin-left: 10px;
		padding-bottom: 70px;
		padding-right: 15px;
		padding-left: 0px;
		width: 100%;
		min-width: 300px;
	}
}
/* Style the input fields */

input {
	padding: 10px;
	width: 100%;
	font-size: 17px;
	font-family: Roboto;
	border: 1px solid #aaaaaa;
	border-radius: 7px;
	/* color: #dddddd; */
	color:black;
	outline: none;
}
/* Mark input boxes that gets an error on validation: */

input.invalid {
	background-color: #ffdddd;
}
select {
	padding: 10px;
	width: 100%;
	font-size: 17px;
	font-family: Roboto;
	border: 1px solid #aaaaaa;
	border-radius: 7px;
	color: #777777;
	/* color:black; */
	background-color: #ffffff;
	outline: none;
}
/* Mark input boxes that gets an error on validation: */

select.invalid {
	background-color: #ffdddd;
}
/* Hide all steps by default: */

.tab {
	display: none;
}
/* Make circles that indicate the steps of the form: */

.step {
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbbbbb;
	border: none;
	border-radius: 50%;
	display: inline-block;
	opacity: 1;

}
/* Mark the active step: */

.step.active {
	opacity: 1;
	background-color: #0A68B5;
}
/* Mark the steps that are finished and valid: */

.step.finish {
	background-color: #0A68B5;
}


/* --------------------------------END STYLE OF FORM------------------------------------------ */
	/* --------------------------------MATRIX SUBJECTS GRADES TABLE------------------------------- */
	/* Generic Styling, for Desktops/Laptops */

.tables {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}
/* Zebra striping */

.tr:nth-of-type(odd) {
	background: #eee;
}
.th {
	background: #0A68B5;
	color: white;
	font-weight: bold;
	min-height: 42px
}
.td,  .th {
	padding: 6px;
	border: 1px solid #ccc;
	text-align: left;
	font-size: 1.2em;
	color: #ffffff;
	font-family: Roboto;
	min-height: 42px;
	 font-weight: 100
}
.th-sub {
	background: #0A68B5;
	color: #0A68B5;
	font-weight: bold;
	min-height: 42px
}
.td-sub,  .th-sub {
	padding: 6px;
	border: 1px solid #ccc;
	text-align: left;
	font-size: 1.2em;
	color: #0A68B5;
	font-family: Roboto;
	min-height: 42px;

}

/*
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/

@media only screen and (max-width: 760px),  (min-device-width: 768px) and (max-device-width: 1024px) {
.responsive-table-input-matrix {
	display: block;
	position: relative;
	width: 100%;
}
.responsive-table-input-matrix:after {
	clear: both;
	content: '';
	display: block;
	font-size: 0;
	height: 0;
	visibility: hidden;
}
.responsive-table-input-matrix tbody {
	display: block;
	overflow-x: auto;
	position: relative;
	white-space: nowrap;
	width: auto;
}
.responsive-table-input-matrix tbody tr {
	display: inline-block;
	vertical-align: top;
}
.responsive-table-input-matrix tbody tr td {
	display: block;
	text-align: center;
}
.responsive-table-input-matrix tbody tr td:first-child {
	text-align: left;
}
.responsive-table-input-matrix thead {
	display: block;
	float: left;
	margin-right: 10px;
}
.responsive-table-input-matrix thead:after {
	clear: both;
	content: "";
	display: block;
	font-size: 0;
	height: 0;
	visibility: hidden;
}
.responsive-table-input-matrix thead th:first-of-type {
	height: 1.4em;
}
.responsive-table-input-matrix thead th {
	display: block;
	text-align: right;
}
.responsive-table-input-matrix thead th:first-child {
	text-align: right;
}
}
	/* --------------------------------END MATRIX SUBJECTS GRADES TABLE------------------------------- */
