.cookie-consent {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0);
    background: #222;
    color: #fff;
    padding: 25px 30px;
    display: none;
    font-family: Arial, sans-serif;
    font-size: 12px;
    z-index: 14;
    width:600px;
    border-radius: 20px;
  }
  .cookie-consent .wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
    gap: 1rem;
  }
  .cookie-consent p {
    margin: 0;
    padding-right: 10px;
    flex-grow: 1;
  }
  .cookie-consent p.cookie-title {
    font-weight: bold;
    font-size: 16px;
  }
  .cookie-consent p a {
    color:white;
    text-decoration: underline;
  }
  
  .cookie-consent button {
    background-color: #5b5b5b;
    color: white;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 3px;
    width:200px;
  }

  .cookie-consent .close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  .cookie-consent .close::before,
  .cookie-consent .close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: white;
    transform-origin: center;
  }
  .cookie-consent .close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .cookie-consent .close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .cookie-consent .close:hover::before,
  .cookie-consent .close:hover::after {
    opacity: 0.7;
  }

  @media (max-width: 767px) {
    .cookie-consent p {
        font-size: 12px;
    }
    .cookie-consent {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width:100%;
        border-radius: 0;
        transform: none;
      }
  }
  