

  div.cookiesPopup {
    position: fixed;
    bottom: 0;
    left: 0;
    
    max-width: 26em;
    
    grid-template-columns: 1fr;
    
    font-size: 0.85em;
    text-align: center;
    
    padding: 2em 1em;
    background-color: #ffffff;
    border-radius: 0.2em;
    box-shadow: 0 0 1em #cccccc;
    
    z-index: 10;
  }

  div.cookiesPopup > img {
    width: 5em;
  }
  
  div.cookiesPopup .closeButton {
    position: absolute;
    right: 0.5em;
    top: 0.5em;
    padding: 0.5em;
  }
  
  @media screen and (min-width: 700px) {
    
    div.cookiesPopup {
      padding-bottom: 2em;
    }
  }
  
