html,body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    margin-bottom: 50px;
    width: 100%;
  }
  .container {
    max-width: 400px;
    width: 90%;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  }
  .container.box{
    background-color: #f8f8f8;
    margin: 20px;
    text-align: center;
  }
  .container.box .ilustration{
    height: 50px;
    position: relative;
    margin-top: -50px;
  }
  .under_box{
    color: #ccc;
    max-width: 300px;
    font-size: 0.8em;
    text-align: center;
    display: block;
    margin:0 auto 20px
  }

  .header + .container.box {
    margin-top: 25px;
  }

  h2 {
    font-size: 1.5em;
    color: #333;
  }
  p {
    color: #666;
  }
  .confirmation-code {
    display: block;
    width: 100%;
    margin: 20px 0;
    padding: 10px;
    font-size: 2em;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
  }
  .checkbox-container {
    margin: 20px 0;
    border-top: 1px solid #ccc;
    padding-top: 20px;
  }
  .checkbox-container a{
    color: #b3b3b3;
  }
  .checkbox-label {
    display: block;
    margin-bottom: 10px;
    color: #7e7e7e;
    font-size: 0.9em;
    text-align: left;
  }
  .continue-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #ccc;
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 1em;
    cursor: not-allowed;
  }
  .continue-button.active {
    background-color: #00bfa5;
    cursor: pointer;
  }
  .header{
    background-image: linear-gradient(to bottom, #D9D9D9, #d9d9d900);
    width: 100%;
    text-align: center;
    padding: 30px 0;
  }
  .header .logo{
    max-width: 100px;
    border-radius: 15px;
    box-shadow: 0px -10px 14px 0px #cccc;
    margin: 0 auto;
    height: 50px;
    display: none;
  }



  .feed .footer{
    display: flex;
    justify-content: space-between;
  }
  .post img{
    width: 100%;
    max-width: 500px;
    min-height: 100px;
  }
  .divisor{
    width: 100%;
    border: 0px;
    border-bottom: 1px solid #eaeaea;
  }

  .post h3 {
    padding: 0 10px;
    margin: 20px 0 5px;
  }
  .post .footer {
    padding: 0 10px;
    margin: 0px 0 20px;
    font-size: 0.7em;
    color: #9e9e9e;
  }


  .stage{
    display: none;
  }


  /* loading */
  .loader { border: 6px solid #f3f3f3; border-top: 6px solid #00bfa5; border-radius: 50%; width: 30px; height: 30px; animation: spin 2s linear infinite; } 
  @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } 

  .loading{
    /* position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(0, 191, 165); */

    position: fixed;
    top: 0;
    left: 0;
    /* transform: translate(-50%, -50%); */
    color: rgb(0, 191, 165);
    background: #4e4e4e8a;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    z-index: 999;
  }

  .modal{
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background: #0000002b;
    top: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    display: none;
  }

  .modalBox{
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-shadow: 0px 7px 50px #4b4b4b38;
    border-radius: 4px;
    margin: 20px auto;
    width: 80%;
    max-width: 300px;
    text-align: center;
  }
  .modal .close{
    position: absolute;
    top: 7px;
    left: 20px;
    font-size: 46px;
    color: #fff;
    cursor: pointer;
  }
  .modal .modal-content{
    width: 100%;
    max-width: 200px;
  }

  .modal button{
    background: 0;
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    border: 1px solid #e0e0e0;
    padding: 6px 17px;
    border-radius: 4px;
    color: #ccc;
  }
  .modal-footer{
    margin-top: 20px;
  }
  .btActive{
    border: 1px solid #00bfa5!important;
    color: #fff!important;
    background-color: #00bfa5!important;
    cursor: pointer;
  }


  .error{
    display: none;
    text-align: center;
  }
  .detalheError{
    font-size: 0.7em;
    color: #ccc;
  }