.cc-row {
  display: flex;
  align-items: center;
}

.cc-group, .cc-iconbtn, .cc-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.14);
}

.cc-btn {
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
}

.cc {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: end center;
  padding: 18px;
  z-index: 9999;
}

.cc-hidden {
  display: none;
}

.cc-card {
  width: min(760px, 100%);
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.2);
  padding: 16px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

#cc-modal.cc {
  place-items: center;
  background: rgba(15, 23, 42, 0.45);
}

#cc-modal .cc-card {
  max-width: 820px;
}

.cc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cc-title {
  font-weight: 800;
  font-size: 16px;
  color: #0f172a;
}

.cc-sub {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

.cc-iconbtn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  cursor: pointer;
}

.cc-text {
  margin: 10px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
}

.cc-link {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}

.cc-link:hover {
  text-decoration: underline;
}

.cc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  justify-content: flex-end;
}

.cc-btn:hover {
  background: rgba(15, 23, 42, 0.04);
}

.cc-primary {
  background: #0f172a;
  color: #fff;
  border-color: transparent;
}

.cc-primary:hover {
  background: #111827;
}

.cc-ghost {
  background: #fff;
}

.cc-group {
  border-radius: 16px;
  padding: 12px;
  margin-top: 10px;
}

.cc-row {
  gap: 14px;
  justify-content: space-between;
}

.cc-gtitle {
  font-weight: 800;
  color: #0f172a;
}

.cc-gtext {
  color: #475569;
  font-size: 13px;
  margin-top: 3px;
}

.cc-pill {
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
}

.cc-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 30px;
}

.cc-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cc-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(15, 23, 42, 0.18);
  border-radius: 999px;
  transition: 0.2s;
}

.cc-slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 999px;
  transition: 0.2s;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
}

.cc-switch input:checked + .cc-slider {
  background: #2563eb;
}

.cc-switch input:checked + .cc-slider:before {
  transform: translateX(22px);
}

.cc-fine {
  margin: 12px 0 0;
  font-size: 12px;
  color: #64748b;
}

.cc-footer-link {
  display: inline-block;
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
}

.cc-footer-link:hover {
  color: #0f172a;
  text-decoration: underline;
}/*# sourceMappingURL=style-cookie.css.map */