@charset "UTF-8";
@import url("//fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*$fontWLight: 300;*/
/*$fontWRegular: 400;*/
/*$fontWBlack: 900;*/
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif; }

html, body {
  touch-action: pan-x pan-y;
  -webkit-user-select: none;
  /* Impede seleção de texto no iOS */
  -webkit-touch-callout: none;
  /* Impede menu de contexto no iOS */
  user-select: none; }

.sprite {
  background-image: url(../../img/jogo/texture.png?v=1); }

.sprite_boot {
  display: inline-block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url(../../img/jogo/texture_boot.png?v=1); }

/* Ajusta o corpo para ocupar toda a tela */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  width: 100%;
  background: #1B944C;
  font-size: 16px;
  user-select: none;
  /* Impede a seleção de texto */
  -webkit-user-select: none;
  /* Para navegadores WebKit (Chrome, Safari) */
  -moz-user-select: none;
  /* Para Firefox */
  -ms-user-select: none;
  /* Para Internet Explorer/Edge */
  overflow: hidden;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease; }

input, textarea, select {
  font-size: 16px !important; }

/* Container das cenas */
#scene-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 465px;
  height: 932px;
  overflow: hidden;
  /*border: 1px solid rgba($corPreto,.3);*/
  border-top: 0px;
  border-bottom: 0px;
  z-index: 2; }

.scene {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  width: 100%;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column; }
  .scene h1 {
    font-size: 40px;
    font-size: 2.5rem; }

button {
  background-color: #72BE44;
  border-radius: 6px;
  padding: 10px;
  border: 1px solid #72BE44;
  color: #ffffff;
  min-height: 34px;
  font-weight: 600;
  cursor: pointer;
  font-size: 20px;
  font-size: 1.25rem;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
  background-repeat: no-repeat;
  background-position: center center; }

