.checkbox{display:inline-flex;align-items:center;gap:12px;-webkit-user-select:none;-moz-user-select:none;cursor:pointer;user-select:none}.checkbox:hover{background:var(--hover-bg)}.checkbox__input{position:absolute;opacity:0;pointer-events:none}.checkbox__control{position:relative;display:inline-block;min-width:16px;width:16px;height:16px;border-radius:4px;border:2px solid #160e00;background-color:#fecd80}.checkbox__control:after{content:"";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:12px;height:10px;opacity:0;transition:all .3s;background-image:url(/assets/icons/check.svg);background-position:50%;background-repeat:no-repeat;background-size:contain}.checkbox__input:checked~.checkbox__control:after{opacity:1}.checkbox--indeterminate .checkbox__control:after,.checkbox__input:indeterminate~.checkbox__control:after{opacity:1!important;background-image:none;background-color:#160e00;width:10px;height:2px;border-radius:0}.checkbox__label{position:relative;font-size:16px;font-weight:500;line-height:1;color:#160e00}.checkbox__text{font-size:20px;font-weight:600;line-height:1}.checkbox--disabled{cursor:not-allowed}.checkbox--disabled .checkbox__control{background-color:#dbdbdb}.checkbox--disabled:hover{background:transparent}.checkbox--radio .checkbox__control{border-radius:50%}.checkbox--radio .checkbox__control:after{width:8px;height:8px;border-radius:50%;background-color:#160e00;background-image:none}