/*Cores*/
html,
body {
/*  background-color: #f1f5fb; */
}
#titulo_pagina {
  font-size: 2.5em;
  text-align: center;
  padding: 25px 0;
}
.box-info {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.1);
}
.box-info .conteudo {
  display: grid;
  grid-template-columns: 70px auto;
  align-items: center;
}
.box-info .conteudo .material-icons {
  font-size: 2.4em;
  color: #0000FF;
}
.box-info p {
  font-weight: 300;
  font-size: .9em;
  line-height: 1.6;
}
.sombra {
  box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.1);
}
#formulario {
  width: 70%;
  max-width: 1200px;
  margin: auto;
}
#formulario .box-pergunta {
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 100px auto 300px;
  align-items: center;
  margin-bottom: 5px;
  transition: .35s;
}
#formulario .box-pergunta:hover {
  background: #f9fafe;
  transform: translateY(-5px);
  box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.1);
}
#formulario .box-pergunta .id {
  background: #eaf0f5;
  padding: 10px 30px;
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
  color: #9ea4ab;
  margin-right: 15px;
}
#formulario .box-pergunta .texto {
  color: #494949;
  font-weight: 300;
}
#formulario .box-pergunta .notas {
  justify-content: flex-end;
}
#formulario .box-pergunta .valor_nota {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf0f3;
  margin: 0 4px;
  font-size: .9em;
  font-weight: bold;
  transition: .35s;
}
#formulario .box-pergunta .valor_nota:hover {
  background: #0000FF;
  cursor: pointer;
  color: #fff;
}
@media (max-width: 961px) {
  .box-info,
  #formulario {
    width: 95%;
  }
}
@media (max-width: 761px) {
  #formulario .box-pergunta {
    display: block;
  }
  #formulario .box-pergunta .id,
  #formulario .box-pergunta .texto,
  #formulario .box-pergunta .notas {
    text-align: center;
    margin-bottom: 5px;
  }
  #formulario .box-pergunta .notas {
    justify-content: center;
  }
}
.nota_selecionada {
  background: #0000FF !important;
  color: #fff !important;
}
#barra-botoes {
  position: sticky;
  bottom: 0;
  width: 100%;
  background: #f9f9f9;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#barra-botoes button {
  margin: 5px;
  border: none;
  font-family: 'Roboto';
  padding: 10px 30px;
  background: #ebf1f8;
  border-radius: 50px;
  transition: .35s;
}
#barra-botoes button:hover {
  background: #0000FF;
  color: #fff;
  cursor: pointer;
  transform: translateY(-5px);
  box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.1);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal {
  background: #FFFFFF;
  /*box-shadow: 1px 2px 10px 1px #595959;*/
  min-width: 300px;
  max-width: 800px;
  overflow-x: auto;
  padding: 35px 25px;
  border-radius: 5px;
  margin: 0 20px;
  transition: .35s ease;
}
.modal .icone {
  text-align: center;
}
.modal .icone .material-icons {
  font-size: 2.5em;
  color: #0000FF;
}
.modal button {
  margin: auto;
  border: none;
  font-family: 'Roboto';
  padding: 10px 30px;
  background: #ebf1f8;
  border-radius: 50px;
  transition: .35s;
}
.modal button:hover {
  background: #0000FF;
  color: #fff;
  cursor: pointer;
  transform: translateY(-5px);
  box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.1);
}
.resultado {
  display: grid;
  grid-template-columns: auto 50px;
  align-items: center;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 4px;
  margin-bottom: 4px;
  color: #494949;
}
