:root{
  --button-confirm-color:#129353;
}

.exit-button{
    /* position: absolute;
    right: 5%;
    top: 5%; */
    font-size: 2rem;
}

.exit-button:hover,.button-confirm > *:hover{
    cursor: pointer;
}


.div-cobre-tela{
    width: 100vw;
    height: 100vh;
    position: absolute !important;
    z-index: 3000000;
    background-color: rgba(0, 0, 0, .5);
    backdrop-filter: blur(3px);
    display: none;
}
  


.div-centralizadora{
    /* display: flex; */
    position: relative;
    justify-content: center;
    align-items: center;
  }

.modal-container{
    width: 70%;
    height: 70%;
    background-color: white;
    overflow-y: hidden;
    border-radius: .5rem;
    border: 1px solid black;
  }

  .header-modal-container{
    width: 100%;
    height: 10%;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #dee2e6;
  }
  .header-modal-container > *{
    font-weight: bolder;
    margin: 0;
  }
    .flex-vertical{
    flex-direction: column;
  }

  .body-modal-container{
    flex-wrap: wrap;
    height: 100%;
    height: 80%;

    /* padding: 0 5%; */
    /* background-color: aqua; */
  }


  /* .body-modal-container > *{
    flex: calc(100% - 1rem);
    
  } */

  .city-description{
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    z-index: 2;
   

  }


  .city-name{
    width: 80%;
    height: 30%;
    /* background-color: bisque; */
    display: flex;
  }

  .city-name > *{
    text-align: center;
    font-weight: bolder !important;
    display: flex;
    align-items: center;
    font-size: 3rem;
    margin: 0;
    background-color: rgba(255,255,255,.4);
    padding: 1rem;
    border-radius: 1rem;
    backdrop-filter: blur(15px);
    height: 5rem;
  }

  .city-text{
    width: 100%;
    height: 50%;
    max-height: 50%;
    overflow-y: auto;
    padding: 0 5%;
    /* background-color: antiquewhite; */
  }

  .button-confirm{
    height: 20%;
    display: flex;
    align-items: center;
  }

  .button-confirm > *{
    margin: 0;
    padding: 1rem;
    color: white;
    background-color: var(--button-confirm-color);
  }

  .city-text > *{
    text-align: justify;
    background-color: rgba(255,255,255,.4);
    padding: 1rem;
    border-radius: 1rem;
    backdrop-filter: blur(15px);
  }

  .city-image{
    position: absolute;
    height:100%;
    width:100%;
    background-image: url('https://viewder.com.br/v2/games/volta-mundo//imagem/imagemCidadade/cataratas-niagara.jpg');
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index:1"
  }

  .footer-modal-container{
    width: 100%;
    height: 10%;
    padding: 0 5%;
  }



  #decisionModal-container .body-modal-container{
    display: flex;
    justify-content: initial;
    background-image:url('https://viewder.com.br/v2/games/volta-mundo-pre-release/volta-mundo/imagem/decision-modal/decision-modal-bg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  #info-travel{
    display: flex;
    gap: 0;
    width: 100%;
    height: 40%;
  }

  #info-travel h2{
    display: flex;
    justify-content: center;
    gap: .5rem;
  }

  #info-travel > *{
    margin: 0;
    background-color: rgba(255,255,255,.4);
    backdrop-filter: blur(15px);
    padding: 1rem;
    
  }

  #info-transporte{
    width: 80%;
    height: 59%;
    color: white;
    /* max-height: 50%; */
    /* overflow-y: auto; */
    display: flex;
    background-color: rgba(0,0,0,.7);
    border: 2px solid #DAA220;
    
  }
  
  #info-transporte-interno{
    width: 99%;
    height: 97%;
    padding: 0 .5rem;
    max-height: 98%;
    overflow-y: auto;
    border: 2px solid #DAA220;
    display: flex;
    gap:.5rem


  }

  #conteudo-dinamico-viagem{
    width: 80%;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,.5);
    border-radius: 0 1rem;
    padding: .5rem 0;
    gap: .5rem;
    color: black;
    font-weight: bold;
  }

  #conteudo-dinamico-viagem > *{
    margin: 0;
    text-align: center;
  }

  #travel-button-container{
    width: 100%;
    height: 50%;
    max-height: 50%;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: .5rem;
    gap: .5rem;

    transition: backgroundColor .5s ease;

  }

  #travel-button-container > *{
    flex: calc(20% - .5rem);
    color: black;
  }

  .botao-transporte{
    height: 60%;
    padding: .5rem;
    border-radius: 1rem;
    background-color: #cbcbcb;
    display: flex;
  }

  .botao-transporte i{
    font-size: 1.5rem;
  }

  .botao-transporte.active{
    background-color: #989898;

  }

  .botao-transporte:hover{
    cursor: pointer;
    background-color: #b0b0b0;
  }


  #decisionModal-container .footer-modal-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
  }

  #cancelar-viagem{
    background-color:#e01b24;
  }
  #confirmar-viagem{
    background-color: var(--button-confirm-color);
  }

  .button-acao-viagem{
    display: none;
    color: white;
    padding: .5rem;
    opacity: .7;
    transition: opacity .5s ease;
  }
  .button-acao-viagem:hover{
    cursor: pointer;
    opacity: 1;
  }

  .button-acao-viagem > *{
    margin: 0;
  }



  #boasVindasModal-container .body-modal-container{
    height: 90%;
  }

  #boasVindasModal-container .city-description{
    padding: 0 1rem;
    height: 50%;
    display: flex;
    gap: 20%;
  }
  #boas-vindas-inicio{
    width: 100%;
    height: 30%;
    font-weight: bolder;
    display: flex;

    border-bottom: 1px solid #dee2e6;

  }
  #cidade-boas-vindas-texto{
    text-align: justify;
    height: 50%;
    width: 95%;
    max-height: 50%;
    overflow-y: auto;
  }

  #city-video{
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
  }

  #city-video > :first-child {
    /* Suas propriedades CSS aqui */
    width: 40% !important;
    padding-top: 0 !important;
  }


  #visitar-ordem{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
  }

  #visitar-ordem > :first-child{
    padding: .5rem;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
  }

  #visitar-ordem > :first-child:hover{
    cursor: pointer;
  }


  #modal-imagem-footer-body{
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    
  }

  #container-botao-modal-moeda{
    position: absolute;
    left: 0;
    bottom: 10%;
    width: 70%;
    padding: .5rem 0;
    /* height: 10%; */
    background-color: rgba(0,0,0,.5);
    /* display: flex; */
  }

  #containerPerguntas{
    background-image: url('https://viewder.com.br/v2/games/volta-mundo/imagem/bgEstrategias/BackgroundTelaEstrategias.jpg');
    background-size: cover;
  }
  
  #alternativaSpace{
    height: 40%;
    max-height: 50%;
    justify-content: flex-start;
    overflow-y:auto;
    width: 100%;
    border-radius:0 0 3rem 3rem;
    z-index:2;
    display:flex;
    
    gap:.5rem;
    padding:1rem;
  }

  #alternativaSpace>*{
    text-align: justify;
  }

  #containerTexto> *{
    text-align: justify;
  }

  .alternativa{
    width: 80%;
    padding:1rem .5rem;
    border: 2px solid white;
    color:white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    background-color:rgba(0,0,0,.3);
    transition:transform .5s ease;
  }


  .alternativa:hover{
    cursor: pointer;
    transform:scale(1.03)
  }
  
  
  .clip-polygon{
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
  }
  
  #container-interno-botao-modal-moeda>*{
    margin: 0;
    font-weight: bolder;
  }
  #container-interno-botao-modal-moeda{
    width: 98%;
    /* height: 98%; */
    padding: .5rem;
    display: flex;
    background-color: rgba(192, 192, 192,.7);
    transition: backgroundColor .5s ease;
    
  }

  #container-interno-botao-modal-moeda:hover{
    cursor: pointer;
    background-color: rgb(192,192,192);
  }


  .botaoInicioJogo:hover{
    cursor: pointer;
  }

  #containerRespondeu{
    background-image: url('https://viewder.com.br/v2/games/volta-mundo/imagem/bgEstrategias/BackgroundTelaEstrategias.jpg');
    background-size: cover;
    background-position: center;
  }

  #resgateImagemPergunta{
    object-fit: contain;
  }


  