/* 
0 - 600px:    Phone
600-900px:    Tablet Portrait
900-1200px:   Tablet Landscape
[1200-1800px] Normal styles
1800px +:     Big Desktop

$breakpoint argument choices:
  phone
  tab-port
  tab-land
  big-desktop
*/
/**new**/
/* Paleta Azul */
/* Paleta Cinza */
/*Cor de fonte/Pret*/
/* Paleta Laranja */
.twoButtonsStyle__navbar {
  justify-content: center !important; }

ol li{
  margin: 0 0 10px 45px;
  padding-left: 14px;
}
.mt-2 {
  margin-top: 2rem !important; }

@keyframes appInitializationEffect {
  0% {
    opacity: 0; }
  40% {
    display: inherit;
    opacity: 0.1; }
  100% {
    opacity: 1; } }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes navigationCheckBoxPrintEffect {
  0% {
    opacity: 0; }
  80% {
    transform: translateY(-1.2rem);
    opacity: 0.1; }
  100% {
    transform: translateY(0);
    opacity: 1; } }

@keyframes dropdownCheckBoxPrintEffect {
  0% {
    opacity: 0; }
  80% {
    display: inherit;
    opacity: 0.1; }
  100% {
    opacity: 1; } }

@keyframes cardEffect {
  0% {
    opacity: .5;
    transform: translateY(50%); }
  20% {
    transform: translateY(-10%);
    opacity: 1; }
  30% {
    transform: translate(0); } }

@keyframes contentIconIntroEffect {
  0% {
    opacity: 0;
    transform: translate(50%, 50%); }
  40% {
    transform: translate(-5%, 0);
    opacity: 0.8; }
  50% {
    transform: translate(0); }
  100% {
    opacity: 1; } }

@keyframes exercisesIconIntroEffect {
  0% {
    opacity: 0;
    transform: translate(50%, 50%); }
  60% {
    transform: translate(-5%, 0);
    opacity: 0.8; }
  70% {
    transform: translate(0); }
  100% {
    opacity: 1; } }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

button,
input[type="reset"],
input[type="submit"],
input[type="button"] {
  -webkit-appearance: none;
  background-clip: padding-box;
  border: 0;
  cursor: pointer;
  overflow: visible; }

h1, h2, h3, h4, h5 {
  font-weight: normal; }

a {
  text-decoration: none; }

html {
  font-size: 62.5%;
  background-color: #fff; }

body {
  min-height: 100vh;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  background: #EBF4FF;
  color: #272833; }

img {
  width: auto; }

p {
  margin: 0; }

.hidden {
  display: none; }

#main {
  max-width: 1260px;
  width: 100%;
  background: #fff; }

body {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  line-height: 1.7; }

#app {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  width: 100%; }

#conteudo {
  max-width: 1260px;
  display: block;
  margin: 0 auto;
  width: 100%;
  background: #F5FAFF;
  min-height: calc(100vh - 150px); }

#formulario-redacao {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: 1fr 220px;
  grid-template-rows: 0fr 0fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas: "dados-inscrito dados-inscrito" "prova__container contadores"; }
  @media (max-width: 725px) {
    #formulario-redacao {
      display: flex;
      flex-direction: column; } }
  #formulario-redacao #dados-inscrito {
    grid-area: dados-inscrito;
    height: auto;
    width: 100%;
    padding: 20px 30px;
    border-bottom: 1px solid #E6E6E6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: medium; }
    #formulario-redacao #dados-inscrito .formulario-dados-pessoais {
      max-width: 1200px;
      width: 100%; 
    }
    #formulario-redacao #dados-inscrito p {
      margin-bottom: 7px;
      letter-spacing: .1px; }
      #formulario-redacao #dados-inscrito p.text-justify {
        text-align: justify; }
      #formulario-redacao #dados-inscrito p.hyphen-space {
        padding-left: 16px; }
    #formulario-redacao #dados-inscrito label:only-of-type {
      font-weight: bold; }
  #formulario-redacao #textarea {
    width: 96%;
    max-width: 120rem;
    min-height: 50rem;
    padding: 20px 30px;
    margin-top: 30px;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: medium;
    text-align: justify;
    box-shadow: 0px 8px 17px 2px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12), 0px 5px 5px -3px rgba(0, 0, 0, 0.2); }

