.cookie-notice {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  box-sizing: border-box;
  width: 248px;
  padding: 24px;
  border-radius: 24px;
  background-color: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  color: #252525;
  font-family: inherit;
}

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

.cookie-notice__text {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.45;
}

.cookie-notice__link {
  color: #e05b29;
  text-decoration: none;
}

.cookie-notice__link:hover,
.cookie-notice__link:focus-visible {
  text-decoration: underline;
}

.cookie-notice__button {
  min-width: 112px;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 12px;
  background-color: #f2f3f5;
  color: #252525;
  font: inherit;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cookie-notice__button:hover {
  background-color: #e7e8eb;
}

.cookie-notice__button:active {
  transform: scale(0.98);
}

.cookie-notice__button:focus-visible {
  outline: 2px solid #e05b29;
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .cookie-notice {
    right: 16px;
    bottom: 16px;
    width: min(248px, calc(100vw - 32px));
    padding: 20px;
    border-radius: 20px;
  }
}
