/* Quiz */
/* ==== */
.widget.quiz {
	overflow:hidden;
}

.widget.quiz .quiz_header {
	/* AUSGEBLENDET */
	display:none !important;
}

.widget.quiz .question_box,
.widget.quiz .commercial_box {
	margin: 0 0 72px 0;
}
.widget.quiz .commercial_box {
	position: relative;
	text-align: center;
}

.widget.quiz .question {
	min-height: 88px;
  clear: both;
  position: relative;
  background-color: #f6f6f6;
  color: #222222;
	border: 1px solid #eee;
  border-radius: 0 0 2px 2px;
	counter-reset: answer_numbering;
}

.widget.quiz div.question_box:first-of-type {
	color: green;
}

.widget.quiz .question_box:nth-child(1n+3) .question {
	border-top: 2px solid #f40f97;
	border-radius: 2px 2px 0 0;
}

.widget.quiz .question h5 {
	font-size: 1.8em; /* 18px / 10px */
	line-height: 1.6em;
	padding: 26px 16px 10px;
}

.widget.quiz .question .number {
  background-color: #f40f97;
  color: #ffffff;
  margin-right: 0.3em;
  line-height: 1.4em;
  padding: 0 0.1em;
  min-width: 1.2em;
  display: inline-block;
  text-align: center;
  background-image: url(/media/img/main/icons/icon_fold_grey.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 0.75em 0.75em;
	font-weight: bold;
}

.widget.quiz .question .source {
	position: absolute;
	right: 16px;
  bottom: 16px;
	padding: 5px;
	background: #fff;
	color: #222222;
	font-size:1.2em; /* 12px / 10px */
	line-height: 1.1em;
	text-align:right;
}

.widget.quiz .question .widget.image {
	padding: 16px;
	width: auto;
}

.widget.quiz .question .widget.image .shareholder {
	display: none;
}

.widget.quiz .question .image .shareholder img {
	width: auto !important;
}

.widget.quiz .answer{
	position: relative;
	display: inline-block;
	vertical-align: top;
	box-sizing:border-box;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color:#222222;
	background: #f6f6f6;
	border: 1px solid #eee;
	border-radius: 2px;
}

/*Text Answers*/
.widget.quiz .answer.txt {
	width:100%;
	font-size:1.8em;
	line-height:1.3em;
	margin:10px 0 0 0;
}

.widget.quiz .answer.txt.half:nth-of-type(2n) {
    margin-right: 8px;
    margin-left: 0;
}

.widget.quiz .answer.txt.half {
    width: calc(50% - 8px);
    margin-left: 8px;
}

.widget.quiz .answer.txt span {
	display: block;
	padding-left: 3.2222em !important;
	line-height: 2.2857em;
	padding-right: 0.75em;
	padding: 0.475em 0.75em 0.475em 3.2222em;
	line-height: normal;
}

.widget.quiz .answer.txt span.line {
	 line-height: normal;
	 display: inline-block;
}

@media screen and (max-width: 591px) {
	.widget.quiz .question h5 {
		font-size: 2.2857em;
	}

	.widget.quiz .answer.txt {
		font-size: 2.2857em;
    line-height: 2.2857em;
	}
}

.widget.quiz .answer.txt span::before {
	width: 0.777em;
	margin-right: 0.75em;
  margin-left: 0.75em;
  padding-right: 0.75em;
	counter-increment: answer_numbering;
	content: counter(answer_numbering, upper-alpha);
	border-right: 1px solid #eeeeee;
	color: #999999;
	font-size: 1em;
  font-weight: bold;
	position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display:flex;
  flex-direction:row;
  align-items: center;
  justify-content: center;
}

.widget.quiz .answer.txt span.numbered::before {
	content: counter(answer_numbering);
}

.widget.quiz .answer.txt:not(.select):not(.checked):not(.inactive):hover span:not(.range-value) {
	padding-left: calc(3.2222em - 2px) !important;
	border-left: 2px solid #7BD400;
	height: 100%;

}

/*Image Answers*/
.widget.quiz .answer.img {
	/* width: 49%; */
	padding:0.25em 0.25em 0 0.25em;
	margin: 2% 1% 0 0;
	text-align: center;
	font-size:1.8em; /* 18px / 10px */
	line-height:1.3em;
	width: calc(50% - 8px);
	margin-left: 8px;
}

.widget.quiz .answer.img:nth-of-type(2n) {
    margin-right: 8px;
    margin-left: 0;
}

.widget.quiz .answer.img span {
	display: inline-block;
	padding: 0.5em 0.25em;
}

.widget.quiz .answer.img:nth-child(odd) {
	margin-right:0;
}

.widget.quiz .answer .image {
	position: relative;
}

.widget.quiz .answer.img .image::before {

	height: calc(1.777em - 5px);

	counter-increment: answer_numbering;
	content: counter(answer_numbering, upper-alpha);
	text-align: center;
	border-bottom: 1px solid #eeeeee;
	color: #999999;
	font-size: 1em;
  font-weight: bold;
	display: block;
	margin-bottom: 5px;
}

.widget.quiz .answer.img:not(.select):not(.checked):not(.inactive):hover {
	padding-left: calc(0.25em - 1px) !important;
	border-left: 2px solid #7BD400;
	/* height: 100%; */

}

.widget.quiz .answer .image .source {
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 4px;
	color: #222;
	font-size: 0.444444em; /* 8px / 18px */
	line-height:1.1em;
	background: rgba(255,255,255,0.8);
}

.widget.quiz .answer img {
	height: auto;
	width: 100%;
	display:block;
}

.widget.quiz .answer.inactive {
	opacity: 0.4;
}

.widget.quiz.standard .answer.block span {
	display: block;
}

.widget.quiz.psycho .answer.block span,
.widget.quiz.werbinich .answer.block span {
	margin: 0;
	display: block;
}
.widget.quiz.standard .answer.qq.inactive {
	opacity: 1 !important;
}

.widget.quiz.standard .answer.correct.inactive {
	opacity: 1 !important;
	border-left: 2px solid #6AC300;
	border-radius: 2px;
}

.widget.quiz .answer.block:hover {
	cursor: default;
}

/* user's wrong answer */
/* =================== */

.widget.quiz .answer.txt.select,
.widget.quiz .answer.img.select {
  border-left: 2px solid #E2114C;
	border-radius: 2px;
	height: 100%;
	padding-left: calc(0.25em - 1px) !important;
}

.widget.quiz .answer.txt.select:hover span,
.widget.quiz .answer.img.select:hover {
	text-decoration:none;
	cursor:default;
}

/* other wrong answers */
/* =================== */

.widget.quiz .answer.txt.inactive:hover,
.widget.quiz .answer.img.inactive:hover {
	text-decoration:none;
	cursor:default;
}

/* right answer, but not user's choice */
/* =================================== */

.widget.quiz .answer.txt.correct:hover,
.widget.quiz .answer.img.correct:hover {
	text-decoration:none;
	cursor:default;
}

/* user's right answer */
/* =================== */

.widget.quiz .answer.txt.correct.select,
.widget.quiz .answer.img.correct.select {
	border-left: 2px solid #6AC300;
}
.widget.quiz .answer.txt.correct.select:hover,
.widget.quiz .answer.img.correct.select:hover {
	text-decoration:none;
	cursor:default;
}

/* psycho quiz user's answer */
/* ========================= */

.widget.quiz.psycho .answer.txt.checked {
	border-left: 2px solid #6AC300;
}

.widget.quiz.psycho .answer.txt.checked span {
	padding-left: calc(3.2222em - 1px) !important;
}

.widget.quiz.psycho .answer.txt.checked span::before {
	margin-left: calc(0.75em - 2px);
}

.widget.quiz.psycho .answer.img.checked {
	border-left: 2px solid #6AC300;
	border-radius: 2px;
	padding-left: calc(0.25em - 1px) !important;
}

/* werbinich quiz user's answer */
/* ========================= */

.widget.quiz.werbinich .answer.txt.checked {
	border-left: 2px solid #6AC300;
}

.widget.quiz.werbinich .answer.txt.checked span {
	padding-left: calc(3.2222em - 1px) !important;
}

.widget.quiz.werbinich .answer.txt.checked span::before {
	margin-left: calc(0.75em - 2px);
}

.widget.quiz.werbinich .answer.img.checked {
	border-left: 2px solid #6AC300;
	padding-left: calc(0.25em - 1px) !important;
}

/*Answer Explanation*/
.widget.quiz .explanation {
	display: none;
	margin: 20px 0 0;
	padding:16px;
}

.widget.quiz .explanation.show {
	display: block;
}

.widget.quiz .explanation h6 {
	font-size: 2.4em; /* 24px / 10px */
	font-weight: bold;
	margin: 0 0 10px 0;
	color: #222;
}

.widget.quiz .explanation.wrong h6 {
	color: #E2114C;
}

.widget.quiz .explanation.correct h6 {
	color: #6AC300;
}

.widget.quiz .explanation p {
	width: 100%;
	font-size:1.8em; /* 18px / 10px */
	line-height:1.3em;
	margin:0;
}

.widget.quiz .explanation .widget.image {
	margin-top:10px;
}

.widget.quiz .explanation img {
	width: 100%;
	margin: 0;
}

.widget.quiz .explanation.txt_and_img p {
	display: inline-block;
	width: 50%;
	vertical-align: top;
}

.widget.quiz .explanation.txt_and_img img {
	display: inline-block;
	width: 47%;
	margin: 0 0 0 2%;
}

.widget.quiz .result_button {
  font-size: 1.8em;
	width: 50%;
  margin-left: calc(100% - 50% - 25%);
}

.widget.quiz .result_box {
	display: none;
	background-color:#ffffff;
	margin-left:16px;
	margin-right:16px;
	margin-bottom:40px; /* 72px - 32px */
	margin-top:-32px; /* 72px - 40px */
}

.widget.quiz .result_box.show {
	display: block;
}

.widget.quiz .result_box .result_header {
	font-weight: bold;
	color: #F40f97;
	font-size: 1.8em;
	margin-bottom: 0.75em;
}

.widget.quiz .result_box .widget.image {
	margin-bottom: 0.75em;
}
.widget.quiz .result_box .result_text {
	font-size: 1.8em;
	line-height:1.3em;
}

.widget.quiz .result_box .result_title h4 {
	font-size:1.3333em !important; /* 24px / 18px */
	line-height:1.3em;
	font-weight:bold;
	margin-bottom: 0.75em;
}

.widget.quiz .result_box .share_result {
	text-align: center;
	font-weight: bold;
	margin-top: 2.777em;
}



@media screen and (max-width: 591px) {
	.widget.quiz .result_box .result_title h4 {
		font-size:1.2em !important;
	}
}

/* Quiz slider */
.range-slider,
.range-slider p {
  font-size: 1.0em !important;
}

.range-slider h6 {
  font-size: 1.5em !important;
}

.range-slider .input-range {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  outline: none;
  background-color: gray;
  margin-top:30px;
  margin-bottom:30px;
  font-size: inherit;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #00c1f6;
}

button.ia {
  font-size: inherit;
  width: 100%;
}

.range-value {
  display: inline-block  !important;
}

.widget.quiz .answer.txt .range-slider span::before {
  visibility: hidden;
}

/* @MEDIA Tablet */
/* ============= */
@media screen and (max-width: 975px) {
}

/* @MEDIA Phone */
/* =========== */
@media screen and (max-width: 591px) {
	.widget.quiz .result_button {
		font-size: 2.2857em;
	}

	.widget.quiz .result_box .result_text {
		font-size:2.2857em;
	}

	.widget.quiz .result_button {
		font-size:2.2857em;
		width: 100%;
    margin: auto;
	}
}

/* socialmini bar used in Quiz */
/* ================ */
.widget.socialmini {
	width: 100%;
}

.widget.socialmini a {
	color: #fff;
	display: block;
	width: 100%;
	height: 100%;
}

.widget.socialmini ul {
	margin: 0 !important;
	padding: 0;
	font-size:1.6em !important;
	line-height: 2em;
}

.widget.socialmini li {
	width: 2.6em;
	height: 2.6em;
	/* padding:1em; */
	border-radius:50%;
	-webkit-box-shadow: 2px 2px 9px 0 rgba(0,0,0,0.2);
	box-shadow: 2px 2px 9px 0 rgba(0,0,0,0.2);
	display:inline-block;
	background-size:auto 1.2em;
	margin-right:1em;
	background-position:center center;
	background-repeat:no-repeat;
	position:relative;
	background-color: #b3b7bb;
}

.widget.socialmini li .icon {
	display:inline-block;
	height: 14px;
	width: 19px;
	vertical-align: top;
}

.widget.socialmini li .icon img {
	vertical-align:middle;
}

.widget.socialmini li .number {
	line-height: 30px;
	margin: 0 0 0 10px;
}

.widget.socialmini li.facebook {
	background-image: url(/media/img/main/socialicons/facebook.png);
}

.widget.socialmini li.twitter {
	background-image:url(/media/img/main/socialicons/twitter.png);
}

.widget.socialmini li.comments {
	background-image:url(/media/img/main/socialicons/comments.png);
}

.widget.socialmini.nocomments li.comments {
	display: none;
}

.widget.socialmini li.whatsapp {
	display: none;
	/* background-image:url(/media/img/main/socialicons/whatsapp.png); */
}

.widget.socialmini.nocomments li {
	width: 50%;
}

.widget.socialmini li.mail {
	background-image:url(/media/img/main/socialicons/mail.png);
}

/* @MEDIA Phone */
/* ============= */
@media screen and (max-width: 591px) {

	/* socialmini bar  */
	/* ================ */
	.widget.socialmini.isMobile li.whatsapp {
		display: inline-block;
		background: #7bd400;
	}

	.widget.socialmini.isMobile li {
		width: 25%;
	}

	.widget.socialmini.isMobile.nocomments li {
		width: 33.33333%;
	}

	.widget.socialmini.isMobile li .number {
		margin: 0 0 0 5px;
	}

	.widget.socialmini.isMobile li .icon {
		margin: 5px 0 0 5px;
	}

}

