/*** PRIMARY STYLES ***/
/*** Styles for various screen sizes are in styles2.css ***/
/*** Styles for ads are in styles.php ***/

/*** Quiz By Subject ***/
.quizbtn, .quizmenu {
	width: 80% !important;
	overflow: none;
	padding: 0px !important;
	/* height: 50px; ***  SET IN styles2.css  *** */
	margin: 0 auto;
}
.quizbtn li {
	float: left;
	list-style: none !important;
	display: flex;
	align-items: center;
	position: relative;
	text-align: center;
	background-color: #dabf90;
	border: 1px solid #3c3324;/* bbb */
	border-radius: 12px;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
}
.quizbtn li a {
	color: black;
	background-color: transparent;
	justify-content: center;
	padding: 5px 5px;
	display: flex;
	align-items: center;
	text-decoration: none;
	width: 100%;
	height: inherit;
	font-size: 24px;
	font-weight: bold;
	transition: 0.3s;
}
.quizbtn li a:hover{
	background-color: #877557;/* 5e0080 */
	height: inherit;
	color: white;
	display: flex !important;
	justify-content: center;
	align-items: center !important;
	position: relative;
	border: 1px solid #3c3324;/* bbb */
	border-radius: 12px;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
}
.biblebtn {
	color: #333;
	background-color: #dabf90 !important;/* #f7dff7 */
	border: 1px solid #3c3324;/* 333 */
	border-radius: 4px;
	padding: 6px 12px;
	/* margin-top: 15px; */
	margin: 15px 6px 0 6px;
	font-weight: 600;
	line-height: 2;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	font-size: 1.4em;
	text-decoration: none;
}


/* 
SET IN styles2.css:

.quizbtnmain li {
	width: 45%;
	height: 200px;
	margin: 2%;
}
.quizbtnsub li {
	width: 31%;
	height: 80px;
	margin: 1%;
}
 */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
a {
	text-decoration: none;
}
ul {
	list-style-type: none;
}
h1 {
	margin: 1% auto;
}
.radio-section {
	display: flex;
	align-items: center;
	justify-content: center;
	/* height: 100vh; */
}
.radio-item [type="radio"] {
	display: none;
}
.radio-item label {
	display: block;
	background: #dabf90;/* dfcfcf */
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	font-size: 1.1em;
	font-weight: bold;
	/* 
	***  SET IN styles2.css  ***
	min-width: 250px;
	padding: 20px 60px;
	*/
	/* white-space: nowrap; */
	position: relative;
	transition: 0.4s ease-in-out 0s;
}
.radio-item label:after,
.radio-item label:before {
	content: "";
	position: absolute;
	border-radius: 50%;
}
.radio-item label:after {
	height: 19px;
	width: 19px;
	border: 2px solid #3c3324;/* #524eee */
	left: 19px;
	top: calc(50% - 12px);
}
.radio-item label:before {
	background: #3c3324;/* #524eee */
	height: 20px;
	width: 20px;
	left: 21px;
	top: calc(50%-5px);
	transform: scale(5);
	opacity: 0;
	visibility: hidden;
	transition: 0.4s ease-in-out 0s;
}
.radio-item [type="radio"]:checked ~ label {
	border-color: #3c3324;/* #524eee */
}
.radio-item [type="radio"]:checked ~ label::before {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}
.quizScore {
	font-size: 1.8em;
	color: #0000dd;
}
.BSQright {
	display: none;
	width: 60%;
	margin: 4% auto 0 auto;
	font-size: 1.2em;
	color: green;
	font-weight: bold;
	padding: 1%;
}
.BSQwrong {
	display: none;
	width: 60%;
	margin: 4% auto 0 auto;
	font-size: 1.2em;
	color: red;
	font-weight: bold;
	padding: 1%;
}
.BSQanswer {
	display: none;
	width: 60%;
	margin: 0 auto;
	font-size: 1.2em;
	font-style: italic;
	padding: 1%;
}
