.custom-checkbox{width:100%;display:flex;align-items:center;gap:12px;padding:.5rem .75rem;border-radius:12px;background:#fff;transition:border-color .2s,box-shadow .2s;cursor:pointer}.custom-checkbox.disabled{opacity:.6;cursor:not-allowed}.custom-checkbox .checkbox-input{position:absolute;opacity:0;width:0;height:0;margin:0;pointer-events:none}.custom-checkbox .checkbox-cont{position:relative;width:24px;height:24px;box-sizing:border-box;border:1.5px solid #334eac;border-radius:6px;background:#fff;color-scheme:light;transition:background .15s ease,border-color .15s ease,box-shadow .15s ease}.custom-checkbox .checkbox-cont:after{content:"";position:absolute;left:50%;top:50%;width:5px;height:9px;border:2px solid #fff;border-top:0;border-left:0;transform:translate(-50%,-50%) rotate(45deg) scale(0);transform-origin:center;transition:transform .15s ease-in-out}.custom-checkbox label{font-size:1.1rem;margin-bottom:0;cursor:pointer}.custom-checkbox.checked .checkbox-cont{background:#334eac;border-color:#334eac}.custom-checkbox.checked .checkbox-cont:after{transform:translate(-50%,-50%) rotate(45deg) scale(1)}.custom-checkbox .checkbox-input:checked+.checkbox-cont{background:#334eac;border-color:#334eac}.custom-checkbox .checkbox-input:checked+.checkbox-cont:after{transform:translate(-50%,-50%) rotate(45deg) scale(1)}