.checkbox-indicator{display:inline-flex;align-items:center;justify-content:center}.checkbox{--checkbox-size:1.5rem;--checkbox-icon-size:calc(var(--checkbox-size) * 0.72);--checkbox-unchecked-background:rgba(35,206,107,0.08);--checkbox-checked-background:linear-gradient(140deg,rgba(35,206,107,0.95),rgba(19,181,92,0.92));--checkbox-unchecked-color:rgba(24,32,63,0.4);--checkbox-checked-color:#ffffff;--checkbox-transition-duration:0.22s;display:flex;align-items:center;gap:.75rem;cursor:pointer}.checkbox__indicator{display:inline-flex;align-items:center;justify-content:center;width:var(--checkbox-size);height:var(--checkbox-size);border-radius:.5rem;background:var(--checkbox-unchecked-background);color:var(--checkbox-unchecked-color);box-shadow:inset 0 1px 0 rgba(255,255,255,.65);transition:background var(--checkbox-transition-duration) ease,color var(--checkbox-transition-duration) ease,box-shadow var(--checkbox-transition-duration) ease,transform .1s ease;flex-shrink:0}.checkbox__indicator svg{font-size:var(--checkbox-icon-size)}.checkbox__label{display:inline-block}.checkbox__input:checked+.checkbox__indicator{background:var(--checkbox-checked-background);color:var(--checkbox-checked-color);box-shadow:0 10px 18px rgba(35,206,107,.24)}.checkbox__input:checked+.checkbox__indicator svg{transform:translateZ(0)}.checkbox__input:disabled+.checkbox__indicator{opacity:.6;box-shadow:none;cursor:not-allowed}.checkbox__input:focus-visible+.checkbox__indicator{box-shadow:0 0 0 4px rgba(35,206,107,.18),inset 0 1px 0 rgba(255,255,255,.65)}.checkbox__input:not(:disabled):active+.checkbox__indicator{transform:scale(.96)}