.cookies-container {
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    bottom: 0%;
    z-index: 1000;
  }
  
  .cookies-content {
    background:#ffffff;
    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: 'panton-bold';
    font-weight: bold;
    font-size: 3.5vh;
    color: #0F2A4C;
  }
  .conteudo-cookies{
    width: 80%;
    font-family: 'gotham-regular';
    font-weight: lighter;
    font-size: 2.5vh;
    color: #0F2A4C;
    margin-top: 3vh;
    margin-bottom: 3vh;
    padding: 1vh 0vh;
    line-height: 3.5vh;
  }
  .ancora-cookies{
    font-family: 'gotham-bold';
    color: #32BDB3;
    font-size: 2.5vh;
    text-decoration: none;
    transition: 0.6s;
  }
  .ancora-cookies:hover{
     transition: 0.6s;
     text-decoration: underline;
  }
  @keyframes slideUp {
    to {
      transform: initial;
      opacity: initial;
    }
  }
  
  .cookies-pref label {
    margin-right: 1rem;
  }
  
  .cookies-botao {
    grid-column: 2;
    grid-row: 1/3;
    font-family: 'gotham-bold';
    font-weight: bold;
    background: #32BDB3;
    color: #ffffff;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    padding: 0.8rem 1rem;
    font-size: 2vh;
    transition: 0.6s;
  }
  .cookies-botao:hover{
    transition: 0.6s;
    background: #0F2A4C;
    color: #ffffff;
  }

  @media screen and (max-width: 700px) {

    .cookies-content {
      flex-direction: column;
      padding-bottom: 4vh;
      background-color: #ffffff;
    }
    .conteudo-cookies{
      width: 90%;
      font-size: 2vh;
      color: #0F2A4C;
    }
    .ancora-cookies{
      font-size: 2vh;
    }


  }