.cookies-container {
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    bottom: 2rem;
    z-index: 1000;
  }
  
  .cookies-content {
    box-shadow: 0 1px 3px #bed600;
    border: solid 1px #009a17;
    background:#f3eced;
    width: 70%;
    border-radius: 2vh;
    padding: 1vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 2vh;
    opacity: 0;
    transform: translateY(1rem);
    animation: slideUp 0.5s forwards;
  }
  .titulo-cookies{
    font-family: 'alkaline';
    font-weight: bold;
    font-size: 3.5vh;
    color: #009a17;
  }
  .conteudo-cookies{
    font-family: 'lucida-grande';
    font-weight: lighter;
    font-size: 2vh;
    color: #264e36;
    margin-top: 3vh;
    margin-bottom: 3vh;
  }
  .ancora-cookies{
    font-family: 'alkaline';
    color: #53b0ae;
    font-size: 3vh;
  }
  
  @keyframes slideUp {
    to {
      transform: initial;
      opacity: initial;
    }
  }
  
  .cookies-pref label {
    margin-right: 1rem;
  }
  
  .cookies-botao {
    grid-column: 2;
    grid-row: 1/3;
    font-family: 'alkaline';
    font-weight: bold;
    background: #bed600;
    color: #264e36;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    padding: 0.8rem 1rem;
    font-size: 3vh;
  }