.aviso-cookies {
  display: none;
  background: #fff;
  padding: 1.2rem;
  width: calc(100% - 40px);
  max-width: 30rem;
  line-height: 150%;
  border-radius: 10px;
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 100;
  padding-top: 60px;
  box-shadow: 18px 18px 20px 10px rgb(12 12 12 / 25%);
  text-align: center;
}

.aviso-cookies.activo {
  display: block;
}


  .aviso-cookies .galleta {
    max-width: 70px;
    position: absolute;
    top: -20px;
    left: calc(50% - 50px);
  }

  .aviso-cookies .titulo{
    font-size: 2rem;
  }
  .aviso-cookies .parrafo {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .aviso-cookies .boton {
    width: 10rem;
    background: var(--darkblue);
    border: none;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    padding: 1.2rem 0;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease all;
    border-radius: 5px;
    margin: 1.2rem 0.5rem;
    font-size: 14px;
  }

  .aviso-cookies .boton:hover {
    background: linear-gradient(90deg, var(--darkblue), var(--purple));
  }

  .aviso-cookies .enlace {
    color: var(--darkblue);
    text-decoration: none;
    font-size: 1.5rem;
  }

  .aviso-cookies .enlace:hover {
    color: #581379;
    font-weight: 700;
  }

  .aviso-cookies .enlace:hover {
    text-decoration: underline;
  }

  .fondo-aviso-cookies {
    display: none;
    background: rgba(0, 0, 0, .20);
    position: fixed;
    z-index: 99;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
  } 