.cookies-container {
    color: #222;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
      Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    position: fixed;
    width: 100%;
    bottom: 2rem;
    z-index: 1000;
  }
  
  .cookies-content {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
    background: white;
    /* max-width: 520px; */
    border-radius: 5px;
    padding: 1rem;
  } 
  .cookies-content small{
    display: block;
    line-height: 1;
  }

  .cookies-pref label {
    margin-right: 1rem;
  }
  
  .cookies-save {
    grid-column: 2;
    grid-row: 1/3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
      Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #007cf8;
    color: white;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }
  
  @media (max-width: 500px) {
    .cookies-content {
      grid-template-columns: 1fr;
    }
    .cookies-save {
      grid-column: 1;
      grid-row: 3;
    }
  }