#cookieNotice {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 10px;
    z-index: 9999;
    font-family: Arial, sans-serif;
    margin-left: 2%;
    margin-right: 2%;
  }
  
  #cookieNotice.light {
    background-color: #fff;
    color: #333;
  }
  
  #cookieNotice.display-right {
    right: 20px;
  }
  
  #cookieNotice.display-left {
    left: 20px;
  }
  
  #closeIcon {
    display: none;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background-image: url('caminho-para-o-icone-de-fechar.png');
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
  }
  
  .title-wrap {
    text-align: center;
    margin-bottom: 10px;
  }
  
  .title-wrap h4 {
    font-size: 16px;
    margin: 0;
  }
  
  .content-wrap {
    margin-bottom: 10px;
  }
  
  .msg-wrap {
    padding: 10px;
  }
  
  .msg-wrap p {
    margin: 0;
  }
  
  .msg-wrap a {
    color: #115cfa;
    text-decoration: none;
  }
  
  .btn-wrap {
    text-align: center;
  }
  
  .btn-cookie {
    background-color: #115cfa;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 1em;
  }
  
  @media (max-width: 767px) {
    #cookieNotice {
      width: 90%;
      left: 50%;
      transform: translateX(-50%);
      bottom: 10px;
      right: auto;
      text-align: justify;
    }
  
    #cookieNotice.display-right {
      right: auto;
    }
  
    #cookieNotice.display-left {
      left: auto;
    }
  
    #closeIcon {
      display: block;
    }
  }
  