.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  width: min(740px, calc(100vw - 32px));
  background: #fff;
  color: #282D32;
  border: 2px solid #EAE6E0;
  border-radius: 16px;
  padding: 20px
}

.cookie-banner-in {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.cookie-banner-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #282D32
}

.cookie-banner-row {
  display: flex;
  align-items: center;
  gap: 20px
}

.cookie-banner-text {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #282D32
}

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

.cookie-banner-text a:hover {
  color: #1d5353
}

.cookie-banner-ack {
  flex: 0 0 auto;
  min-width: 80px;
  min-height: 36px;
  height: 36px;
  padding: 0 16px;
  border: none;
  border-radius: 8px;
  background: #286464;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer
}

.cookie-banner-ack:hover {
  background: #1d5353
}

.cookie-banner-ack:focus-visible {
  outline: 3px solid #286464;
  outline-offset: 2px
}

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

  .cookie-banner-row {
    flex-direction: column;
    align-items: stretch
  }

  .cookie-banner-ack {
    width: 100%;
    min-height: 44px;
    height: auto
  }
}
