@font-face {
  font-family: "SofiaPro";
  src: url("fonts/sofiapro/Sofia_Pro_Black.otf");
  font-weight: 900;
}

@font-face {
  font-family: "SofiaPro";
  src: url("fonts/sofiapro/Sofia_Pro_Bold.otf");
  font-weight: 700;
}

@font-face {
  font-family: "SofiaPro";
  src: url("fonts/sofiapro/Sofia_Pro_Light.otf");
  font-weight: 300;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/roboto/Roboto-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/roboto/Roboto-Bold.ttf");
  font-weight: 700;
}

body {
  background-color: #ed000f;
  background-image: url("images/fundo-mobile.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

@media (min-width: 768px) {
  body {
    background-image: url("images/fundo-md.png");
  }
}

@media (min-width: 990px) {
  body {
    background-image: url("images/fundo-lg.png");
  }
}

@media (min-width: 1170px) {
  body {
    background-image: url("images/fundo-xl.png");
  }
}

body #img-fundo {
  position: absolute;
  z-index: -1;
  top: 0;
  width: 100%;
}

header {
  margin-top: 19px;
  text-transform: uppercase;
  font-family: "SofiaPro";
}

header svg {
  width: 30%;
}

header .titulo {
  font-size: 16px;
  color: #fff;
}

header .titulo .fw-l {
  font-weight: 300;
}

header .titulo .fw-b {
  font-weight: 900;
}

#faixa-branca {
  height: 3px;
  background-color: #fff;
  width: 100%;
}

#form-window {
  width: fit-content;
  background-color: rgba(248, 237, 238, 0.9);
  width: fit-content;
  text-align: center;
  border-radius: 10px;
  margin: 0 auto;
  padding: 10px 4% 0 4%;
  color: black;
  max-width: 95vw;
  overflow-y: auto;
}

#form-window .pergunta {
  margin: 15px 0px 30px 0;
  font-family: "Roboto";
  font-weight: 700;
  font-size: 17px;
}

#form-window #radio-opcoes {
  text-align: left;
}

#form-window .campo-inicio {
  margin: 5px 0;
  border-radius: 10px;
  font-size: 18px;
  border: 1px solid #5b5b5b;
  background-color: transparent;
  outline: 0;
  padding: 0 10px;
}

#form-window input[type="submit"] {
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  border: 0;
  padding: 4px 30px;
  margin: 5px 0 30px;
  background-color: #ffe300;
  font-weight: 700;
  outline: 0;
}

#form-window label {
  margin-bottom: 0 !important;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 12px;
  margin-right: 11px;
}

#form-window input[type="radio"] {
  margin-right: 4px;
}

#form-window input[type="radio"]:after {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  top: -4px;
  left: -1px;
  position: relative;
  background-color: white;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 2px solid #e6000e;
}

#form-window input[type="radio"]:checked:after {
  width: 13px;
  height: 13px;
  border-radius: 15px;
  top: -5px;
  left: 0px;
  position: relative;
  background-color: #e6000e;
  content: '';
  display: inline-block;
  visibility: visible;
}

#form-window .container-selecionar-opcao {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

#form-window .container-selecionar-opcao .selecionar-opcao {
  font-family: "Roboto";
  font-weight: 700;
  margin-right: 15px;
  font-size: 11px;
  font-weight: 700;
}

#form-window img {
  border-radius: 10px 10px 0 0;
}

#form-window #texto-classificacao-concluido {
  text-transform: uppercase;
  font-family: "SofiaPro";
  font-weight: 400;
}

#form-window #classificacao-concluido {
  text-transform: uppercase;
  color: #00c024;
  font-size: 20px;
}

#form-window #desc-classificacao-concluido {
  margin-top: 20px;
  font-size: 12px;
  font-family: "Roboto";
}

#form-window #errorMsg {
  color: #ed000f;
  font-family: "SofiaPro";
}

#form {
  margin-top: 3%;
}

#writingTaskTextArea {
  min-width: 300px;
  min-height: 50px;
  max-width: calc(100vw - 80px);
  resize: auto;
  background-color: transparent;
  border: 1px solid #5b5b5b;
  border-radius: 10px;
}

@media screen and (min-width: 768px) {
  header {
    margin-top: 25px;
  }
  header svg {
    width: 18%;
  }
  header .titulo {
    font-size: 20px;
  }
  #form-window {
    margin-top: 87px;
  }
  #form-window .pergunta {
    margin: 15px 70px 30px 70px;
  }
}

@media screen and (min-width: 990px) {
  header {
    margin-top: 38px;
  }
  header svg {
    width: 170px;
  }
  header .titulo {
    font-size: 30px;
  }
}

#o2-quiz-root {
  font-family: "Roboto" !important;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

#o2-quiz-root p {
  font-size: 34px;
}

#o2-quiz-root .o2-quiz-form {
  border-radius: 10px;
  padding: 5px 4%;
  width: fit-content;
  background-color: rgba(248, 237, 238, 0.9);
  color: black;
  max-width: 95vw;
  overflow-y: auto;
}

#o2-quiz-root .o2-quiz-form .o2-quiz-question-span {
  margin: 15px 0px 30px 0;
  font-family: "Roboto";
  font-weight: 700;
  font-size: 17px;
}

#o2-quiz-root .o2-quiz-form input[type="text"] {
  margin: 10px 0;
  border-radius: 10px;
  font-size: 18px;
  border: 1px solid #5b5b5b;
  background-color: transparent;
  outline: 0;
  padding: 0 10px;
}

#o2-quiz-root .o2-quiz-form input[type="submit"], #o2-quiz-root .o2-quiz-form .o2-quiz-button {
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  border: 0;
  padding: 4px 30px;
  margin: 15px 0 20px;
  background-color: #ffe300;
  font-weight: 700;
  outline: 0;
}

#o2-quiz-root .o2-quiz-form input[type="radio"] {
  width: 15px;
  margin-right: 4px;
}

#o2-quiz-root .o2-quiz-form input[type="radio"]:after {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  position: relative;
  background-color: white;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 2px solid #e6000e;
}

#o2-quiz-root .o2-quiz-form input[type="radio"]:checked:after {
  position: relative;
  background-color: #e6000e;
  content: '';
  display: inline-block;
  visibility: visible;
}

#o2-quiz-root .o2-quiz-form .o2-quiz-textarea {
  min-width: 300px;
  min-height: 50px;
  max-width: calc(100vw - 80px);
  resize: auto;
  background-color: transparent;
  border: 1px solid #5b5b5b;
  border-radius: 10px;
  width: 100%;
}

#o2-quiz-root .o2-quiz-form .o2-quiz-loading-img {
  margin-bottom: 15px;
}

#o2-quiz-root .o2-quiz-form .o2-quiz-error-msg {
  font-size: 16px;
}

#o2-quiz-root .o2-quiz-form .o2-quiz-input {
  justify-content: flex-start;
}

#o2-quiz-root .o2-quiz-form .o2-quiz-input label {
  margin-bottom: 0;
}
/*# sourceMappingURL=style.css.map */