﻿/* CSS Document */
body, html {
	/*height: 100%;*/
}
body {
	margin: 0;
	padding: 0;
}
body, td, th, input, button, select {
	font-family: 'Intelo', 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/*font-family: 'Gotham', sans-serif;
font-family: 'Gotham Black', sans-serif;
font-family: 'Gotham Light', sans-serif;
font-family: 'Gotham Thin', sans-serif;
font-family: 'Gotham XLight', sans-serif;
font-family: 'Gotham Book', sans-serif;
font-family: 'Gotham Ultra', sans-serif;*/

body, td, th {
	font-size: 16px;
}
* {
	box-sizing: border-box
}
/* Live */
.video-container {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
}
#streamSelect-div {
	text-align: center;
	padding: 10px;
}
.video-container iframe, .video-container img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video-container img {
	z-index: 1;
	border: 1px solid #CCCCCC;
}
.video-container iframe {
	z-index: 2;
}

/*Quiz*/
.quiz-conteudo {
	position: relative;
	width: 100%;
	border-radius: 15px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 20px;
	overflow: hidden;
	min-height: 190px;
}
.quiz-pergunta {
	padding: 5px;
	/*background-image: linear-gradient(to right, #ff411f, #ffd300);*/
	background-color: #003366;
	color: #ffffff;
	font-size: 20px;
	text-align: center;
	padding-left: 30px;
	padding-right: 30px;
}
#quiz-principal {
	width: 100%;
}
.quiz-respostas {
	position: relative;
	width: 100%;
	padding: 16px;
	background-color: #ffffff;
}
.quiz-resp {
	display: inline-block;
	padding: 10px;
	border: 3px solid #CCCCCC;
	width: 48%;
	margin: 1%;
	float: left;
	border-radius: 30px;
	cursor: pointer;
}
.quiz-resp:hover, .quiz-resp:active {
	background-color: #ECECEC;
}
.quiz-letra {
	display: inline-block;
	height: 30px;
	width: 30px;
	border-radius: 15px;
	line-height: 28px;
	border: 1px solid #CCCCCC;
	margin-right: 5px;
	color: #003366;
	font-weight: bold;
	text-align: center;
}
.quiz-texto {
	display: inline;
	font-size: 13px;
	color: #484848;
}
.quiz-invalido {
	text-align: center;
	padding: 10px;
	padding-top: 30px;
	font-size: 18px;
	color: #A20002;
}
#quiz-respondido {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-direction: column;
	height: 200px;
	z-index: 1;
	text-align: center;
	font-size: 16px;
}
#quiz-inativo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-direction: column;
	height: 200px;
	z-index: 1;
	text-align: center;
	font-size: 16px;
}
.quiz-view {
	opacity: 1;
	transition: opacity .5s linear;
}
.quiz-hide {
	opacity: 0;
	pointer-events: none;
}

@media screen and (max-width:700px) {
.quiz-resp {
	display: block;
	float: inherit;
	width: 100%;
	margin-top: 3%;
	margin-bottom: 3%;
}
}
