.cookies-container {
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    bottom: 0%;
    z-index: 1000;
  }
  
  .cookies-content {
    background:#010b31;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 1vh 0vh;
    opacity: 0;
    transform: translateY(1rem);
    animation: slideUp 0.5s forwards;
  }
  .titulo-cookies{
    font-family: 'gill-sans-bold';
    font-weight: bold;
    font-size: 3.5vh;
    color: #ac7b57;
  }
  .conteudo-cookies{
    width: 80%;
    font-family: 'gill-sans-light';
    font-weight: lighter;
    font-size: 2.5vh;
    color: #ffffff;
    margin-top: 3vh;
    margin-bottom: 3vh;
    padding: 1vh 0vh;
    line-height: 3.5vh;
  }
  .ancora-cookies{
    font-family: 'gill-sans-bold';
    color: #02f9fb;
    font-size: 2.5vh;
    transition: 0.6s;
  }
  .ancora-cookies:hover{
    color: #009de2;
    transition: 0.6s;
  }
  @keyframes slideUp {
    to {
      transform: initial;
      opacity: initial;
    }
  }
  
  .cookies-pref label {
    margin-right: 1rem;
  }
  
  .cookies-botao {
    grid-column: 2;
    grid-row: 1/3;
    font-family: 'gill-sans-bold';
    font-weight: bold;
    background: #009de2;
    color: #ffffff;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    padding: 0.8rem 1rem;
    font-size: 2vh;
    transition: 0.6s;
  }
  .cookies-botao:hover {
    background: #ffffff;
    color: #009de2;
    transition: 0.6s;
  }

  @media screen and (max-width: 700px) {

    .cookies-content {
      flex-direction: column;
      padding-bottom: 4vh;
    }
    .conteudo-cookies{
      width: 90%;
      font-size: 2vh;
    }
    .ancora-cookies{
      font-size: 2vh;
    }


  }