html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Arvo', serif;
  font-weight: 400;
}
body{
  background: url('./../images/bgb.jpg') no-repeat;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
body.logado{
  background: url('./../images/bgc.jpg') no-repeat;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
ul, li, h1, h2, h3{
  margin: 0;
  padding: 0;
}
img{
  border: 0;
  height: auto;
  max-width: 100%;
}
a{
  color: #547da6;
  text-decoration: none;
  outline: 0;
}
.logado a{
  color: #fff;
}
a:hover{
  color: #39b2ff;
}
hr{
  border: 1px solid #b2bfcb;
  margin-bottom: 18px;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#wrapper {
  position:relative;
  min-height:100%;
}

.content{
  max-width: 1000px;
  width: 96%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.noscroll {
  overflow: hidden;
  padding-right: 17px;
}

#barra {
  width: 100%;
  background: #fff;
  padding: 5px;
  min-height: 50px;
  position: relative;
}
#barra .nome{
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  padding: 2px 7px;
}
#barra .placar{
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  background-color: #b2bfcb;
  border-radius: 50px;
  padding: 2px 7px;
}
#header {
  margin: 0 auto;
  position: relative;
  min-height: 100px;
  padding: 40px 10px 0;
  text-align: center;
}
#header .unisantos{
  position: absolute;
  top: 0;
  right: 20px;
}

#body{
  position: relative;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  color: #3e454b;
}

#body h1{
  text-align: center;
  color: #3e454b;
  font-size: 36px;
  font-weight: 700;
}
#body h2{
  text-align: left;
  color: #3e454b;
  font-size: 20px;
  font-weight: 700;
}
#body h1.titulo{
  color: #008cff;
  font-size: 24px;
}

#formulario{
  max-width: 500px;
  width: 96%;
  min-height: 100px;
  background: #fff;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: block;
  margin: 25px auto;
  padding: 30px 40px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}
#menu{
  max-width: 500px;
  width: 96%;
  min-height: 100px;
  display: block;
  margin: 25px auto;
  padding: 30px 40px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}
#formulario .form-group {
  padding-bottom: 18px;
  text-align: left;
}
#formulario .form-group label {
  padding-left: 22px;
}
#formulario .form-input{
  background-color: #fff;
  color: #000;
  box-sizing: border-box;
  width: 100%;
  font-size: 18px;
  height: 55px;
  padding: 0 22px;
  outline: 0;
  border: 1px solid #b2bfcb;
  border-radius: 27px;
}
#formulario .form-select {
	background: url('./../images/arrow.png') no-repeat;
	-webkit-appearance: none;
	background-position: top 22px right 15px;
}
#formulario .pergunta{
  display: block;
  text-align: left;
}
#alternativas {
  text-align: left;
}
#alternativas .radio{
  position: absolute;
  opacity: 0;
}
#alternativas label{
  display: block;
  margin-bottom: 10px;
}
#alternativas .alternativa{
  display: inline-block;
  font-size: 20px;
  color: #008cff;
  font-weight: 700;
  padding: 10px;
}
#alternativas .alternativa b{
  background-color: #008cff;
  border-radius: 50px;
  color: #fff;
  padding: 2px 7px;
}
:checked + .alternativa {
  background-color: #b2dcff;
  border-radius: 50px;
}
.botao {
  padding: 17px 15px;
  text-align: center;
  cursor: pointer;
  background-image: none;
  border: 0px solid transparent;
  border-radius: 27px;
  background-color: #446688;
  color:#fff;
  font-weight: 400;
  font-size: 18px;
  margin: 0 auto 10px;
  display: inline-block;
  box-sizing: border-box;
  line-height: normal;
  text-transform: uppercase;
  outline: 0;
  width: 100%;
}
.botao.branco {
  background-color: #fff;
  color: #2464a5;
}
.botao:hover {
  color: #fff;
  background-color: #39b2ff;
  transition: 0.2s;
}
.botao.claro {
  background-color: #008cff;
}
.botao.whatsapp {
  background-color: #2cb742;
}
.botao.whatsapp:hover {
  background-color: #2cb742;
}
.botao-md{
  width: 48%;
}
.botao-md.ntl-child{
  margin-right: 2%;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert {
  text-shadow: 0 1px 0 rgba(255,255,255,.2);
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);
}
.alert-danger {
  background-image: -webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);
  background-image: -o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);
  background-image: -webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));
  background-image: linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
  background-repeat: repeat-x;
  border-color: #dca7a7;
}

.loading {
  background-color: rgba(255, 255, 255, .7);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000
}
.loading div {
  position: fixed;
  top: 50%;
  left: 50%
}
.circulo{
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  background-color: #b2bfcb;
  border-radius: 50px;
  padding: 2px 7px;
}
.remover{
  cursor: pointer;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
}
.integrante{
  text-align: left;
  position: relative;
}
.dados{
  padding-right: 25px;
}

table {
  width: 100%;
  border-collapse: collapse;
}
/* Zebra striping */
tr:nth-of-type(odd) {
  background: #eee;
}
th {
  background: #333;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px;
  border: 1px solid #ccc;
  text-align: center;
}
td {
  padding: 6px;
  border: 1px solid #ccc;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@viewport {
  zoom: 1.0;
  width: extend-to-zoom;
}
@-ms-viewport {
  width: extend-to-zoom;
  zoom: 1.0;
}

@font-face {
  font-family: "responsivenav";
  src:url("./../icons/responsivenav.eot");
  src:url("./../icons/responsivenav.eot?#iefix") format("embedded-opentype"),
  url("./../icons/responsivenav.ttf") format("truetype"),
  url("./../icons/responsivenav.woff") format("woff"),
  url("./../icons/responsivenav.svg#responsivenav") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (max-width:800px) {
  #header .unisantos{
    position: relative;
    top: auto;
    right: auto;
  }
  #header .unichallenge{
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width:600px) {
  #body h1.titulo {
    font-size: 18px;
  }
}
@media screen and (max-width:420px) {
  #formulario .botao-md{
    width: 100%;
  }
  #formulario .botao-md.ntl-child{
    margin-right: 0;
  }
}
