.cookie-consent {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 10000;
  display: none;
  justify-content: center;
  pointer-events: none;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

.cookie-consent.is-visible {
  display: flex;
}

.cookie-consent__panel {
  width: min(928px, 100%);
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid #d4dae6;
  border-radius: 8px;
  background: #ffffff;
  color: #1f2933;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.2);
  pointer-events: auto;
}

.cookie-consent__copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.cookie-consent__title {
  display: block;
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
}

.cookie-consent__selection {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
}

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

.cookie-consent__button {
  min-width: 92px;
  padding: 10px 14px;
  border: 1px solid #0f172a;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.cookie-consent__button.is-selected {
  outline: 3px solid #f59e0b;
  outline-offset: 2px;
}

.cookie-consent__button--accept {
  background: #0f172a;
  color: #ffffff;
}

.cookie-consent__button--reject {
  background: #ffffff;
  color: #0f172a;
}

.cookie-consent-manage-link {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  padding: 0;
  text-align: inherit;
  text-decoration: inherit;
  cursor: pointer;
}

.cookie-consent-manage-link:hover,
.cookie-consent-manage-link:focus {
  text-decoration: underline;
}

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

  .cookie-consent__panel {
    display: block;
  }

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

  .cookie-consent__button {
    flex: 1 1 0;
  }
}
