@charset "utf-8";
/* CSS Document */

.quiz-contaner {
	display: flex;
	flex-direction: column;
	/*gap: 10px;*/
	max-height: 95vh;
	overflow: hidden;
	height:auto;
	position: relative;
	padding-bottom: 40px;
	padding-top: 40px;
	padding-left: 50px;
	padding-right: 50px;
}

.quiz-contaner .quizblock {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.quizbox {
  width: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.75, 0, 0.25, 1);
	font-family: var(--font-stats);
	background: rgba(0, 0, 0, 0) linear-gradient(to top, rgba(164, 229, 111, 0.3), rgba(164, 229, 111, 0.1));
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}

.quizbox.shifted {
  opacity:1;
  animation: 0.07s flicker;
  animation-iteration-count: 3;
}

.quizline {
  display: flex;
  width: 100%;
  position: relative;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
  text-decoration: none;
  flex-direction: row;	
	background: rgba(0, 0, 0, 0) linear-gradient(to top, rgba(164, 229, 111, 0.23), rgba(164, 229, 111, 0.15));  
	justify-content: space-between;
	align-content: center;
  align-items: center;
}

.fatequiz {
  animation: 0.07s flicker;
  animation-iteration-count: 3;
	animation-delay: 5s;
}

.quizbox-text {
  display: flex;
  align-content: center;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 24px;
  font-size: 18px;
  text-align: center;
  padding: 8px 20px;
  position: relative;
  text-shadow: 0px 0px 7px rgb(144, 242, 0);
  font-weight: 500;
  width: 100%;
  flex: 0 0 100%;
  justify-content: center;
}

.answerbox {
  position: relative;
  width: 100%;
  display: flex;
  flex: 0 1 100%;
  clear: both;
  padding: 10px;
  align-content: center;
  justify-content: space-between;
  gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}

.quiz-answer {
  display: flex;
  position: relative;
  font-weight: 500;
  text-decoration: none;
	flex-direction: column;
	gap: 5px;
	flex: 1 0 30%;
	font-size: 16px;
	padding: 5px;
}

.quiz-answer.chosen {
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
  background: rgba(0, 0, 0, 0) linear-gradient(to top, rgba(164, 229, 111, 0.23), rgba(164, 229, 111, 0.15));
	box-shadow: 0px 0px 10px 5px rgba(145, 225, 90, 0.25) inset;
	color: #c2f929;
}

.answer-card {
  display: flex;
  width: 100%;
  position: relative;
  justify-content: center;
  font-size: 12px;
  color: #a5cc3b;
	flex-wrap: wrap;
}


@media only screen and (max-width: 575px) {

	.quiz-contaner {		
		padding-bottom: 50px;
		padding-top: 50px;
		padding-left: 30px;
		padding-right: 5px;
	}
	
	.quiz-contaner .listheader {
		justify-content: center;
	}
	
	.quiz-contaner .listheader:first-child {
		padding-top: 0;
	}
	
	.quizbox-text {
		line-height: 19px;
		font-size: 13px;
		font-weight: 600;
		padding: 10px 20px;
	}

}