content {
    margin: 10px;
    width: 350px;
  }

  .card{
    border-radius: 15px !important;
  }
  
  .b-example-divider {
    height: 3rem;
  }
  
  .container-config {
    border-radius: 20px;
    background-color: #f5f5f5;
  }
  
  body {
    background-color: #3f3f46;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: inset 1 1em 1.5em rgba(0, 0, 0, 0.24), inset 1 1.125em 0.5em rgba(0, 0, 0, 0.15);
  }
  
  .botao {
    text-align: end;
  }
  
  .btn {
    border: none;
    margin-top: 30px;
    margin-right: 20px;
  }
  
  .esconder {
    display: none;
    opacity: 0;
    animation: fadeInOut 1s ease-in-out forwards;
  }
  
  @keyframes fadeInOut {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  .fade-out {
    animation: fadeOut 1s ease-in-out forwards;
  }
  
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
  
    to {
      opacity: 0;
    }
  }
  
  #app {
    display: none;
  }
  
  .linha-invisivel {
    border: none;
    height: 10px;
    background-color: transparent;
  }