.login {
  position: relative;
  flex-direction: column;
  max-width: 1550px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 180px); }
  .login__heading {
    border-radius: 9px 9px 0 0;
    position: relative;
    width: calc(100% + 30px);
    padding: 10px 20px;
    margin: -15px; }
    .login__heading h2 {
      font-family: "PT Sans", sans-serif;
      font-size: 22px;
      font-style: normal;
      font-weight: 700;
      position: relative;
      width: fit-content; }
      .login__heading h2::before {
        content: '';
        width: 50%;
        height: 5px;
        border-radius: 100px;
        background: #EF5E31;
        position: absolute;
        bottom: -10px; }
  .login__label {
    color: #333;
    font-size: 14px;
    font-weight: normal;
    pointer-events: none; }
  .login__input {
    background: none;
    background-color: white;
    color: #333;
    font-size: 1.8rem;
    padding: 10px 15px;
    display: block;
    width: 100%;
    border: none;
    border-radius: 0;
    border-radius: 10px;
    margin: auto 0;
    border: 1px solid #e6e6e6;
    text-align: center; }
    .login__input:focus {
      outline: 5px solid #C9E2FF; }
  .login #login__form {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background: #fff;
    width: 32rem;
    height: 25rem;
    margin: auto;
    padding: 1.5rem;
    border-radius: 9px;
    box-shadow: 24px 24px 125px 0px rgba(7, 70, 125, 0.05);
    text-align: left; }
  .login .buttons {
    display: flex;
    flex-direction: column; }
    .login .buttons :not(:last-child) {
      margin-bottom: .5rem; }

input[type="submit"] {
  margin: 0 auto; }

input[type="password"] {
  letter-spacing: 0.1rem; }

#prova__container {
  grid-area: prova__container;
  display: flex;
  padding: 30px;
  width: 100%;
  flex-direction: column;
  gap: 30px;
  justify-content: flex-start;
  font-size: 14px; }
  #prova__container:empty {
    display: none; }

.contadores {
  grid-area: contadores;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: 100%;
  padding: 20px;
  border-left: 1px solid #EBF4FF;
  background: #F5FAFF;
  gap: 20px; }
  @media (max-width: 725px) {
    .contadores {
      border-bottom: 1px solid #EBF4FF;
      border-left: none; } }
  .contadores #contador-horas {
    font-size: 3.6rem;
    font-weight: bold;
    position: sticky;
    top: 20px;
    text-align: center;
    width: 100%; }
    .contadores #contador-horas::before {
      content: '';
      width: 50%;
      height: 5px;
      background: #EF5E31;
      border-radius: 20px;
      position: absolute;
      bottom: -10px;
      margin: auto;
      left: 0;
      right: 0; }
    @media (max-width: 725px) {
      .contadores #contador-horas {
        position: relative;
        top: 0; } }
  .contadores #perguntas-respondidas {
    position: sticky;
    top: 100px;
    text-align: center;
    width: 100%;
    font-size: 16px; }
    @media (max-width: 725px) {
      .contadores #perguntas-respondidas {
        position: relative;
        top: 0; } }
  .contadores #marks {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    justify-content: center;
    margin: 10px 0; }
    @media (max-width: 725px) {
      .contadores #marks {
        width: 50%;
        margin: 10px auto 0; } }
    .contadores #marks span {
      display: block;
      width: 30px;
      height: 40px;
      background: #fff;
      border-radius: 8px;
      border: 1px solid #E6E6E6;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #D6D6D6; }
      .contadores #marks span.check {
        background: #72BEFF;
        border: 1px solid #427DE0;
        color: #1A4B9F; }

div[role="application"].tox.tox-tinymce {
  width: 95%; }

.pergunta {
  counter-reset: alternativa;
  background: #F5FAFF;
  border-radius: 5px;
  border: 2px solid #EBF4FF;
  width: 100%;
  padding: 24px;
  font-size: 16px; }
  .pergunta h4 {
    margin-bottom: 10px; }
    .pergunta h4 span {
      color: #EF5E31;
      font-weight: 800; }
  .pergunta label {
    margin-bottom: 6px;
    display: flex !important;
    align-items: center;
    gap: 5px;
    height: 24px;
    margin-left: 20px;
    counter-increment: alternativa;
    position: relative;
    padding-left: 1.5rem; }
    .pergunta label::before {
      content: counter(alternativa, lower-alpha) ") ";
      position: absolute;
      left: -5px;
      font-weight: bold; }

#prova__container #botao__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; }

.content {
  width: 100%;
  padding: 40px 10px;
  display: flex;
  flex-direction: column;
  align-items: center; }

