#cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  background: #212121;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -3px 10px 0 rgba(0, 0, 0, 0.3);
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

#cookie-consent-banner.is-visible {
  display: block;
}

.cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.cookie-consent-text {
  flex: 1 1 320px;
  margin: 0;
}

.cookie-consent-text a {
  color: #69c745;
  text-decoration: underline;
}

.cookie-consent-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-consent-actions button {
  cursor: pointer;
  border-radius: 3px;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 24px;
  transition: 0.33s;
  border: 2px solid transparent;
}

#cookie-consent-accept {
  color: #ffffff;
  background: #69c745;
  border-color: #69c745;
}

#cookie-consent-accept:hover {
  color: #ffffff;
  background: #57a838;
  border-color: #57a838;
}

#cookie-consent-decline {
  color: #ffffff;
  background: transparent;
  border-color: #ffffff;
}

#cookie-consent-decline:hover {
  color: #212121;
  background: #ffffff;
  border-color: #ffffff;
}

@media (max-width: 575px) {
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-consent-actions {
    justify-content: center;
  }
}
