*
{
		margin:0px;
		box-sizing: border-box;
		transition:all 0.15s ease;
		user-select: none;
}

html,body
{
  width:100vw;
  height:100vh;
  /*display:grid;
  place-items:center;*/
/*   background:linear-gradient(#223,#778); */
  background:#000;
  user-select:none;
   font-family:"Concert One";

  font-size:20px;
  color:#fff;
  margin:0px;
  overflow: hidden;
}

.container 
{
  width:100%;
  height:100%;
/*  background:radial-gradient(#f00,#400);*/
/*   border:2px dashed rgba(255,255,255,0.1); */
		background:radial-gradient(#0ff,blue);
/*			padding:20px;*/

/*	border:2px dashed black;*/
	
/*	color:purple;*/
	text-align:left;
	backdrop-filter: blur(5px);
	
  
}
#app
{
 /*	display:grid;
  	place-items:center;*/
  	width:100vw;
  	height:100vh;
  	overflow-y:auto;
}

.screen
{
	display:grid;
	grid-template-columns: 1fr;
	place-items: center;
	place-content: center;
	min-width:100vw;
	min-height:100%;
	padding:20px 30px;
	padding-top:100px;
}
.loading
{
	display:grid;
	place-items: center;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #159;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #fd0;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: oragne;
}


h1,h2,h3,h4,h5,h6,a
{
/*	font-family: 'Doppio One', sans-serif;*/
/*	font-family: 'Passion One', sans-serif;*/
}

h1
{
	font-size:24px;
}


.btn
{
	cursor: pointer;
	text-decoration: none;
	background:#df0;
	color:#9a0;
	border:30px;
	box-shadow:0px 0px 5px rgba(0,0,0,0.3),
					  inset 10px 5px 10px rgba(255,255,0,0.3),
					  inset -5px -2px 10px rgba(0,0,0,0.3),
					  inset 1px 1px 0px rgba(255,255,255,0.8),
					  0px 0px 1px 1px rgba(255,255,0,0.5);
	padding:0px 20px;
	border-radius:30px;
	display:grid;
	place-items: center;
	margin:20px auto;
	font-size:24px;
	font-weigth:bold;
	max-height:40px;
	line-height: 40px;
}

.btn:hover
{
	transform:scale(1.2);
}
.btn:active
{
box-shadow:0px 0px 5px rgba(0,0,0,0),
					  inset 10px 5px 10px rgba(255,255,0,0),
					  inset -5px -2px 10px rgba(0,0,0,0),
					  inset 1px 1px 0px rgba(255,255,255,0),
					  0px 0px 1px 1px rgba(255,255,0,0.3),
					  inset 10px 5px 10px rgba(0,0,0,0.5);
}

a
{
	text-decoration: none;
	color:inherit;
}
.btn img
{
	pointer-events: none;
	width:30px;
/*	filter:invert();*/
	opacity:0.3;
}
.card
{
	border:1px solid rgba(255,255,255,1);
	padding:20px;
	text-align:center;
/*	display:grid;*/
	border-radius:10px;
	background:rgba(255,255,255,1);
	color:#9a0;
	box-shadow:0px 0px 0px rgba(0,0,0,0);
	position: relative;
	overflow: hidden;
	min-width:200px;
	max-width:380px;
}

.card:hover
{
	transform: translateY(-8px);
	box-shadow:0px 30px 20px rgba(0,0,0,0.5);
}	

.quiz-card
{
	display:grid;
	grid-template-columns: 30% 70%;
	grid-template-row: 1fr auto;
}

.quiz-card img
{
 		width:100%;
 		grid-row: 1/3;

 		object-fit: contain;
}







.locked-card:after
{ 
 content:"";
 position:absolute;
 background:rgba(0,0,0,0.5);
 height:100%;
 width:100%;
 z-index:2;
}




/*-------------------------------------------------------------------
//		Quiz Suggestion style here
//-------------------------------------------------------------------*/

.quiz-game-container
{
	position:relative;
/*	min-height:300px;*/
	width:100%;
	margin-bottom:20px;
}
.quiz-game-container .question-card
{
	
	width:100%;
	min-height:50vh;
	display:flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap:20px;
/*	background: #fff;*/
	padding:20px;
	background:radial-gradient(circle,rgba(255,255,255,1) 50%,transparent );
	border-radius:20px;
/*	box-shadow:0px 5px 10px rgba(0,0,0,0.3);*/
	color:#126;
	position: relative;
}
.question-overlay
{
	position:absolute;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0);
	top:0px;
	left:0px;
}
.quiz-options-container
{
	display:grid;
	grid-template-columns: repeat(2, 1fr);
	gap:30px;
	font-weight:bold;
	width:100%;

}