.header {
  max-width: 1260px;
  padding: 30px;
  width: 100%;
  min-height: 10rem;
  background-color: #1A4B9F;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative; }
  .header::before {
    content: '';
    width: 100px;
    height: 90px;
    background: url(../img/dots3.svg) no-repeat center/cover;
    position: absolute;
    left: 0;
    bottom: 0; }
  @media (max-width: 725px) {
    .header {
      text-align: center;
      flex-direction: column-reverse;
      align-items: center; } }
  .header__title {
    font-size: 2.5rem;
    text-transform: uppercase;
    color: #fff;
    font-family: 'PT Sans';
    font-weight: 600; }
  .header__icon {
    height: 100%;
    width: 280px;
    object-fit: contain; }

.rounded-button {
  font-size: 1.7rem;
  height: 50px;
  min-width: 180px;
  border-radius: 50px;
  color: #fff;
  background: #427DE0;
  box-shadow: none;
  font-weight: bold;
  cursor: pointer;
  transition: all .3s;
  text-transform: uppercase;
  padding: 0 20px; }
  @media (max-width: 505px) {
    .rounded-button {
      padding: 10px 25px;
      margin: 0 auto;
      float: right; } }
  .rounded-button:hover {
    background: #1A4B9F; }
  .rounded-button.disabled:focus {
    outline: none; }

.card {
  width: 100%;
  height: 100%;
  max-width: 1270px;
  min-height: 20rem;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  backface-visibility: hidden;
  animation: cardEffect 2.5s ease-in; }
  .card:not(:last-child) {
    margin-bottom: 30px; }
  .card__icon-container {
    background-image: url("./img/icone-banca.jpg");
    background-repeat: no-repeat;
    min-width: 170px;
    min-height: 20rem; }
    @media (max-width: 505px) {
      .card__icon-container {
        display: none; } }
  .card__description-container {
    display: flex;
    flex-direction: column;
    padding: 10px 10px;
    min-height: 20rem; }
  .card__title {
    width: 100%;
    color: #763B9C;
    font-size: 2.6rem; }
    @media (max-width: 1046px) {
      .card__title {
        font-size: 2.2rem; } }
    @media (max-width: 505px) {
      .card__title {
        font-size: 1.8rem; } }
  .card__names {
    font-size: 1.3rem;
    color: #3C5269; }
    @media (max-width: 505px) {
      .card__names {
        font-size: 1.3rem;
        color: #444; } }
    .card__names--container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%; }
    .card__names.student {
      font-weight: bold; }
  .card__footer {
    display: inherit;
    align-items: flex-end;
    height: 100%; }
  .card__date {
    font-size: 2rem;
    color: #763B9C;
    margin-right: 10px; }
  .card__button {
    font-size: 1.7rem;
    padding: 2px 40px;
    border-radius: 100px;
    background-color: #23AAEA;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all .2s; }
    .card__button:hover {
      background-color: #fff;
      color: #23AAEA;
      border: .1px solid #23AAEA;
      box-shadow: 5px 5px 2px #23AAEA;
      transform: translateY(-5px); }
    .card__button:active {
      background-color: #23AAEA;
      color: #fff;
      border: none;
      transform: translate(0);
      box-shadow: none; }

#alerta {
  position: fixed;
  /* Sit on top of the page content */
  display: none;
  /* Hidden by default */
  width: 100%;
  /* Full width (cover the whole page) */
  min-height: 20rem;
  /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  /* Black background with opacity */
  z-index: 2;
  /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer;
  /* Add a pointer on hover */
  justify-content: center;
  align-items: center; }
  #alerta .loader-box {
    height: auto;
    width: auto;
    padding: 2rem;
    background-color: #fff;
    align-items: center;
    border-radius: 9px;
    animation: cardEffect 2.5s ease-in;
    transition: all .3s; }
  #alerta .card {
    position: relative;
    animation: cardEffect 2.5s ease-in;
    min-height: fit-content;
    height: auto;
    overflow: auto;
    max-height: 60vh;
    min-width: 30rem;
    width: 60%;
    background-color: #fff;
    align-items: center;
    border-radius: 9px;
    flex-direction: column; }
    @media (max-width: 505px) {
      #alerta .card {
        max-height: 500px; } }
    #alerta .card header {
      width: 100%;
      background: #EF5E31;
      padding: 10px 20px;
      border-radius: 9px 9px 0 0;
      align-items: center;
      justify-content: flex-end;
      display: flex; }
    #alerta .card .mensagem {
      text-align: justify;
      padding: 20px;
      font-size: 16px; }
    #alerta .card span {
      font-weight: bold;
      color: #fff;
      font-family: 'PT Sans';
      background: #AA320D;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      font-size: 11px; }
