.cookie-notice[hidden] {
  display: none !important;
}

.cookie-notice {
  position: fixed;
  z-index: 10050;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-notice__content {
  display: flex;
  width: min(920px, 100%);
  padding: 16px 18px;
  border: 1px solid rgba(242, 157, 53, 0.28);
  border-radius: 14px;
  background: #2b211b;
  box-shadow: 0 18px 50px rgba(41, 33, 27, 0.28);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  pointer-events: auto;
}

.cookie-notice__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.45;
}

.cookie-notice__content a {
  color: #f29d35;
  font-weight: 800;
  text-decoration: none;
}

.cookie-notice__content a:hover {
  color: #ffd7a3;
  text-decoration: underline;
}

.cookie-notice__content span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.cookie-notice__button {
  flex: 0 0 auto;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: #f29d35;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-notice__button:hover {
  background: #fff;
  color: #2b211b;
}

@media (max-width: 575px) {
  .cookie-notice {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .cookie-notice__content {
    align-items: flex-start;
    flex-direction: column;
  }

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