.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.06);
  pointer-events: none;
}
.cookie-consent__inner {
  max-width: min(1400px, 100% - clamp(20px, 13.5417vw, 260px) * 2);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3.5vw, 64px);
  padding: 35px 0;
  pointer-events: auto;
}
.cookie-consent__brand {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 120px;
}
.cookie-consent__logo-wrap {
  width: 120px;
  height: 120px;
  overflow: hidden;
}
.cookie-consent__logo {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: top center;
}
.cookie-consent__brand-name {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  text-align: center;
  letter-spacing: -0.01em;
}
.cookie-consent__content {
  flex: 1;
  min-width: 0;
  max-width: 760px;
}
.cookie-consent__title {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  color: #000;
}
.cookie-consent__message {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}
.cookie-consent__privacy {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.4;
  color: #277eff;
  text-decoration: none;
}
.cookie-consent__privacy::after {
  content: ">";
  font-size: 14px;
  line-height: 1;
  color: #000;
}
.cookie-consent__privacy:hover {
  color: #1d6fe8;
}
.cookie-consent__actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: min(220px, 100%);
}
.cookie-consent__btn {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.cookie-consent__btn--primary {
  background: #277EFF;
  box-shadow: 0px -6px 10px 0px rgba(0, 0, 0, 0.02);
  color: #fff;
}
.cookie-consent__btn--primary:hover, .cookie-consent__btn--primary:focus-visible {
  background: #1d6fe8;
  outline: none;
}
.cookie-consent__btn--secondary {
  background: #fff;
  border: 1px solid #000000;
}
.cookie-consent__btn--secondary:hover, .cookie-consent__btn--secondary:focus-visible {
  background: #fafafa;
  outline: none;
}

@media (max-width: 960px) {
  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 20px clamp(16px, 4vw, 24px);
  }
  .cookie-consent__brand {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    gap: 12px;
  }
  .cookie-consent__brand-name {
    text-align: left;
  }
  .cookie-consent__content {
    max-width: none;
  }
  .cookie-consent__actions {
    width: 100%;
  }
}

/*# sourceMappingURL=www-cookie-consent.css.map */
