.cookie-notice {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(17, 17, 17, .92);
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
}

.cookie-notice.show {
  display: flex;
}

.cookie-notice__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .82);
}

.cookie-notice__text a {
  color: #e9df14;
  text-decoration: none;
  border-bottom: 1px solid rgba(233, 223, 20, .45);
}

.cookie-notice__text a:hover {
  border-bottom-color: #e9df14;
}

.cookie-notice__button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #e9df14;
  color: #111;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cookie-notice__button:hover {
  filter: brightness(.96);
}

@media (max-width: 720px) {
  .cookie-notice {
    align-items: stretch;
    flex-direction: column;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 16px;
  }

  .cookie-notice__button {
    width: 100%;
  }
}