.quiz-options-container .option
{
	cursor: pointer;
	display:grid;
	place-items: center;
	box-shadow: 0px 5px 10px rgba(0,0,0,0.3);
	padding:15px;
	border:2px solid rgba(255,255,255,0.8);
/*	border-radius:10px;*/
	text-align: center;
	background:#fff;
	transform: skewX(-10deg);

}

@media screen and (min-width:500px)
{
	.quiz-options-container .option:hover
	{
		background:#fd0;
		color:#000;
	}
}


.selected-option
{
	background:#fd0;
	color:#000;
}

.correct-answer
{
	background:green !important;
	color:#fff;
}

.wrong-answer
{
	background:#a00 !important;
	color:#fff;
}





.quiz-suggestion-container
{
	display: flex;
	flex-wrap:wrap;
	gap:20px;
	margin: 10px 0px;
	justify-content: center;
}

#quiz-navigation
{	
	
	bottom:0px;
	color:#fff;
	display:flex;
	width:100%;
	justify-content: space-between;
	align-items: center;
	background: #159;
	color:#fff;
	transform: skewX(-10deg);
	font-size:40px;
}
#quiz-navigation>*
{
	flex-grow:1;
	text-align: center;
}
#quiz-navigation>*:hover
{
	background:#fd0;
	color:#126;
}

#quiz-navigation>*:hover img
{
	filter:invert(0);
}
#quiz-navigation>#stop-btn
{
		flex-grow: 2;
		box-shadow:5px 0px 10px rgba(0,0,0,0.6),-5px 0px 10px rgba(0,0,0,0.6);
		height:100%;
}
#quiz-navigation>* img
{
	max-width:30px;
	filter:invert();
	pointer-events: none;
}
#quiz-pagination
{
	display:flex;
	flex-wrap:wrap;
	gap:5px;
	margin-bottom:30px;
	justify-content: center;
}

.question-number-link
{
	cursor:pointer;
	background:#fff;
	color:#125;
	border-radius:30px;
	padding:5px 40px;
	font-size:20;
	display:grid;
	place-items: center;
	display: none;
}

#quiz-pagination .question-number-link:hover
{
	background:#fd0;
}

.active-question-number
{
	background:#fd0;
	color:#000;
	display: grid;
}

/*User IQ Indicator Style*/

#user-iq-indicator
{
/*	border:2px solid black;*/
width:90%;
margin:0px auto;
margin-bottom:20px;
position: relative;
}

