.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  color: #e8eef7;
  background: rgba(7, 17, 31, .96);
  border-top: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 -12px 40px rgba(3, 12, 30, .28);
}

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

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  width: min(calc(100% - 8px), 1280px);
  margin: 0 auto;
}

.cookie-banner-copy {
  min-width: 0;
}

.cookie-banner-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 800;
}

.cookie-banner p {
  margin: 0;
  color: rgba(232, 238, 247, .78);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-banner a {
  color: #7eb6ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner a:hover {
  color: #fff;
}

.cookie-banner-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-banner-accept,
.cookie-banner-necessary {
  padding: 10px 18px;
  border-radius: 11px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-banner-accept {
  border: 0;
  background: #2864f0;
  color: #fff;
}

.cookie-banner-accept:hover {
  background: #1e52d2;
}

.cookie-banner-necessary {
  border: 1px solid rgba(255, 255, 255, .28);
  background: transparent;
  color: #e8eef7;
}

.cookie-banner-necessary:hover {
  border-color: #fff;
  color: #fff;
}

body.cookie-banner-visible .ta-chat {
  bottom: calc(108px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 720px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions,
  .cookie-banner-accept,
  .cookie-banner-necessary {
    width: 100%;
  }

  body.cookie-banner-visible .ta-chat {
    bottom: calc(168px + env(safe-area-inset-bottom, 0px));
  }
}
