*{
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
  }
  
  :root{
    --white: #FFF;
    --black: #000;
  
    --dark-900: #101026;
    --dark-700: #1D1D2E;
  
    --gray-100: #8A8A8A;
    --green-900: #3fffa3;
    --red-900: #FF3F4B;
  }
  
  html, body, #root{
    height: 100%;
  }
  
  body, input, textarea, select, select{
    /* 1rem equivalente a 16px */
    font: 400 1rem sans-serif;
  }
  
  body{
    background: var(--dark-700);
  }
  
  button{
    cursor: pointer;
  }
  
  a{
    color: inherit;
    text-decoration: none;
  }
  
  /* Para não aparecer  bolinha a esquerda */
  ul{
    list-style: none;
  }
  
  @media (max-width: 720px){
    html{
        /* equivalente a 14px */
        font-size: 87.5%; 
    }
  }

  input{
    margin-bottom: 0.5rem;
    height: 30px;
    border: 0;
    border-radius: 0.5rem;
    background-color: var(--dark-900);
    color: var(--white);
    padding: 0.5rem;
    border: 1px solid var(--gray-100);
    font-size: 12px;
  }    
  input::placeholder{
    color: rgba(255,255,255,0.8);
  }

  textarea{
    margin-bottom: 1rem;
    height: 60px;
    border: 0;
    border-radius: 0.5rem;
    background-color: var(--dark-900);
    color: var(--white);
    padding: 0.5rem;
    border: 1px solid var(--gray-100);
    font-size: 12px;
  }
  textarea::placeholder{
    color: rgba(255,255,255,0.8);
  }

  button{
    max-width: 600px;
    height: 1px;
    background-color: var(--red-900);
    border: 0;
    padding: 0.4rem;
    color: var(--white);
    border-radius: 0.5rem;
    transition: filter 0.2s;
    margin-bottom: 10px;
  }

  button:hover{
    filter: brightness(0.90);
  }

  .buttonText{
    color: var(--white);
    font-size: 12px;
  }

  .bandeira{
    /* float: left; */
    background-color: transparent;
    border: none;
  }



  /* CSS MODAL --------------------- */
  /* ------------------------------- */
  #open-modal {
    background-color: #007bff;
  }
  
  .btnmodal{
    display: flex !important;
    height: 20px;
    font-size: 12px;
  }

  .btnmodal:hover {
    opacity: 1;
  }
  
  #fade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 5;
  }
  
  #modal{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    max-width: 90%;
    background-color: #fff;
    padding: 1.2rem;
    border-radius: 0.5rem;
    z-index: 10;
  }
  
  #fade,
  #modal{
    transition: 0.5s;
    opacity: 1;
    pointer-events: all;
  }
  
  .modal-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  
  .modal-body{
    margin-bottom: 1rem;
  }
  
  #modal.hide,
  #fade.hide {
    opacity: 0;
    pointer-events: none;
  }
  
  #modal.hide {
    top: 0;
  }

/* ------------------------------------------ */
/* MODAL DE EXCLUSÃO */
/* ------------------------------------------ */
  
  .modalexc {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    padding: 1.2rem;
    z-index: 10;
    background-color: rgba(0,0,0,0.4);
  }
  .modalexc-content {
    border-radius: 0.5rem;
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    font-size: 14px;
  }

  #confirmDelete{
    height: 25px;
    /* flex-direction: row !important;  */
    margin-left: 4px !important;
    font-size: small;

  }
  #cancelDelete{
    height: 25px;
    /* flex-direction: row !important;  */
    margin-left: 4px !important;
    font-size: small;
  }
 /* ------------------------------------------ */
 /* RODAPÉ */
  .copy{
    margin-top: 0px;
    color: var(--white);
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: small; 
    overflow: auto;
  }
  .copy a { 
    font-weight: 400; 
    color: white; 
    font-weight: bold;
    font-style: italic;
    text-decoration: underline;
  }

  .imgcopy{
    margin-left: 8px;
  }

  
@media (max-width: 1080px){
    html{
        /* equivalente a 15px */
        font-size: 93.75%; 
    }
  }