#iq-progress
{
	width:0%;
	background:linear-gradient(to right, #fff,#fff);
	height:20px;
	border-radius:20px;
	position: relative;
	z-index: 999;
}


#iq-progress img#brain-icon
{
	width:50px;
	
	padding:0px;
	position:absolute;
	top:-15px;
	right:-15px;
	border-radius:50%;
}

#min-score
{
	position:absolute;
	left:-20px;
	top:0px;

}

#max-score-container
{
	position:absolute;
	right:-20px;
	top:0px;
	display: flex;
	align-items: center;
	gap:5px;
}

.sm-icon
{
	width:20px;
}

#winner-celebration
{
	position: absolute;
	z-index:999;
	width:50%;
	left:25%;
	display: none;
}


/*------------------------------------------------------------------- 
|		Rotating wheel style
--------------------------------------------------------------------*/

.game-action
{
  display:grid;
  place-items:center;
  height:100px;
  width:100px;
  position:relative;
  transform:scale(1.1) translateY(-25px);
 
}

.game-action .start-btn 
{
  border-radius:50%;
  position:absolute;
  display:grid;
  place-items:center;
  width:100%;
  height:100%;
  font-family:"Faster One";
  font-size:40px;
  box-shadow:0px 0px 0px rgba(255,255,0,0),0px 0px 50px 50px rgba(255,0,0,0);
/*   animation:pulse 5s infinite ease-in-out; */
  
}
.rotating-wheel
{
  width:100px;
  height:100px;
/*   background:#fff; */
  border-radius:50%;
}
.rotating-wheel>*
{
   position:absolute;
   width: 100%;
   height :100%;
/*    background:yellow; */
   display:grid;
   place-items:center;
   font-size:30px;
   color: #159;
   font-family:"Concert One";
/*     font-family:"Tilt Prism"; */
}


/*------------------------------------------------------------------- 
|		Test
--------------------------------------------------------------------*/


.app-header
{
  position:absolute;
  padding:10px 20px;
/*  background:rgba(0,0,0,0.1);*/
  top:0px;
  left:0px;
  z-index:1;
  width:100%;
 
}


.prev-btn
{
  opacity:0;
}


@media screen and (min-width:400px)
{
 #app
  {
/*    padding:10px;*/
  }
  
    .container 
    {
      
/*       width:380px; */
/*      height:100%;*/
    }
 }





.game-action
{
  display:grid;
  place-items:center;
  height:100px;
  width:100px;
  position:relative;
  transform:scale(1.1) translateY(-25px);
 
}

.game-action .start-btn 
{
  border-radius:50%;
  position:absolute;
  display:grid;
  place-items:center;
  width:100%;
  height:100%;
  font-family:"Faster One";
  background:#000;
  font-size:40px;
  box-shadow:0px 0px 0px rgba(255,255,0,0),0px 0px 50px 50px rgba(255,255,255,0);
/*   animation:pulse 5s infinite ease-in-out; */
  
}
.start-btn  .btn-icon
{
  position:absolute;
  z-index:99;
  width:30px;
  bottom:5px;
}
.start-btn .btn-text
{
	font-family: inherit;
  text-decoration: none;
  margin-left:-30px;
  background:linear-gradient(to right,transparent,#8a0,transparent);
  color:#fff;
  text-shadow:-10px 0px 15px 5px rgba(255,255,0,0.6); 
  z-index:100;
}


@keyframes pulse
{
  0%
  {
     background:orange;
     transform:scale(0.9);
     box-shadow:0px 0px 10px rgba(0,0,0,0.3);
  }
  50%
  {
    background:rgba(180,255,0,0.9);
    transform:scale(2);
    box-shadow:0px 0px 50px rgba(155,255,0,1);
     
  }
  100%
  {
    background:orange;
    transform:scale(0.9);
   box-shadow:0px 0px 10px rgba(0,0,0,0.3);
  }
}
.rotating-wheel
{
  width:100px;
  height:100px;
/*   background:#fff; */
  border-radius:50%;
}
.rotating-wheel>*
{
   position:absolute;
   width: 100%;
   height :100%;
/*    background:yellow; */
   display:grid;
   place-items:center;
   font-size:30px;
   color: #fff;
   font-family:"Concert One";
/*     font-family:"Tilt Prism"; */
}





/*------------------------------------------------------------------- 
|		Different Animations here
--------------------------------------------------------------------*/
.clouds-animation-container
{
	position:absolute;
	width:100%;
/*	background:red;*/
	height:150px;
	top:0px;
	left:0px;
	pointer-events: none;
}
.clouds-container
{
	height:100px;
	position: absolute;
/*	background:blue;*/
	width:100%;
	top:0px;
	left:0px;
}

.clouds-container img
{
	filter:drop-shadow(0px 10px 10px rgba(0,0,0,0.3));
	position:absolute;
	width:80px;
	

}

.clouds-container img:nth-child(1)
{
	top:0px;
	animation:clouds-animation 20s infinite linear;
}

.clouds-container img:nth-child(2)
{
	top:30px;
	animation:clouds-animation 15s infinite linear;
}

@keyframes clouds-animation
{
		0%
		{
			right:-50%;
		}
		100%
		{
			right:150%;
		}
}


/*------------------------------------------------------------------- 
|		Level Stats
--------------------------------------------------------------------*/

.stats
{
	display:flex;
	justify-content: end;
	gap:5px;
/*	background: red;*/
}

.hide-stats
{
	margin-top:-100px;
}
img.user-profile-pic-sm
{
	max-width:50px;
	border-radius:50%;
	object-fit: contain;
}
.level-stats
{
	display:grid;
	grid-template-columns: 1fr auto;
	background:rgba(0,0,50,0.2);
	padding:5px 15px;
	transform: skewX(-10deg);
	column-gap: 10px;
}
.level-stats>*
{
	transform: skewX(10deg);
}

.coin-stats
{
	display: flex;
	align-items: center;
	background:rgba(0,0,50,0.2);
	padding:5px 15px;
	transform: skewX(-10deg);
	gap:10px;
}
.level-stats .user-profile-pic-sm
{
		grid-row:1/3;
		grid-column:2/3;
}

.category-suggestion-container
{
	margin-top:20px;
	display: flex;
	flex-wrap: wrap;
/*	align-items: start;*/
	gap:10px;
}
.category-card
{
	max-width:200px;
	display: flex;
	flex-direction: column;
}
.category-title
{
	flex-grow: 1;
}
.category-card .btn
{
	align-self: end;
}
.category-card img
{
	max-width:100%;
	min-width:100%;
}


/*------------------------------------------------------------------- 
|		Form styles here
--------------------------------------------------------------------*/

.form-container
{
	box-shadow:0px 5px 20px rgba(0,0,0,0.3);
	padding:30px;
	background:rgba(0,0,0,0.6);
	backdrop-filter: blur(10px);
	border-radius:10px;
}
.form-container form
{
	display: flex;
	flex-direction: column;
	gap:10px;
}
.input-field
{
	display: flex;
	gap:10px;
}

.input-field input
{
	flex-grow:1;
	border-radius:5px;
	padding:5px 10px;
	outline: none;
	border:none;
	font-size:20px;
	font-family:"Concert One";

	-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
 button
 {
    -webkit-appearance: none;
 }
.form-container form button
{
	align-self: center;
}