button.active,
button:hover {
  background-color: #ffffff;
  color: #72BE44; }

button.branco {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #000000; }

button.branco:hover {
  background-color: #72BE44;
  color: #ffffff; }

button.loading {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 150"><path fill="none" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" stroke-dasharray="300 385" stroke-dashoffset="0" d="M275 75c0 31-27 50-50 50-58 0-92-100-150-100-28 0-50 22-50 50s23 50 50 50c58 0 92-100 150-100 24 0 50 19 50 50Z"><animate attributeName="stroke-dashoffset" calcMode="spline" dur="2.8" values="685;-685" keySplines="0 0 1 1" repeatCount="indefinite"></animate></path></svg>');
  background-color: #72BE44 !important;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px; }

.loading-scene {
  background-color: #1B944C;
  color: #ffffff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500; }
  .loading-scene h1 {
    font-size: 60px;
    font-size: 3.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: -15px; }
  .loading-scene .logo {
    text-align: center;
    margin-top: auto;
    margin-bottom: auto; }
  .loading-scene .loading {
    position: relative;
    border: 2px solid #ffffff;
    border-radius: 40px;
    height: 32px;
    padding: 3px;
    margin-bottom: 20px; }
    .loading-scene .loading .barra {
      height: 22px;
      width: 0%;
      border-radius: 40px;
      background-color: #F8BD0A; }
    .loading-scene .loading .progressso {
      position: absolute;
      top: 4px;
      right: 8px;
      font-size: 14px;
      font-size: 0.875rem;
      font-weight: 600; }

.splash-scene {
  background-color: #1B944C;
  color: #ffffff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500; }
  .splash-scene .nav {
    position: relative;
    text-align: right;
    color: #000000;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 500; }
    .splash-scene .nav a.btSaltar {
      position: absolute;
      left: 0px;
      top: 0px; }
    .splash-scene .nav a {
      cursor: pointer; }
    .splash-scene .nav a.hide {
      visibility: hidden; }
  .splash-scene .slideC {
    margin-top: 50px;
    position: relative; }
    .splash-scene .slideC .item {
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      display: none; }
      .splash-scene .slideC .item .textoC {
        text-align: left;
        font-size: 28px;
        font-size: 1.75rem;
        color: #000000;
        padding: 20px;
        margin-top: 50px;
        font-weight: 700;
        background-color: #ffffff; }
  .splash-scene .progressoC {
    margin-top: auto;
    margin-bottom: 10px;
    display: flex;
    gap: 4px; }
    .splash-scene .progressoC .item {
      height: 13px;
      border-radius: 100px;
      background-color: #ffffff;
      flex-grow: 1;
      -webkit-transition: all 250ms ease;
      -moz-transition: all 250ms ease;
      -ms-transition: all 250ms ease;
      -o-transition: all 250ms ease;
      transition: all 250ms ease; }
    .splash-scene .progressoC .item.active {
      background-color: #F8BD0A; }

body.menu {
  background-color: #1B944C; }

.menu-scene {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500; }
  .menu-scene .nomeUser {
    position: relative;
    text-align: left;
    font-size: 14px;
    font-size: 0.875rem; }
    .menu-scene .nomeUser .nome {
      padding: 5px; }
    .menu-scene .nomeUser .pontos {
      position: absolute;
      top: 0px;
      right: 0px;
      background-color: #F8BD0A;
      color: #000000;
      border-radius: 15px;
      padding: 0px 15px; }
  .menu-scene h1 {
    font-size: 40px;
    font-size: 2.5rem;
    color: #ffffff; }
  .menu-scene .menuC {
    margin-top: 50; }
    .menu-scene .menuC button {
      display: block;
      width: 100%; }
    .menu-scene .menuC button + button {
      margin-top: 10px; }
  .menu-scene .removerC {
    margin-top: auto;
    text-align: right; }
    .menu-scene .removerC .btRemover {
      background-color: #E41239;
      border-color: #E41239;
      font-size: 12px;
      font-size: 0.75rem;
      width: 150px; }
    .menu-scene .removerC .btRemover.loading,
    .menu-scene .removerC .btRemover:hover {
      background-color: #ffffff;
      border-color: #E41239;
      color: #E41239;
      font-size: 12px;
      font-size: 0.75rem; }

body.novojogo {
  background-color: #72BE44; }

.novojogo-scene {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500; }
  .novojogo-scene h1 {
    font-size: 40px;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 10px; }
  .novojogo-scene .menuC {
    flex-grow: 1;
    margin-top: auto;
    overflow: auto;
    margin-bottom: auto; }
    .novojogo-scene .menuC .niveis {
      margin-top: 10px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px; }
      .novojogo-scene .menuC .niveis .item {
        flex: 1 1 calc(25% - 10px);
        border-radius: 8px;
        padding: 10px 5px;
        background-color: #ffffff;
        cursor: pointer; }
      .novojogo-scene .menuC .niveis .item.active,
      .novojogo-scene .menuC .niveis .item:hover {
        background-color: #1B944C;
        color: #ffffff; }
    .novojogo-scene .menuC .cats {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      gap: 10px; }
      .novojogo-scene .menuC .cats > div {
        display: flex;
        flex: 1 1 calc(50% - 10px); }
      .novojogo-scene .menuC .cats .item {
        width: 100%;
        cursor: pointer;
        margin-bottom: 10px;
        text-align: center; }
        .novojogo-scene .menuC .cats .item .imgC {
          margin: auto;
          width: 90%;
          aspect-ratio: 1;
          border-top-left-radius: 16px;
          border-top-right-radius: 16px;
          border: 2px solid #ffffff;
          border-bottom: 0px;
          display: flex;
          align-items: end;
          -webkit-transition: all 250ms ease;
          -moz-transition: all 250ms ease;
          -ms-transition: all 250ms ease;
          -o-transition: all 250ms ease;
          transition: all 250ms ease; }
          .novojogo-scene .menuC .cats .item .imgC .sprite {
            -webkit-transform: scale(0.9);
            -moz-transform: scale(0.9);
            -ms-transform: scale(0.9);
            transform: scale(0.9); }
        .novojogo-scene .menuC .cats .item .nome {
          font-size: 14px;
          font-size: 0.875rem;
          border-radius: 8px;
          padding: 10px 5px;
          background-color: #ffffff; }
      .novojogo-scene .menuC .cats .item.active .imgC,
      .novojogo-scene .menuC .cats .item:hover .imgC {
        background-color: #ffffff; }
    .novojogo-scene .menuC .cats::after {
      content: "";
      flex: 1 1 calc(50% - 10px); }
  .novojogo-scene .menuC.loading .item {
    pointer-events: none; }
  .novojogo-scene .nav {
    margin-top: 10px; }
    .novojogo-scene .nav button {
      width: 100%; }
    .novojogo-scene .nav button + button {
      margin-top: 10px; }

.livre-scene {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  height: 100%; }
  .livre-scene h1 {
    font-size: 40px;
    font-size: 2.5rem;
    color: #ffffff; }
  .livre-scene .area {
    margin-top: auto;
    margin-bottom: auto;
    /*flex-grow: 1;*/
    background-color: #ffffff;
    border-radius: 10px;
    padding: 15px; }
    .livre-scene .area p {
      font-size: 16px;
      font-size: 1rem; }
    .livre-scene .area #userArea {
      margin-bottom: 10px; }
      .livre-scene .area #userArea .nJogadores {
        margin-top: 10px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px; }
        .livre-scene .area #userArea .nJogadores button {
          flex: 1 1 calc(50% - 10px); }
      .livre-scene .area #userArea .btEntrar {
        width: 100%; }
    .livre-scene .area #nomeForm {
      margin-top: 30px; }
      .livre-scene .area #nomeForm input {
        width: 100%;
        padding: 10px;
        border: 1px solid #EBEBEB;
        background-color: #EBEBEB;
        border-radius: 10px;
        margin-bottom: 10px;
        color: #000000; }
      .livre-scene .area #nomeForm input::placeholder {
        color: #000000; }
      .livre-scene .area #nomeForm input.erro {
        border-color: red; }
      .livre-scene .area #nomeForm .btJogar {
        width: 100%; }
  .livre-scene .nav {
    margin-top: auto; }
    .livre-scene .nav button {
      width: 100%; }

body.pergunta::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
  opacity: 0; }

body.pergunta.resposta::before {
  opacity: 1; }

body.pergunta.resposta .pergunta-scene {
  background-color: #1B944C; }

.pergunta-scene {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  height: 100%; }
  .pergunta-scene h1 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.1;
    color: #ffffff; }
  .pergunta-scene .progressoC {
    position: relative;
    margin-bottom: 30px;
    width: 100%; }
    .pergunta-scene .progressoC .barraC {
      position: relative;
      margin-bottom: 5px;
      margin-top: 20px;
      width: 100%;
      height: 15px;
      border-radius: 15px;
      overflow: hidden;
      background-color: #ffffff; }
      .pergunta-scene .progressoC .barraC .barra {
        position: absolute;
        top: 0px;
        left: 0px;
        background-color: #F8BD0A;
        width: 0%;
        height: 100%; }
    .pergunta-scene .progressoC .infoC {
      position: relative;
      color: #ffffff;
      text-align: left;
      font-size: 14px;
      font-size: 0.875rem; }
      .pergunta-scene .progressoC .infoC .tempo {
        position: absolute;
        top: 0px;
        right: 0px; }
  .pergunta-scene .pergunta {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 15px;
    font-size: 28px;
    font-size: 1.75rem;
    margin-bottom: 30px;
    display: none; }
  .pergunta-scene .respostasC {
    position: relative;
    flex-grow: 1;
    margin-bottom: 15px; }
    .pergunta-scene .respostasC > div {
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      overflow: auto;
      /*display: flex;*/
      /*flex-direction: column;*/
      /*justify-content: space-between;*/ }
    .pergunta-scene .respostasC .item {
      position: relative;
      /*flex-grow: 1;*/
      border: 2px solid #ffffff;
      background-color: #E41239;
      color: #ffffff;
      font-size: 26px;
      font-size: 1.625rem;
      margin-bottom: 15px;
      border-radius: 15px;
      padding: 10px;
      text-align: left;
      padding-left: 70px;
      cursor: pointer; }
      .pergunta-scene .respostasC .item .letra {
        position: absolute;
        left: 5px;
        top: 5px;
        width: 50px;
        height: 50px;
        background-color: #ffffff;
        text-align: center;
        color: #000000;
        font-weight: 700;
        font-size: 30px;
        font-size: 1.875rem;
        line-height: 50px;
        border-radius: 10px; }
    .pergunta-scene .respostasC .item.active {
      background-color: #F8BD0A; }
  .pergunta-scene .nav {
    margin-top: auto; }
    .pergunta-scene .nav button {
      width: 100%; }
  .pergunta-scene .resultadoC {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center; }
    .pergunta-scene .resultadoC .jogador {
      width: 90%;
      background-color: #ffffff;
      border-radius: 10px;
      padding: 30px;
      font-size: 16px;
      font-size: 1rem;
      margin-bottom: 30px;
      display: none;
      pointer-events: none; }
      .pergunta-scene .resultadoC .jogador h1 {
        color: #000000;
        font-size: 30px;
        font-size: 1.875rem; }
      .pergunta-scene .resultadoC .jogador .nome {
        color: #F8BD0A;
        font-size: 28px;
        font-size: 1.75rem; }
    .pergunta-scene .resultadoC .area {
      width: 90%;
      background-color: #ffffff;
      border-radius: 10px;
      padding: 30px;
      font-size: 16px;
      font-size: 1rem;
      margin-bottom: 30px;
      display: none; }
      .pergunta-scene .resultadoC .area .icon {
        margin-bottom: 30px; }
      .pergunta-scene .resultadoC .area .mensagem {
        font-weight: 700;
        font-size: 30px;
        font-size: 1.875rem; }
      .pergunta-scene .resultadoC .area .mensagem.sucesso {
        color: #1B944C; }
      .pergunta-scene .resultadoC .area .mensagem.erro {
        color: #E41239; }

.login-scene {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  height: 100%; }
  .login-scene h1 {
    font-size: 40px;
    font-size: 2.5rem;
    color: #ffffff; }
  .login-scene .area {
    margin-top: auto;
    margin-bottom: auto;
    /*flex-grow: 1;*/
    background-color: #ffffff;
    border-radius: 10px;
    padding: 15px; }
    .login-scene .area p {
      font-size: 16px;
      font-size: 1rem; }
    .login-scene .area #userArea {
      margin-top: 30px; }
      .login-scene .area #userArea .btEntrar {
        margin-top: 15px;
        width: 100%; }
    .login-scene .area #loginForm {
      margin-top: 30px; }
      .login-scene .area #loginForm input {
        width: 100%;
        padding: 10px;
        border: 1px solid #EBEBEB;
        background-color: #EBEBEB;
        border-radius: 10px;
        margin-bottom: 10px;
        color: #000000; }
      .login-scene .area #loginForm input::placeholder {
        color: #000000; }
      .login-scene .area #loginForm .esqueciC {
        text-align: right;
        margin-top: -15px; }
      .login-scene .area #loginForm .btEsqueci {
        color: #E41239;
        font-size: 12px;
        font-size: 0.75rem;
        text-decoration: none;
        font-style: italic; }
      .login-scene .area #loginForm .btEntrar {
        width: 100%; }
      .login-scene .area #loginForm .small {
        margin-top: 5px;
        font-size: 13px;
        font-size: 0.8125rem; }
      .login-scene .area #loginForm a {
        cursor: pointer;
        text-decoration: underline; }
      .login-scene .area #loginForm .status {
        margin-top: 30px;
        margin-bottom: 30px;
        color: #E41239;
        font-size: 13px;
        font-size: 0.8125rem; }
  .login-scene .nav {
    margin-top: auto; }
    .login-scene .nav button {
      width: 100%; }

.registar-scene {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  height: 100%; }
  .registar-scene h1 {
    font-size: 40px;
    font-size: 2.5rem;
    color: #ffffff; }
  .registar-scene .area {
    margin-top: auto;
    margin-bottom: auto;
    /*flex-grow: 1;*/
    background-color: #ffffff;
    border-radius: 10px;
    padding: 15px; }
    .registar-scene .area p {
      font-size: 16px;
      font-size: 1rem; }
    .registar-scene .area #userArea h2 {
      margin-bottom: 30px; }
    .registar-scene .area #userArea .btEntrar {
      margin-top: 15px;
      width: 100%; }
    .registar-scene .area #registoForm {
      /*margin-top: 30px;*/ }
      .registar-scene .area #registoForm p {
        margin-bottom: 30px; }
      .registar-scene .area #registoForm input {
        width: 100%;
        padding: 10px;
        border: 1px solid #EBEBEB;
        background-color: #EBEBEB;
        border-radius: 10px;
        margin-bottom: 10px;
        color: #000000; }
      .registar-scene .area #registoForm input::placeholder {
        color: #000000; }
      .registar-scene .area #registoForm select {
        appearance: none;
        width: 100%;
        padding: 10px;
        border: 1px solid #EBEBEB;
        background-color: #EBEBEB;
        border-radius: 10px;
        margin-bottom: 10px;
        color: #000000; }
      .registar-scene .area #registoForm .btEntrar {
        width: 100%; }
      .registar-scene .area #registoForm .small {
        margin-top: 5px;
        font-size: 13px;
        font-size: 0.8125rem; }
      .registar-scene .area #registoForm a {
        cursor: pointer;
        text-decoration: underline; }
      .registar-scene .area #registoForm .status {
        margin-top: 30px;
        margin-bottom: 30px;
        color: #E41239;
        font-size: 13px;
        font-size: 0.8125rem; }
  .registar-scene .nav {
    margin-top: auto; }
    .registar-scene .nav button {
      width: 100%; }

