  .cookie-popup {
        display: none;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px 20px;
        background-color: rgb(32, 187, 218);
        color: #000000;
        border-radius: 5px;
        z-index: 999;
    }
    @media only screen and (max-width: 600px) {
      .cookie-popup {
        position: fixed;
        bottom: 0;
        width: 100%;
        text-align: justify;
      }
  
      .cookie-popup img {
        width: 100%;
        height: auto;
      }
    }