.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  width: min(560px, calc(100% - 28px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(5, 9, 20, .96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .36);
  color: #f4f7ff;
  transform: translateX(-50%);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent p {
  margin: 0;
  color: rgba(244, 247, 255, .76);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-consent strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 15px;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.cookie-consent button {
  min-height: 38px;
  padding: 9px 13px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.cookie-consent__accept {
  background: #ff9f00;
  color: #08142b;
}

.cookie-consent__decline {
  border: 1px solid rgba(255, 255, 255, .14) !important;
  background: rgba(255, 255, 255, .07);
  color: #f4f7ff;
}

@media (max-width: 640px) {
  .cookie-consent {
    bottom: 12px;
    padding: 14px;
  }
}
