/*RESET*/
:root {
    --especialFont: 'Roboto', sans-serif;
    --regularText: #222222;
    --grayText: #565656;
    --grayBox: #f8f8f8;
    --accentColor: #00db35;
    --linkColor: #747474;
    --boxShadow: 0px 0px 3px rgba(132, 132, 132, 0.8);
    --boxRadius: 10px;
    --boxBorder: 1px solid #dedede;
}
* {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;	
    //-webkit-text-stroke-width: .05px;
	//-webkit-text-stroke-color: white;
	-webkit-font-smoothing:antialiased;
	text-rendering: optimizeLegibility;
    background-repeat: no-repeat;
}
html, body, header, main, footer, section, article, iframe, div, p, form, input, ul, li, h1, h2, h3, table, th, td {
	margin: 0px;
	padding: 0px;
}
object, iframe, table, img {
	outline: none;
	border: none;
}
body {
    background-color: var(--grayBox);
	font-family: var(--especialFont);
	font-size: 14px;
	color: black;
}
table {
	border-collapse: collapse;
}
li {
	list-style: none;
}
a {
    text-decoration: none;
}
h1 {
    font-size: 24px;
    margin-bottom: 20px;
}
h1 strong {
    font-family: 'Press Start 2P', cursive;
}
p {
    font-size: 16px;
    margin-bottom: 20px;
}
.clear {
    clear: both;
    display: block;
}
.alert {
    background: red;
    color: white;
    border-radius: var(--boxRadius);
    padding: 10px;
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
    font-size: 13px;
    font-weight: bolder;
}
.mostrar {
    display: block;
}
.ocultar {
    display: none;
}
i.green {
    color: #31be31;
}
i.yellow {
    color: #f7b92d;
}
i.red {
    color: #e64b4b;
}
.button {
    display: inline-block;
    padding: 15px;
    background-color: var(--accentColor);
    color: white;
    font-weight: bolder;
    font-size: 16px;
    border-radius: var(--boxRadius);
    text-transform: uppercase;
    box-shadow: var(--boxShadow);
    cursor: pointer;
}
.button.gray {
    color: black;
    background-color: var(--grayBox);
    margin-right: 15px;
}
/*RESET*/

header {
	width: 100%;
	height: 60px;
	position: fixed;
	background-color: #fff;
	box-shadow: 0px 0px 10px #888888;
	z-index: 1000;
    top: 0;
}
header .content {
    width: 100%;
	position: relative;
}
header a {
	transition: background-color 1s ease;
}
#logo {
	position: absolute;
	left: calc(50% - 75px);
}
#logo a {
	float: left;
}
#logo.quiziz a {
	width: 120px;
	height: 60px;
	background: url(../img/logo_quiziz.svg) no-repeat center center;
	background-size: contain;
}
#logo.quiziz.play a {
	width: 150px;
	height: 60px;
	background: url(http://holapixlab.com/quiziz/play/img/logo_quiziz.svg) no-repeat center center;
	background-size: contain;
}
footer {
    padding: 20px 30px 35px 30px;
    text-align: center;
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
}
footer p {
    margin-bottom: 20px;
    color: #898989;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
}
footer p a {
    color: #555;    
    text-decoration: underline;
}
footer nav {
    margin-bottom: 20px;
    text-align: center;
}
footer nav li {
    display: inline-block;
}
@media screen and (max-width: 450px) {
    footer nav li {
        display: block;
        border-bottom: 1px solid #d8d5d5;
    }
}
footer nav li a {
    margin: 0px 15px;
    display: block;
    color: #333;
    font-weight: 600;
    line-height: 40px;
}
main {    
    padding-top: 60px;
    position: relative;
    background-color: white;
}
main .content {
    max-width: 800px;
    margin: auto;
    padding: 5%;
    text-align: center;
}
@media (max-width:600px) {
    main .content {
        padding: 10%;
    }
}
.intro {
    width: 100%;
    height: calc(100vh - 60px);
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    top: 60px;
    padding: 10%;
}
.intro.play {
    background: rgba(21, 71, 238, 0.98);
}
@media (max-width:600px) {
    .intro {
        padding: 5%;
    }
}
.intro.play {
    color: white;
}
.indicators {
    margin-bottom: 30px;
}
.indicators li {
    display: inline-block;
    padding: 10px;
    border: var(--boxBorder);
    border-radius: var(--boxRadius);
    margin: 5px;
    font-size: 11px;
    text-transform: uppercase;
}
.indicators li i {
    font-size: 16px;
}
.indicators li span {
    font-weight: bold;
    font-size: 16px;
}
.question h1 {
    font-size: 18px;
}
.question p {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--grayText);
}
.question p strong {
    display: block;
}
.question img {
    width: 100px;
}
.opciones .opcion {
    max-width: 500px;
    display: block;
    background-color: var(--grayBox);
    border-radius: var(--boxRadius);    
    font-size: 14px;
    font-weight: normal;
    margin: 10px auto;
    padding: 10px;
    cursor: pointer;
}
.opciones .opcion.seleccionadaIncorrecta {
    cursor: default;
    color: white;
    font-weight: bold;
    background-color: #f43f3f;
}
.opciones .opcion.correcta {
    cursor: default;
    color: white;
    font-weight: bold;
    background-color: #1fad1f;
}
.points {
    max-width: 300px;
    margin: auto;
    border: var(--boxBorder);
    border-radius: var(--boxRadius);
    background-color: var(--grayBox);
    margin-bottom: 30px;
    padding: 15px;
}
.points i {
    font-size: 50px;
    margin-bottom: 15px;
}
.points p {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.actions {
    margin-bottom: 30px;
}
.actions li {
    max-width: 250px;
    margin: 10px auto;
    display: block;
    padding: 15px;
    text-align: left;
    padding-left: 40px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: var(--boxShadow);
    background-color: white;
    background-size: 20px;
    background-position: left 10px center;
    border-radius: var(--boxRadius);
    cursor: pointer;
}
.actions li a {
    display: block;
    color: black;
}
.actions li.save {
    background-image: url(../img/save.svg);
}
.actions li.share {
    background-image: url(../img/share.svg);
}
.actions li.send {
    background-image: url(../img/send.svg);
}
.actions li.retry {
    background-image: url(../img/retry.svg);
}
.actions li.ranking {
    background-image: url(../img/ranking.svg);
}
.download {
    margin: 30px auto;
}
.download li {
    display: inline-block;
}
form {
    width: 100%;
    max-width: 450px;
    margin: 40px auto;
    text-align: left;
}
form label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
form label em {
    font-size: 12px;
    font-weight: normal;
}
form input[type="text"], form select {
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    line-height: 40px;
    padding-left: 10px;
    font-size: 14px;
    color: black;
    border: var(--boxBorder);
    background-color: var(--grayBox);
    border-radius: var(--boxRadius);
}
form select.half {
    width: 40%;
}
form input[type="text"].requerido {
    border: 1px solid red;
}
form input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: var(--boxBorder);
    background-color: var(--grayBox);
    border-radius: var(--boxRadius);    
}
form p {
    font-size: 13px;
    margin-bottom: 30px;
}
form a {
    text-decoration: underline;
    color: black;
}
form button, form input[type="submit"] {
    display: inline-block;
    padding: 15px;
    background-color: var(--accentColor);
    color: white;
    font-weight: bolder;
    font-size: 16px;
    border-radius: var(--boxRadius);
    text-transform: uppercase;
    box-shadow: var(--boxShadow);
    cursor: pointer;
}
form hr {
    height: 0;
    clear: both;
    border: none;
    border-bottom: 1px solid #efefef;
    margin: 20px 0;
}