/* COOKIE LISTA NEW */
.ucb,
.ucb * {
  box-sizing: border-box;
}

.ucb {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  padding: 16px;
  font-family: Arial, sans-serif;
  color: #1f2937;
}

.ucb--hidden {
  display: none;
}

.ucb__panel {
  width: min(1120px, 100%);
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .22);
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.ucb__phase--one {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.ucb__phase--two {
  padding: 24px;
}

.ucb--expanded {
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, .45);
}

.ucb--expanded .ucb__panel {
  width: min(1120px, 100%);
  max-height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
}

.ucb--expanded .ucb__phase--two {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: calc(100vh - 32px);
}

.ucb__scroll {
  overflow-y: auto;
  min-height: 0;
  flex: 1 1 auto;
  padding-right: 8px;
}

.ucb h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
  padding: 0;
}

.ucb h3 {
  margin: 0;
  font-size: 18px;
}

.ucb p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.55;
}

.ucb__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ucb__actions--phase-two {
  flex: 0 0 auto;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
  margin-top: 12px;
}

.ucb__btn {
  appearance: none;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
  white-space: nowrap;
}

.ucb__btn:hover {
  transform: translateY(-1px);
}

.ucb__btn--primary {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.ucb__btn--secondary {
  background: #fff;
  color: #111827;
}

.ucb__more-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  margin: 0 0 14px;
}

.ucb__more-btn:hover {
  text-decoration: none;
}

.ucb__more-text {
  margin-bottom: 4px;
}

.ucb__category {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  margin-top: 12px;
  background: #f9fafb;
}

.ucb__category p {
  margin-top: 10px;
  margin-bottom: 0;
}

.ucb__category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ucb__always {
  font-size: 14px;
  font-weight: 700;
  color: #047857;
  white-space: nowrap;
}

.ucb__switch {
  position: relative;
  display: inline-flex;
  width: 52px;
  height: 30px;
  flex: 0 0 auto;
}

.ucb__switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.ucb__switch span {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #d1d5db;
  border-radius: 999px;
  transition: .2s;
}

.ucb__switch span:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
}

.ucb__switch input:checked + span {
  background: #111827;
}

.ucb__switch input:checked + span:before {
  transform: translateX(22px);
}

@media (max-width: 760px) {
  .ucb {
    padding: 10px;
  }

  .ucb__phase--one {
    display: block;
    padding: 18px;
  }

  .ucb--expanded {
    align-items: stretch;
  }

  .ucb--expanded .ucb__panel {
    max-height: calc(100vh - 20px);
  }

  .ucb--expanded .ucb__phase--two {
    padding: 18px;
    max-height: calc(100vh - 20px);
  }

  .ucb__actions {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .ucb__btn {
    width: 100%;
  }

  .ucb h2 {
    font-size: 21px;
  }
}

.ucb.ucb--hidden {
  display: none !important;
}

[hidden] {
    display: none !important;
}