* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
	font-size: 16px;

}

body {
	font-size: 1rem;
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	line-height: 1.5em;
	background: #e1e4e5;
}

p {
	margin-bottom: 20px;
}

a {
	color: #00979e;
	text-decoration: none;
}

header {
	display: block;
	text-align: center;
	padding: 20px;
	background: #00979e;
	color: #fff;
}

header h1 {
	font-size: 1.6rem;
	margin: 0;
}


header nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	margin-top: 10px;
	justify-content: space-around;
}

header nav ul li {
    margin-right: 10px;
    border: 1px solid #e1e1e1;
    padding: 0 10px;
}

header nav ul li a {
	color: #fff;
}
.goback {
    cursor: pointer;
    position: absolute;
    top: 100px;
    color: #ffffff;
    border: none;
    background: #ff5959;
    padding: 5px;
}

main {
	margin: 30px 0;
	background: #fff;
	padding: 20px;
}

.test-title,
.title {
	font-size: 1.4rem;
	margin-bottom: 20px;
	text-align: center;
}

.test-title {
	border-bottom: 1px solid #ede7e7;
	padding-bottom: 10px;
}

.sub-heading {
    font-size: 1.1rem;
    margin: 20px 0;
    color: #0c686d;
    display: block;
    border-top: 1px solid #e1e4e5;
    padding-top: 15px;
}

.option {
	display: block;
	margin: 0.8em 0.5em;
	cursor: pointer;
}

#timer {
    font-size: 1.2rem;
    margin-bottom: 20px;
    background: #7c7cff;
    color: #fff;
    padding: 10px;
    float: right;
    border-radius: 2px;
    position: sticky;
    top: 20px;
    font-weight: 700;
}

input[type="radio"] {
	margin-right: 5px;
	cursor: pointer;
}

.question p {
	font-weight: 600;
}

.question {
    margin: 20px 0;
}

.question p:first-letter {
    color: #00979e;
    margin-right: -3px;
    font-size: 20px;
    font-weight: 500;
}

#submit {
	padding: 10px 20px;
	margin-top: 20px;
	font-size: 1rem;
	background: #00979e;
	color: #fff;
	border: 1px Solid #727171;
	cursor: pointer;
}

#results {
	margin-top: 20px;
}

#totalresult {
	background: #76dfd9;
	padding: 15px;
	font-size: 1.3rem;
	font-weight: 600;
	border-radius: 5px;
}

#shareBtnId {
	padding: 10px 20px;
	margin-top: 20px;
	color: #fff;
	background: #30b135;
	font-size: 1rem;
	cursor: pointer;
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	grid-gap: 10px;
}

.grid-item {
    background-color: #ddd;
    padding: 12px;
    text-align: center;
    border: 1px solid #b9b9b9;
}

.grid-item a {
	color: #333;
	text-decoration: none;
	font-weight: 600;
	padding: 10px;
}

.grid-item:active {
    background: #00979e;
}

.grid-item a:active {
    color:#fff;
}

#adszfixmob {
    display: none;
    position: fixed;
    top: 0;
    margin: auto;
}

.above-footer {
    background: #fff;
    padding: 10px;
    margin-bottom: 20px;
}

#scroll-to-top {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99;
	font-size: 16px;
	border: none;
	outline: none;
	background-color: #ff5959;
	color: white;
	cursor: pointer;
	padding: 10px;
	border-radius: 5px;
}

#scroll-to-top:hover {
	background-color: #333;
}

footer {
	text-align: center;
	padding: 1rem;
	background: #fff;
}

footer p {
	margin: 0;
}

.grid-container .grid-item:nth-child(n+10) {
    pointer-events: none;
    opacity: 0.3;
    cursor: default;
}

.above-footer .grid-item:nth-child(n+3){
    pointer-events: none;
    opacity: 0.3;
    cursor: default;
}

.above-footer .grid-item:nth-child(4) {
    pointer-events: auto;
    opacity: 1;
    cursor: pointer;
}

.above-footer .grid-item:nth-child(2) {
    pointer-events: auto;
    opacity: 1;
    cursor: pointer;
}

.above-footer .grid-item:nth-child(8) {
    pointer-events: auto;
    opacity: 1;
    cursor: pointer;
}

.above-footer .grid-item:nth-child(10) {
    pointer-events: auto;
    opacity: 1;
    cursor: pointer;
}

#share-button {
    position: fixed;
    bottom: 120px;
    right: 10px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    background: url(../shareico.webp) center center/30px no-repeat #fff;
    cursor: pointer;
    border: 1px solid #ebe7e7;
    border-radius: 25px;
    text-decoration: none;
    transition: .1s ease-out;
}

.cf-lst-page .nex-prv {
    display: none;
}

.nex-prv {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.nex-prv a {
    background: #ffffff;
    padding: 5px 20px;
    font-weight: 700;
    border: 1px solid #bfbfbf;
}

@media only screen and (max-width: 600px) {
	#timer {
		text-align: center;
		float: none;
		top: 0px;
	}
	#adszfixmob {
    display: block;
	}
}