body.ranking {
  background-color: #72BE44; }

.ranking-scene {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  height: 100%; }
  .ranking-scene h1 {
    font-size: 40px;
    font-size: 2.5rem;
    color: #ffffff; }
  .ranking-scene .areaUser {
    margin-top: 10px;
    background-color: #1B944C;
    border-radius: 10px;
    padding: 15px;
    color: #ffffff; }
    .ranking-scene .areaUser .nomeC {
      margin-bottom: 15px; }
      .ranking-scene .areaUser .nomeC .nome {
        color: #F8BD0A;
        font-weight: 700; }
    .ranking-scene .areaUser .respostas {
      font-size: 14px;
      font-size: 0.875rem;
      margin-bottom: 15px; }
    .ranking-scene .areaUser .posicao {
      margin-bottom: 15px;
      text-align: center; }
      .ranking-scene .areaUser .posicao > div {
        display: inline-block;
        min-width: 50px;
        height: 50px;
        background-color: #ffffff;
        text-align: center;
        color: #000000;
        font-weight: 700;
        font-size: 30px;
        font-size: 1.875rem;
        line-height: 50px;
        border-radius: 10px; }
    .ranking-scene .areaUser .pontos {
      display: inline-block;
      background-color: #ffffff;
      border-radius: 10px;
      padding: 3px 10px;
      color: #000000;
      margin-right: 15px;
      font-size: 14px;
      font-size: 0.875rem;
      padding-left: 30px;
      background-image: url(../../img/jogo/icon_taca.svg);
      background-size: 16px 16px;
      background-position: 7px 50%;
      background-repeat: no-repeat; }
    .ranking-scene .areaUser .tempo {
      display: inline-block;
      background-color: #ffffff;
      border-radius: 10px;
      padding: 3px 10px;
      color: #000000;
      margin-right: 15px;
      font-size: 14px;
      font-size: 0.875rem;
      padding-left: 30px;
      background-image: url(../../img/jogo/icon_relogio.svg);
      background-size: 16px 16px;
      background-position: 7px 50%;
      background-repeat: no-repeat; }
  .ranking-scene .nomeRanking {
    color: #ffffff;
    text-align: center;
    margin-top: 10px; }
  .ranking-scene .areaRanking {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
    flex-grow: 1;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden; }
    .ranking-scene .areaRanking .lista {
      position: absolute;
      left: 0px;
      top: 0px;
      width: 100%;
      height: 100%;
      border-radius: 10px;
      overflow: auto;
      padding: 15px;
      text-align: left; }
      .ranking-scene .areaRanking .lista .item {
        background-color: #E41239;
        color: #ffffff;
        border-radius: 10px;
        padding: 5px 10px;
        margin-bottom: 5px;
        font-size: 16px;
        font-size: 1rem;
        display: flex;
        align-items: center; }
        .ranking-scene .areaRanking .lista .item .posicao {
          width: 32px;
          height: 32px;
          margin-right: 10px;
          background-color: #ffffff;
          text-align: center;
          color: #000000;
          font-weight: 700;
          font-size: 16px;
          font-size: 1rem;
          line-height: 32px;
          border-radius: 10px; }
        .ranking-scene .areaRanking .lista .item .pontosC {
          margin-left: auto;
          flex-shrink: 0; }
        .ranking-scene .areaRanking .lista .item .pontos {
          font-size: 14px;
          font-size: 0.875rem;
          padding-left: 24px;
          background-image: url(../../img/jogo/icon_taca.svg);
          background-size: 16px 16px;
          background-position: left center;
          background-repeat: no-repeat; }
        .ranking-scene .areaRanking .lista .item .tempo {
          font-size: 14px;
          font-size: 0.875rem;
          padding-left: 24px;
          background-image: url(../../img/jogo/icon_relogio.svg);
          background-size: 16px 16px;
          background-position: left center;
          background-repeat: no-repeat; }
  .ranking-scene .nav {
    margin-top: auto; }
    .ranking-scene .nav button {
      width: 100%; }

body.ranking_multi {
  background-color: #72BE44; }

.ranking_multi-scene {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  height: 100%; }
  .ranking_multi-scene h1 {
    font-size: 40px;
    font-size: 2.5rem;
    color: #ffffff; }
  .ranking_multi-scene .areaUser {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px; }
    .ranking_multi-scene .areaUser .item {
      border-radius: 10px;
      padding: 15px;
      color: #ffffff;
      background-color: #1B944C;
      flex: 1 1 calc(50% - 10px); }
    .ranking_multi-scene .areaUser .nome {
      color: #F8BD0A;
      font-weight: 700;
      margin-bottom: 15px; }
    .ranking_multi-scene .areaUser .respostas {
      font-size: 14px;
      font-size: 0.875rem;
      margin-bottom: 15px; }
    .ranking_multi-scene .areaUser .posicao {
      margin-bottom: 15px;
      text-align: center; }
      .ranking_multi-scene .areaUser .posicao > div {
        display: inline-block;
        width: 50px;
        height: 50px;
        background-color: #ffffff;
        text-align: center;
        color: #000000;
        font-weight: 700;
        font-size: 30px;
        font-size: 1.875rem;
        line-height: 50px;
        border-radius: 10px; }
    .ranking_multi-scene .areaUser .pontos {
      display: inline-block;
      background-color: #ffffff;
      border-radius: 10px;
      padding: 3px 10px;
      color: #000000;
      margin-right: 15px;
      font-size: 14px;
      font-size: 0.875rem;
      padding-left: 30px;
      background-image: url(../../img/jogo/icon_taca.svg);
      background-size: 16px 16px;
      background-position: 7px 50%;
      background-repeat: no-repeat; }
    .ranking_multi-scene .areaUser .tempo {
      display: inline-block;
      background-color: #ffffff;
      border-radius: 10px;
      padding: 3px 10px;
      color: #000000;
      margin-right: 15px;
      font-size: 14px;
      font-size: 0.875rem;
      padding-left: 30px;
      background-image: url(../../img/jogo/icon_relogio.svg);
      background-size: 16px 16px;
      background-position: 7px 50%;
      background-repeat: no-repeat; }
  .ranking_multi-scene .nomeRanking {
    color: #ffffff;
    text-align: center;
    margin-top: 10px; }
  .ranking_multi-scene .nav {
    margin-top: auto; }
    .ranking_multi-scene .nav button {
      width: 100%; }

/*# sourceMappingURL=jogo.css.map */
