.cookie-consent-banner {
  position: fixed;
  z-index: 500;
  top: 50%;
  left: 50%;
  width: min(800px, calc(100% - 32px));
  padding: 24px;
  border: 1px solid #d8dde6;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(33, 42, 58, 0.16);
  color: #243044;
  transform: translate(-50%, -50%);
}

.cookie-consent-banner__text {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.5;
}

.cookie-consent-banner__actions {
  display: flex;
  justify-content: flex-end;
}

.cookie-consent-banner__button {
  min-width: 120px;
  min-height: 44px;
  padding: 10px 18px;
  border: 0;
  border-radius: 6px;
  background: #dd6f2b;
  color: #ffffff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.cookie-consent-banner__button:hover,
.cookie-consent-banner__button:focus {
  background: #c85f22;
}

.cookie-consent-banner__button:focus-visible {
  outline: 3px solid rgba(221, 111, 43, 0.32);
  outline-offset: 2px;
}

@media (max-width: 575.98px) {
  .cookie-consent-banner {
    padding: 18px;
  }

  .cookie-consent-banner__text {
    font-size: 14px;
  }

  .cookie-consent-banner__actions {
    justify-content: stretch;
  }

  .cookie-consent-banner__button {
    width: 100%;
  }
}
