body {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none;
	/* Non-prefixed version, currently
									 supported by Chrome, Opera and Firefox */
}

p {
	font-size: 14px;
}

.lds-ripple {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}
.lds-ripple div {
	position: absolute;
	border: 4px solid #646c9a;
	opacity: 1;
	border-radius: 50%;
	animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
	animation-delay: -0.5s;
}
@keyframes lds-ripple {
	0% {
		top: 36px;
		left: 36px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: 0px;
		left: 0px;
		width: 72px;
		height: 72px;
		opacity: 0;
	}
}

.lds-heart {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
	transform: rotate(45deg);
	transform-origin: 40px 40px;
}
.lds-heart div {
	top: 32px;
	left: 32px;
	position: absolute;
	width: 32px;
	height: 32px;
	background: #646c9a;
	animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
.lds-heart div:after,
.lds-heart div:before {
	content: " ";
	position: absolute;
	display: block;
	width: 32px;
	height: 32px;
	background: #646c9a;
}
.lds-heart div:before {
	left: -24px;
	border-radius: 50% 0 0 50%;
}
.lds-heart div:after {
	top: -24px;
	border-radius: 50% 50% 0 0;
}
@keyframes lds-heart {
	0% {
		transform: scale(0.95);
	}
	5% {
		transform: scale(1.1);
	}
	39% {
		transform: scale(0.85);
	}
	45% {
		transform: scale(1);
	}
	60% {
		transform: scale(0.95);
	}
	100% {
		transform: scale(0.9);
	}
}


#background-counter {
	position: absolute;
	width: 100%;
	height: 20px;
	background: #ddd;
}

.question-text {
	margin: 4px 20px 4px 20px;
	font-size: 20px;
	vertical-align: middle;
}

.quiz-page {
	text-align: center;
}

.quiz-page-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
}

.btn-answer {
	margin: 0 15% 16px 15%;
	background: #efefef;
	border: 1px solid #666;
	/*font-size: 22px;*/
}

.btn-answer-selected {
	background: #5867dd;
	color: #fff !important;
	border: unset;
}

#page-loading {
	position: relative;
}




#page-scores-table {
	width: 100%;
}

#page-scores-table tbody {
	font-size: 18px;
}

#page-scores-table tbody tr td:first-child {
	width: 15%;
}

#page-scores-table tbody tr td:last-child {
	width: 15%;
}


.question-image {
	max-width: 90%;
}

.ctrl-answer {
	text-align: center;
}



.btn-buzz {
	margin-top: 28px;
	display: inline-block;
	text-decoration: none;
	background: #5867dd;
	color: #FFF;
	width: 200px;
	height: 200px;
	line-height: 200px;
	border-radius: 50%;
	text-align: center;
	font-weight: bold;
	vertical-align: middle;
	font-size: 48px;
	overflow: hidden;
	box-shadow: 0px 2px 2px rgba(88, 103, 221, 0.29);
	border-bottom: solid 3px #3c499c;
	transition: .1s;
}

.btn-buzz:active{
	-ms-transform: translateY(2px);
	-webkit-transform: translateY(2px);
	transform: translateY(2px);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
	border-bottom: none;
}
