@font-face {
  font-family: "Corbel";
  src: url("../../corbel.otf");
  font-weight: normal;
}

@font-face {
	font-family: "Corbel";
	src: url("../../corbelbold.otf");
	font-weight: bold;
}

* {
  font-family: "Corbel";
	margin: 0px;
}

.imageModalContainer{
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100vw;
	height:100vh;
	background-color:rgba(0,0,0,0.8);
	justify-content:center;
	align-items:center;
	z-index:1000;
	backdrop-filter: blur(7px);
}

.livestreambadge{
	position: fixed;
    bottom: 20px;
    right: 20px;
	z-index: 10;
	background-color: white;
	border-radius: 50px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.livestreambadge {
  animation: pulseAnim 1.2s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes pulseAnim {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

path.percent {
    animation: progress 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes progress {
	0% {
		stroke-dasharray: 0 100;
	}
}

.progress-container {
  width: 100%;
  height: 10px;
  background: #fff;
  cursor: pointer;
  border-radius: 5px;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: #8c0909;
  border-radius: 5px;
}

.controls {
	position: absolute;
	bottom: 60px;
	left: 50%;
	transform: translateX(-50%);
	display: none;
	align-items: center;
	gap: 10px;
	width: 420px;
	max-width: 90%;
	padding: 8px 12px;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 10px;
}

.time {
	font-size: 14px;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	font-weight: bold;
	min-width: 50px;
	text-align: center;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

@keyframes aparecer {
  from {
	opacity: 0;
	transform: scale(0.5);
  }
  to {
	opacity: 1;
	transform: scale(1);
  }
}

.image-transition {
  animation: aparecer 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.split {
	display: -webkit-box;
    display: -ms-flexbox;
	display:flex;
	flex-direction: row; 
    flex-wrap:nowrap;
    justify-content: center;
}

.left {
    position: relative;
	width: 100%;
}

.right {
    position: relative;
	width: 100%;
}

.left_streaming {
    position: relative;
	width: 700px;
}

.right_streaming {
	background-color: #FFF;
    position: relative;
	width: 100%;
	bottom: 0;
}

.commentsContainer {
	overflow-y: scroll;
	flex-direction: column-reverse;
}

.commentsContainer::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.commentsContainer::-webkit-scrollbar-track {
  background: transparent;
}

.commentsContainer::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.commentsContainer::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.streamingContainer {
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  position:relative;
}

#streaming {
  width: 100%;
  height: 100%;
  max-width: 480px;
  object-fit: cover;
  background: #f5f5f5;
  z-index:0;
}

#videoloading {
  width: 100%;
  height: 100%;
  max-width: 480px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.streamingmessage{
	color: black;
}

.streamingname{
	font-weight: bold;
	color: #e2b700;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
	opacity: 1;
  }
}

.videoContainer{
	width: 100%;
	max-width: 800px;
	border-radius: 10px;
    background-color: #fff;
	margin-top: 10px;
	cursor: pointer;
	transition: all .2s;
}

.videoContainer:hover {
	background-color: #E6E6E6;
	transform: scale(1.05);
}

#mainview{
	width: 1000px;
	height: 700px;
	border-radius: 20px;
	overflow: hidden;
	display: none;
}

.commentContainer {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
  background-color: white;
  border: 1px solid #f1f1f1;
  border-radius: 8px;
}

.commentContainer textarea {
  flex: 1;
  margin: 0 10px;
  padding: 8px;
  font-size: 16px;
  background-color: #0000000a;
  border-radius: 10px;
  border: none;
}

.commentContainer button {
  padding: 0px 16px;
  font-size: 16px;
  cursor: pointer;
  background-color: #0000000a;
  border-radius: 10px;
  border: none;
  height: 30px;
}

.progress-container {
  width: 100%;
  height: 10px;
  background: #fff;
  cursor: pointer;
  border-radius: 5px;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: #8c0909;
  border-radius: 5px;
}

.controls {
	position: absolute;
	bottom: 60px;
	left: 50%;
	transform: translateX(-50%);
	display: none;
	align-items: center;
	gap: 10px;
	width: 420px;
	max-width: 90%;
	padding: 8px 12px;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 10px;
}

.time {
	font-size: 14px;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	font-weight: bold;
	min-width: 50px;
	text-align: center;
}

.loading-spinner {
	position: absolute;
	width: 40px;
	height: 40px;
	border: 4px solid #000;
	border-top-color: #33333300;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

@keyframes aparecer {
  from {
	opacity: 0;
	transform: scale(0.5);
  }
  to {
	opacity: 1;
	transform: scale(1);
  }
}

.image-transition {
  animation: aparecer 0.2s ease-in;
}

.profileimg {
	border-radius: 50%;
	border: solid #00000000;
	border-width: 2px;
}

.profilepremium{
	border: solid #e2b700;
	border-width: 3px;
}

.profilepremiumtext{
	color: #e2b700;
}

.grecaptcha-badge {
  visibility: hidden;
}

.livestream-archive {
  padding: var(--_ui-styles---units--base--md-16);
  grid-column-gap: var(--_ui-styles---units--base--md-16);
  grid-row-gap: var(--_ui-styles---units--base--md-16);
  border-radius: var(--_ui-styles---units--container-corner);
  background-color: var(--color--base--white-90);
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  transition: background-color .2s;
}

.livestream-archive:hover {
  background-color: var(--color--base--black-10);
}

.text-color-catab{
	color: var(--cats--a-b);
}

.text-color-cata{
	color: var(--cats--a);
}

.text-color-catb{
	color: var(--cats--b);
}

.text-color-catc{
	color: var(--cats--c);
}

.text-color-catd{
	color: var(--cats--d);
}

.background-color-catab{
	background-color: var(--cats--a-b);
}

.background-color-cata{
	background-color: var(--cats--a);
}

.background-color-catb{
	background-color: var(--cats--b);
}

.background-color-catc{
	background-color: var(--cats--c);
}

.background-color-catd{
	background-color: var(--cats--d);
}

.test-variants-catab:hover{
	background-color: var(--cats--a-b);
}

.test-variants-cata:hover{
	background-color: var(--cats--a);
}

.test-variants-catb:hover{
	background-color: var(--cats--b);
}

.test-variants-catc:hover{
	background-color: var(--cats--c);
}

.test-variants-catd:hover{
	background-color: var(--cats--d);
}

.test-progress{
	width:1000px;
}

div.pergunta {
	border: none;
	color: black;
	font-size: 20px;
	width: 100%;
	height: 80px;
	border-radius: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	font-weight: bold;
	display: table;
}

div.perguntanumber {
	background-color: rgba(0, 0, 0, 0.2);
	color: white;
	border-bottom-left-radius: 10px;
	border-top-left-radius: 10px;
	width: 80px;
	height: 80px;
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	font-size: 40px;
	font-weight: bold;
}

div.perguntanext {
	background-color: rgba(0, 0, 0, 0.2);
	color: white;
	border-bottom-right-radius: 10px;
	border-top-right-radius: 10px;
	width: 80px;
	height: 80px;
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	font-size: 40px;
	cursor: pointer;
	right: 0px;
}

div.perguntanext:hover {
	background-color: rgba(0, 0, 0, 0.3);
}

div.perguntabefore {
	background-color: rgba(0, 0, 0, 0.2);
	color: white;
	border-bottom-left-radius: 10px;
	border-top-left-radius: 10px;
	width: 80px;
	height: 80px;
	text-align: center;
	display: none;
	vertical-align: middle;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
}
div.perguntabefore:hover {
	background-color: rgba(0, 0, 0, 0.3);
}

 .pergunta:hover .perguntabefore{
	display: table-cell;
 }
 .pergunta:hover .perguntanumber{
   	display: none;
 }

div.perguntatext {
	height: 80px;
	color: white;
	display: table-cell;
	vertical-align: middle;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
}

div.resposta {
	background-color: #ececec;
	border: none;
	color: black;
	font-size: 16px;
	width: 100%;
	margin-top: 5px;
	border-radius: 10px;
	cursor: pointer;
}

div.resposta:hover {
	background-color: #d8d8d8;
}

div.respostanumber {
	background-color: rgba(0, 0, 0, 0.2);
	color: #3E3E3E;
	border-bottom-left-radius: 10px;
	border-top-left-radius: 10px;
	width: 80px;
	height: 60px;
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	font-size: 40px;
	font-weight: bold;
}

div.respostatext {
	height: 60px;
	display: table-cell;
	vertical-align: middle;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
}

div.certadark {
	background-color: #2E6530;
	color: #FFF;
}

div.selections {
	width: 100%;
	padding-top: 5px;
	padding-bottom: 5px;
	border-radius: 10px;
	font-weight: bold;
	margin-top: 10px;
	overflow-x: hidden;
	overflow-y: hidden;
	white-space: nowrap;
	margin-left: auto;
  	margin-right: auto;
}

div.selectionsbutton {
	height: 40px;
	width: 40px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	border-radius: 10px;
	display:inline-block;
	line-height: 40px;
	margin-left: 5px;
	margin-right: 5px;
	transition: all 0.2s;
}

div.selectionsbutton:hover {
	background-color: #3E3E3E;
	color: white;
}

div.resultado  {
	background-color: #EDEDED;
	height: 50px;
	width: 100%;
	border-radius: 10px;
	text-align: center;
	display: table;
}

.resultadocontainer {
	display: none;
	height: 100%;
    vertical-align: middle;
}

.resultadotext {
	color: white;
	font-size: 20px;
	font-weight: bold;
}

.resultadotextsmall {
	color: white;
	font-size: 15px;
}

.timer {
	display: table-cell;
	vertical-align: middle;
	font-size: 20px;
	color: white;
	width: 100%;
}

.terminar {
	float: right;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	color: white;
	border: none;
	border-bottom-right-radius: 10px;
	border-top-right-radius: 10px;
	cursor: pointer;
	font-size: 15px;
	width: 150px;
	font-weight: bold;
}

.terminar:hover {
	background-color: rgba(0, 0, 0, 0.3);
}

.imgborder{
	border-radius: 10px;
	width: 50%;
	object-fit: cover;
	cursor: pointer;
	margin-right: 10px;
	float: left;
}

.adimgborder{
	width: 50%;
	float:right;
	display: table;
}

.noselect {
  -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 */
}

.replymessage {
  margin-top: 15px;
  margin-left: 40px;
}

.normalmessage {
  margin-top: 20px;
}

.replycontainer2 {
	background-color: #efefef;
	border-radius: 10px;
	padding: 20px;
	margin-left: 40px;
	margin-top: -45px;
}

.replycontainer2::after {
	content: "";
	clear: both;
	display: table;
}

.reply_title {
  font-weight: bold;
}

.reply_message {
	margin-top: 10px;
}

.reply_image {
	margin-top: 10px;
	border-radius: 10px;
}

.time-right {
	font-size: 12px;
	margin-top: 10px;
	float: right;
	clear: both;
	color: #aaa;
}

.likes-right {
	font-size: 14px;
	margin-top: 10px;
	float: right;
	clear: both;
	color: #a40b0b;
	margin-bottom: -30px;
	background-color: #FFF;
	border-radius: 20px;
	padding: 5px 10px;
	box-shadow: 2px 2px 5px lightgray; 
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-container {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  user-select: none;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #B9B9B9;
  border-radius: 4px;
}
	
.checkbox-container:hover input ~ .checkmark {
  background-color: #6D6D6D;
}

.checkbox-container.catab input:checked + .checkmark {
  background-color: var(--cats--a-b);
}

.checkbox-container.cata input:checked + .checkmark {
  background-color: var(--cats--a);
}
	
.checkbox-container.catb input:checked + .checkmark {
  background-color: var(--cats--b);
}

.checkbox-container.catc input:checked + .checkmark {
  background-color: var(--cats--c);
}

.checkbox-container.catd input:checked + .checkmark {
  background-color: var(--cats--d);
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked + .checkmark::after {
  display: block;
}

.checkmark::after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.test-variants-grid-dificulty {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

@media screen and (max-width: 1100px) {
	.test-variants-grid-dificulty {grid-template-columns: 1fr 1fr 1fr;}
}

@media screen and (max-width: 1000px) {
	.split {justify-content: space-between; flex-wrap: wrap;}
	.left {order:2;}
	.right {order:1;}
	.left_streaming {order:2; width: auto;}
	.right_streaming {order:1; position: absolute; background-color: #00000000; z-index: 1; max-width: 480px; margin-top: 420px; overflow: hidden; width: 100%;}
	.streamingname{text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);}
	.streamingmessage{color: white; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);}
	.commentsContainer {max-height: 350px;}
	.commentContainer {border: none; background-color: #ffffff00;  padding: 0px; box-shadow: none;}
	.commentContainer textarea {background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);}
	.commentContainer textarea::placeholder {color: #000;}
	.commentContainer button {background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);}
	#streaming {border-radius: 20px; overflow: hidden;}
	#mainview{box-shadow: none; overflow: visible; position: relative; height: calc(100% - 200px); width: auto;}
	.imgborder{width: 100%; margin-right: 0px;max-width: 480px;}
	.adimgborder{display: none;}
	div.test-progress{width:100%;}
}

@media screen and (max-width: 800px) {
	#mainview{box-shadow: none; overflow: visible; position: relative; height: calc(100% - 200px); width: auto;}
	.test-variants-grid-dificulty {grid-template-columns: 1fr 1fr;}
}

@media screen and (max-width: 500px) {
	.test-variants-grid-dificulty {grid-template-columns: 1fr;}
}