.cookie-consent[hidden],
.cookie-consent-manage[hidden] {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  z-index: 100000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .22);
  color: #222;
  font: 14px/1.45 Arial, sans-serif;
}

.cookie-consent__content p {
  margin: 5px 0;
}

.cookie-consent__content a {
  color: #6b4d20;
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-consent__actions button,
.cookie-consent-manage {
  padding: 10px 16px;
  border: 1px solid #333;
  border-radius: 3px;
  background: #fff;
  color: #222;
  cursor: pointer;
  font: 600 14px Arial, sans-serif;
}

.cookie-consent__actions button:hover,
.cookie-consent__actions button:focus {
  background: #eee;
}

.cookie-consent-manage {
  position: fixed;
  z-index: 99999;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  background: #222;
  color: #fff;
  font-size: 12px;
}

@media (max-width: 650px) {
  .cookie-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: block;
  }

  .cookie-consent__actions {
    margin-top: 14px;
  }

  .cookie-consent__actions button {
    flex: 1;
  }
}
