/*!*****************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/form-checkbox/style.scss ***!
  \*****************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* === Consent Checkbox (уніфіковано) === */
/* Контейнер: успадковує типографію з block supports */
.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  /* font-size/line-height приходять із панелі Typography */
  color: #111827;
}

/* Чекбокс — фіксований квадрат, не стискається у флексі */
.consent-checkbox .cc-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1; /* тримаємо квадрат */
  flex: 0 0 24px; /* не росте й не стискається */
  border: 2px solid #c7c9ce;
  border-radius: 6px;
  background: #fff;
  box-shadow: inset 0 0 0 2px transparent;
  transition: box-shadow 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
  cursor: pointer;
}

/* активний стан */
.consent-checkbox .cc-input:checked {
  background: linear-gradient(45deg, #7b61ff, #6C3088);
  box-shadow: inset 0 0 0 2px #fff;
}

/* фокус */
.consent-checkbox .cc-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(123, 97, 255, 0.25), inset 0 0 0 2px #fff;
  border-color: #7b61ff;
}

/* Лейбл і тексти */
.consent-checkbox .cc-label {
  cursor: pointer;
  -webkit-user-select: text;
     -moz-user-select: text;
          user-select: text;
}

.consent-checkbox .cc-text {
  color: #4b5563;
}

.consent-checkbox .cc-text--before::after {
  content: " ";
}

/* Посилання */
.consent-checkbox .cc-link {
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-checkbox .cc-link:hover,
.consent-checkbox .cc-link:focus {
  text-decoration-thickness: 2px;
}

.cc-label {
  display: flex;
}

.cc-input {
  margin: auto 7px;
}

/* Мобільні поправки */
@media (max-width: 480px) {
  .consent-checkbox .cc-input {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
}

/*# sourceMappingURL=style-index.css.map*/