#cookie-consent-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #fff;
  width: 400px;
  padding: 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 20
}

@media (max-width: 768px) {
  #cookie-consent-banner {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
  }
}

#cookie-consent-banner .consent-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

#cookie-consent-banner .consent-wrapper h2 {
  margin-top: 0;
  font-size: 15px;
}

#cookie-consent-banner .consent-wrapper p {
  font-size: 14px;
  line-height: 1.3;
}

#cookie-consent-banner .consent-wrapper ul {
  padding-left: 0
}

#cookie-consent-banner .consent-wrapper ul li {
  font-size: 14px;
  list-style-type: disc;
  list-style-position: inside;
  padding: 3px 0;
}

#cookie-consent-banner .consent-wrapper a {
  text-decoration: underline;
  color: #0077c8;
  font-size: 14px;
}

#cookie-consent-banner .consent-wrapper .btn-container {
  display: flex;
  width: 100%;
  gap: 10px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  #cookie-consent-banner .consent-wrapper .btn-container {
    flex-direction: column;
  }

  #cookie-consent-banner .consent-wrapper .btn-container button,
  #cookie-consent-banner .consent-wrapper a {
    font-size: 13px;
  }
}

#cookie-consent-banner .consent-wrapper .btn-container button {
  background-color: #0077c8;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 30px;
  font-size: 13px;
}